forked from vladalive/commenter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommenter.gemspec
More file actions
executable file
·28 lines (25 loc) · 1.18 KB
/
commenter.gemspec
File metadata and controls
executable file
·28 lines (25 loc) · 1.18 KB
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
27
28
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "commenter/version"
Gem::Specification.new do |s|
s.name = "commenter"
s.version = Commenter::VERSION
s.platform = Gem::Platform::RUBY
s.author = "Brooke Kuhlmann"
s.email = "brooke@redalchemist.com"
s.homepage = "http://www.redalchemist.com"
s.summary = "Enhances ActiveRecord with polymorphic commenting."
s.description = "Enhances ActiveRecord with polymorphic commenting where any record can be made 'commentable'."
s.license = "MIT"
s.post_install_message = "(W): www.redalchemist.com. (T): @ralchemist."
s.rdoc_options << "CHANGELOG.rdoc"
s.required_ruby_version = "~> 1.9.0"
s.add_dependency "rails", ">= 3.0.0"
s.add_development_dependency "rake"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{|file| File.basename file}
s.require_paths = ["lib"]
end