-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
22 lines (20 loc) · 845 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "bigamy"
gemspec.summary = "Have associations between ActiveRecord objects and MongoMapper documents"
gemspec.description = ""
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/ryana/bigamy"
gemspec.authors = ["Ryan Angilly"]
gemspec.add_development_dependency 'shoulda', '2.11.0'
gemspec.add_development_dependency 'mocha', '0.9.8'
gemspec.add_development_dependency 'factory_girl', '1.3.1'
gemspec.add_development_dependency 'ruby-debug', '0.10.3'
gemspec.add_development_dependency 'mongo_mapper', '0.8.2'
gemspec.add_development_dependency 'active_record', '>=2.3.5'
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end