forked from antonzaytsev/acts_as_rateable
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathacts_as_rateable.gemspec
More file actions
18 lines (16 loc) · 884 Bytes
/
acts_as_rateable.gemspec
File metadata and controls
18 lines (16 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.authors = ["Ferenc Fekete", "Gabriel Gironda", "Michael Reinsch", "Anton Zaytsev"]
gem.email = "info@antonzaytsev.com"
gem.description = "Acts_as_rateable is a rails plugin providing a rating interface for ActiveRecord models."
gem.summary = "Rails plugin providing a rating interface for ActiveRecord models"
gem.homepage = "http://github.com/anton-zaytsev/acts_as_rateable"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "acts_as_rateable"
gem.require_paths = ['lib']
gem.version = '3.0.0'
#s.rdoc_options = ["--main", "README"]
#s.extra_rdoc_files = ["README", "MIT-LICENSE"]
end