forked from elight/acts_as_commentable_with_threading
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathacts_as_commentable_with_threading.gemspec
More file actions
22 lines (20 loc) · 1008 Bytes
/
Copy pathacts_as_commentable_with_threading.gemspec
File metadata and controls
22 lines (20 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |s|
s.name = "acts_as_commentable_with_threading"
s.version = "1.1.1"
s.date = "2011-12-08"
s.summary = "Polymorphic comments Rails gem - Rails 3+ only"
s.email = "evan@tripledogdare.net"
s.homepage = "http://github.com/elight/acts_as_commentable_with_threading"
s.description = "Polymorphic threaded comments Rails gem for Rails 3+"
s.authors = ["Evan Light", "Jack Dempsey", "Xelipe", "xxx"]
s.files = `git ls-files`.split("\n")
s.test_files = ["spec/commentable_spec.rb", "spec/comment_spec.rb", "spec/spec_helper.rb", "spec/db/database.yml", "spec/db/schema.rb"]
s.add_development_dependency 'rake'
s.add_development_dependency 'bundler', '~> 1.0'
s.add_development_dependency 'rspec', '~> 1.3'
s.add_development_dependency 'sqlite3-ruby'
s.add_development_dependency 'rails', '~> 3.0'
s.add_dependency 'activerecord', '>= 3.0'
s.add_dependency 'activesupport', '~> 3.0'
s.add_dependency 'awesome_nested_set', '>= 2.0'
end