forked from merit-gem/merit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerit.gemspec
19 lines (19 loc) · 810 Bytes
/
merit.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Gem::Specification.new do |s|
s.name = "merit"
s.summary = "General reputation Rails engine."
s.description = "Manage badges, points and rankings (reputation) of resources in a Rails application."
s.homepage = "https://github.com/tute/merit"
s.files = `git ls-files`.split("\n").reject{|f| f =~ /^\./ }
s.version = '1.0.1'
s.authors = ["Tute Costa"]
s.email = '[email protected]'
s.add_dependency 'ambry', '~> 0.3.0'
s.add_development_dependency 'rails', '~> 3.2.3'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'haml'
s.add_development_dependency 'capybara'
s.add_development_dependency 'simplecov'
# Testing with Mongoid
s.add_development_dependency 'bson_ext'
s.add_development_dependency 'mongoid', '~> 2.0.0'
end