-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgamification.gemspec
32 lines (27 loc) · 1.26 KB
/
gamification.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "gamification/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "gamification"
s.version = Gamification::VERSION
s.authors = ["Johannes Gorset"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/hyperoslo/gamification"
s.summary = "Gamification is a collection of models for Ruby on Rails that allows you to make anything a game"
s.description = "Gamification is a collection of models for Ruby on Rails that allows you to make anything a game"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "spec/factories/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "rails", "~> 4.0"
s.add_dependency "carrierwave", "~> 0.10"
s.add_dependency "mini_magick", "~> 3.7"
s.add_development_dependency "sqlite3"
s.add_development_dependency "guard-rspec"
s.add_development_dependency "rspec-rails", "~> 2.14"
s.add_development_dependency "capybara"
s.add_development_dependency "factory_girl_rails"
s.add_development_dependency "timecop"
s.add_development_dependency "faker"
s.add_development_dependency "thor"
end