-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathfine_print.gemspec
28 lines (23 loc) · 1.12 KB
/
fine_print.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
$:.push File.expand_path('../lib', __FILE__)
require 'fine_print/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'fine_print'
s.version = FinePrint::VERSION
s.authors = ['JP Slavinsky', 'Dante Soares']
s.email = ['[email protected]']
s.homepage = 'https://github.com/openstax/fine_print'
s.license = 'MIT'
s.summary = 'Manages site agreements with versioning.'
s.description = 'FinePrint allows site admins to easily create, update and ask users to sign site agreements, keeping a record of when users signed a certain version of each agreement.'
s.files = Dir['{app,config,db,lib,spec/factories/fine_print}/**/*'] + ['MIT-LICENSE', 'Rakefile', 'README.md']
s.add_dependency 'rails', '< 7'
s.add_dependency 'jquery-rails'
s.add_dependency 'action_interceptor'
s.add_dependency 'responders'
s.add_development_dependency 'sqlite3', '~> 1.4'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'factory_bot_rails'
s.add_development_dependency 'rails-controller-testing'
s.add_development_dependency 'faker'
end