-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodal-responder-rails.gemspec
29 lines (24 loc) · 1.09 KB
/
modal-responder-rails.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'modal-responder-rails/version'
Gem::Specification.new do |spec|
spec.name = 'modal-responder-rails'
spec.version = ModalResponder::Rails::VERSION
spec.authors = ['Guillaume Hain']
spec.email = ['[email protected]']
spec.summary = %q{Ease the use of modal in your Rails}
spec.description = %q{This gem ease the use of modal in your Rails
application thanks to a Responder. This code is built
based on Dmitriy Dudkin's article}
spec.homepage = 'https://github.com/Sento/modal-responder-rails'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.require_paths = ['lib']
spec.add_dependency 'responders', '~> 2.4.0'
spec.add_dependency 'railties', '>= 3.2', '< 6.0'
spec.add_development_dependency 'bundler', '~> 1.13'
spec.add_development_dependency 'rake', '~> 10.0'
end