forked from bcurren/ssl_requirement
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ssl_requirement.gemspec
28 lines (22 loc) · 1007 Bytes
/
ssl_requirement.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
Gem::Specification.new do |s|
s.name = 'ssl_requirement'
s.version = '1.0.8'
s.date = '2009-06-22'
s.summary = "Allow controller actions to force SSL on specific parts of the site."
s.description = "SSL requirement adds a declarative way of specifying that certain actions should only be allowed to run under SSL, and if they're accessed without it, they should be redirected."
s.authors = ['RailsJedi', 'David Heinemeier Hansson', 'jcnetdev', 'bcurren', 'bmpercy']
s.email = 'percival@umamibud.com'
s.homepage = 'http://github.com/bmpercy/ssl_requirement'
s.has_rdoc = true
s.rdoc_options = ["--main", "README"]
s.extra_rdoc_files = ["README"]
s.add_dependency 'rails', ['>= 2.2.2']
s.files = ["README",
"init.rb",
"lib/ssl_requirement.rb",
"lib/url_rewriter.rb",
"rails/init.rb",
"ssl_requirement.gemspec"]
s.test_files = ["test/ssl_requirement_test.rb",
"test/url_rewriter_test.rb"]
end