forked from piotrmurach/rack-policy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rack-policy.gemspec
24 lines (20 loc) · 1.07 KB
/
rack-policy.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
# coding: utf-8
require File.expand_path('../lib/rack/policy/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = "rack-policy"
spec.version = Rack::Policy::VERSION
spec.authors = ["Piotr Murach"]
spec.email = [""]
spec.description = %q{This is Rack middleware that makes your app compliant with the 'EU ePrivacy Directive'}
spec.summary = %q{This is Rack middleware that makes your app compliant with the 'EU ePrivacy Directive' whereby a user needs to provide implied consent before any data can be stored on his machine.}
spec.homepage = "https://github.com/piotrmurach/rack-policy"
spec.license = "MIT"
spec.files = `git ls-files`.split($\)
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency 'rack'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake', '>= 10.0'
spec.add_development_dependency 'rspec', '>= 3.0'
end