forked from thoughtbot/clearance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclearance.gemspec
35 lines (28 loc) · 1.27 KB
/
clearance.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
33
34
require 'date'
Gem::Specification.new do |s|
s.name = %q{clearance}
s.version = IO.read(File.join(File.dirname(__FILE__), 'VERSION'))
s.email = %q{[email protected]}
s.homepage = %q{http://github.com/thoughtbot/clearance}
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Dan Croak", "Mike Burns", "Jason Morrison", "Joe Ferris", "Eugene Bolshakov", "Nick Quaranto", "Josh Nichols", "Mike Breen", "Jon Yurek", "Chad Pytel"]
s.date = Date.today.to_s
s.summary = %q{Rails authentication & authorization with email & password.}
s.description = %q{Rails authentication & authorization with email & password.}
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,features}/*`.split("\n")
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.add_dependency('rails', '>= 3.0')
s.add_dependency('diesel', '~> 0.1.5')
s.add_development_dependency('bundler', '~> 1.0.0')
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
end
end