forked from jackdempsey/acts_as_commentable
-
Notifications
You must be signed in to change notification settings - Fork 10
/
acts_as_commentable.gemspec
36 lines (33 loc) · 1.24 KB
/
acts_as_commentable.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
27
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'acts_as_commentable'
s.version = '7.1.0'
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
s.authors = ['Cosmin Radoi, Jack Dempsey, Xelipe, Chris Eppstein']
s.autorequire = 'acts_as_commentable'
s.description = 'Plugin/gem that provides comment functionality'
s.email = '[email protected]'
s.extra_rdoc_files = ['README.rdoc', 'MIT-LICENSE']
s.files = [
'MIT-LICENSE',
'README.rdoc',
'lib/acts_as_commentable.rb',
'lib/comment_methods.rb',
'lib/commentable_methods.rb',
'lib/generators',
'lib/generators/comment',
'lib/generators/comment/comment_generator.rb',
'lib/generators/comment/templates',
'lib/generators/comment/templates/comment.rb',
'lib/generators/comment/templates/create_comments.rb',
'lib/generators/comment/USAGE',
'init.rb',
'install.rb'
]
s.homepage = 'http://www.juixe.com/techknow/index.php/2006/06/18/acts-as-commentable-plugin/'
s.require_paths = ['lib']
s.summary = 'Plugin/gem that provides comment functionality'
s.license = 'MIT'
s.add_dependency 'activerecord', '~> 7.1.0'
s.metadata['rubygems_mfa_required'] = 'true'
end