forked from tobmatth/rack-ssl-enforcer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rack-ssl-enforcer.gemspec
26 lines (22 loc) · 1.05 KB
/
rack-ssl-enforcer.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'rack/ssl-enforcer/version'
Gem::Specification.new do |s|
s.name = "rack-ssl-enforcer"
s.version = Rack::SslEnforcer::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Tobias Matthies", "Thibaud Guillaume-Gentil"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://github.com/tobmatth/rack-ssl-enforcer"
s.summary = "A simple Rack middleware to enforce SSL"
s.description = "Rack::SslEnforcer is a simple Rack middleware to enforce ssl connections"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "rack-ssl-enforcer"
s.add_development_dependency "bundler", "~> 1.0"
s.add_development_dependency "test-unit", "~> 2.3"
s.add_development_dependency "shoulda", "~> 2.11.3"
s.add_development_dependency "rack", "~> 1.2.0"
s.add_development_dependency "rack-test", "~> 0.5.4"
s.files = Dir.glob("{lib}/**/*") + %w[LICENSE README.md]
s.require_path = 'lib'
end