forked from tyrauber/acts_rateable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acts_rateable.gemspec
22 lines (17 loc) · 929 Bytes
/
acts_rateable.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "acts_rateable/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "acts_rateable"
s.version = ActsRateable::VERSION
s.authors = ["Ty Rauber"]
s.email = ["tyrauber@mac.com"]
s.description = %q{Rails 3 Bayesian Ratings Gem}
s.summary = %q{ActsRateable is a Ruby on Rails gem which makes ActiveRecord models rateable through a polymorphic association. Bayesian Estimates are generated and cached for each association enabling models to be quickly ordered by bayesian estimate.}
s.homepage = "https://github.com/tyrauber/acts_rateable"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 3.1"
s.add_development_dependency "sqlite3"
end