forked from rails/acts_as_list
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
13 lines (13 loc) · 842 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "acts_as_list"
gem.summary = %Q{This acts_as extension provides the capabilities for sorting and reordering a number of objects in a list. The class that has this specified needs to have a +position+ column defined as an integer on the mapped database table.}
gem.description = %Q{This acts_as extension provides the capabilities for sorting and reordering a number of objects in a list. The class that has this specified needs to have a +position+ column defined as an integer on the mapped database table.}
gem.email = "tech@weplay.com"
gem.homepage = "http://github.com/weplay/acts_as_list"
gem.authors = ["David Heinemeier Hansson"]
end
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end