-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathattorney.gemspec
30 lines (25 loc) · 1.21 KB
/
attorney.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
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'attorney/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'attorney'
s.version = Attorney::VERSION
s.authors = ['Gonzalo Rodriguez', 'Marcelo Casiraghi']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'https://github.com/cedarcode/attorney'
s.summary = "Easily define and mount 'Terms of Service', 'Privacy Policy' and any other static page to your Rails app"
s.license = 'MPL-2.0'
s.files = Dir['{app,config,db,lib,vendor}/**/*', 'Rakefile']
s.test_files = `git ls-files -- spec/*`.split("\n")
s.add_dependency 'rails', '~> 5.0'
s.add_dependency 'jquery-rails', '~> 4.3'
s.add_development_dependency 'sqlite3', '~> 1.3'
s.add_development_dependency 'rspec-rails', '~> 3.7'
s.add_development_dependency 'capybara', '~> 2.7'
s.add_development_dependency 'capybara-webkit', '~> 1.15'
s.add_development_dependency 'database_cleaner', '~> 1.6'
s.add_development_dependency 'launchy', '~> 2.4'
s.add_development_dependency 'shoulda-matchers', '~> 3.1'
s.add_development_dependency 'appraisal', '~> 2.2'
end