forked from prey/gdpr_rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gdpr_rails.gemspec
32 lines (28 loc) · 1.1 KB
/
gdpr_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
30
31
32
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "policy_manager/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "gdpr_rails"
s.version = PolicyManager::VERSION
s.authors = ["Miguel Michelson", "Prey inc"]
s.email = ["[email protected]"]
s.homepage = "http://preyproject.com"
s.summary = "policy_manager engine for rails"
s.description = "policy_manager engine for rails gdpr compliance"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "rails", ">= 5.1.4", "< 5.3"
s.add_dependency "tilt"
s.add_dependency "redcarpet"
s.add_dependency "will_paginate"
s.add_dependency "aasm"
s.add_dependency "rubyzip", '>= 1.0.0'
s.add_dependency "paperclip"
s.add_dependency "groupdate", "4.0.0"
s.add_dependency "chartkick", "2.3.4"
#s.add_dependency "kaminari"
s.add_development_dependency "minitest-stub_any_instance"
s.add_development_dependency "nokogiri"
s.add_development_dependency "sqlite3"
end