forked from mreinsch/acts_as_rateable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathacts_as_rateable.gemspec
27 lines (26 loc) · 1.24 KB
/
acts_as_rateable.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
Gem::Specification.new do |s|
s.name = "acts_as_rateable"
s.version = "2.0.1"
s.date = "2009-09-23"
s.summary = "Rails plugin providing a rating interface for ActiveRecord models"
s.email = "[email protected]"
s.homepage = "http://github.com/mreinsch/acts_as_rateable"
s.description = "Acts_as_rateable is a rails plugin providing a rating interface for ActiveRecord models."
s.has_rdoc = true
s.authors = ["Ferenc Fekete", "Gabriel Gironda", "Michael Reinsch"]
s.files = ["README.rdoc",
"CHANGELOG.rdoc",
"MIT-LICENSE",
"Rakefile",
"init.rb",
"rails/init.rb",
"lib/rating.rb",
"lib/user_rating.rb",
"lib/acts_as_rateable.rb",
"generators/acts_as_rateable_update1/templates/migration.rb",
"generators/acts_as_rateable_update1/acts_as_rateable_update1_generator.rb",
"generators/acts_as_rateable_migration/templates/migration.rb",
"generators/acts_as_rateable_migration/acts_as_rateable_migration_generator.rb"]
s.rdoc_options = ["--main", "README.rdoc"]
s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "MIT-LICENSE"]
end