-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommenteux.gemspec
More file actions
27 lines (21 loc) · 1.07 KB
/
commenteux.gemspec
File metadata and controls
27 lines (21 loc) · 1.07 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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "commenteux/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "commenteux"
s.version = Commenteux::VERSION
s.authors = ["Groupe Fungo inc."]
s.email = ["ssavoie@fungo.ca"]
s.homepage = "https://github.com/groupefungo/commenteux"
s.summary = "This is a mountable gem that add a presentation layer to acts_as_commentable."
s.description = "Mount this gem into your app to automatically have access to screens that list and create comments on any of your resources that use acts_as_commentable.
Those screen will be inserted in your current app layout. You can call the routes of the gem with ajax passing a parent
div where you want the response to be inserted."
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["spec/**/*"]
s.add_dependency 'rails', '>= 4.0.3', '<= 6.1'
s.add_dependency "rspec-rails"
s.add_dependency "acts_as_commentable"
s.add_dependency "simple_form"
end