Skip to content

Commit

Permalink
Specify dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmurach committed Jun 23, 2012
1 parent 9641f2c commit 1c69f63
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions rack-policy.gemspec
@@ -1,17 +1,23 @@
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/rack-policy/version', __FILE__)
require File.expand_path('../lib/rack/policy/version', __FILE__)

Gem::Specification.new do |gem|
gem.authors = ["Piotr Murach"]
gem.email = ["pmurach@gmail.com"]
gem.description = %q{TODO: Write a gem description}
gem.summary = %q{TODO: Write a gem summary}
gem.homepage = ""
gem.email = [""]
gem.description = %q{This is Rack middleware that makes your app compliant with the 'EU ePrivacy Directive'}
gem.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.}
gem.homepage = "https://github.com/peter-murach/rack-policy"

gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "rack-policy"
gem.require_paths = ["lib"]
gem.version = Rack::Policy::VERSION

gem.add_dependency 'rack', '~> 1.1'

gem.add_development_dependency 'rack-test'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'rake'
end

0 comments on commit 1c69f63

Please sign in to comment.