-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclearance.gemspec
130 lines (125 loc) · 6.19 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{clearance}
s.version = "0.8.8"
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", "Marcel G\303\266rner", "Bence Nagy", "Ben Mabey", "Eloy Duran", "Tim Pope", "Mihai Anca", "Mark Cornick", "Shay Arnett", "Jon Yurek", "Chad Pytel"]
s.date = %q{2010-02-25}
s.description = %q{Rails authentication with email & password.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = [
"CHANGELOG.md",
"LICENSE",
"README.md",
"Rakefile",
"VERSION",
"app/controllers/clearance/confirmations_controller.rb",
"app/controllers/clearance/passwords_controller.rb",
"app/controllers/clearance/sessions_controller.rb",
"app/controllers/clearance/users_controller.rb",
"app/models/clearance_mailer.rb",
"app/views/clearance_mailer/change_password.html.erb",
"app/views/clearance_mailer/confirmation.html.erb",
"app/views/passwords/edit.html.erb",
"app/views/passwords/new.html.erb",
"app/views/sessions/new.html.erb",
"app/views/users/_form.html.erb",
"app/views/users/new.html.erb",
"generators/clearance/USAGE",
"generators/clearance/clearance_generator.rb",
"generators/clearance/lib/insert_commands.rb",
"generators/clearance/lib/rake_commands.rb",
"generators/clearance/templates/README",
"generators/clearance/templates/clearance.rb",
"generators/clearance/templates/factories.rb",
"generators/clearance/templates/migrations/create_users.rb",
"generators/clearance/templates/migrations/update_users.rb",
"generators/clearance/templates/user.rb",
"generators/clearance_features/USAGE",
"generators/clearance_features/clearance_features_generator.rb",
"generators/clearance_features/templates/features/password_reset.feature",
"generators/clearance_features/templates/features/sign_in.feature",
"generators/clearance_features/templates/features/sign_out.feature",
"generators/clearance_features/templates/features/sign_up.feature",
"generators/clearance_features/templates/features/step_definitions/clearance_steps.rb",
"generators/clearance_features/templates/features/support/paths.rb",
"generators/clearance_views/USAGE",
"generators/clearance_views/clearance_views_generator.rb",
"generators/clearance_views/templates/formtastic/passwords/edit.html.erb",
"generators/clearance_views/templates/formtastic/passwords/new.html.erb",
"generators/clearance_views/templates/formtastic/sessions/new.html.erb",
"generators/clearance_views/templates/formtastic/users/_inputs.html.erb",
"generators/clearance_views/templates/formtastic/users/new.html.erb",
"lib/clearance.rb",
"lib/clearance/authentication.rb",
"lib/clearance/configuration.rb",
"lib/clearance/extensions/errors.rb",
"lib/clearance/extensions/rescue.rb",
"lib/clearance/routes.rb",
"lib/clearance/user.rb",
"rails/init.rb",
"shoulda_macros/clearance.rb"
]
s.homepage = %q{http://github.com/thoughtbot/clearance}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{Rails authentication with email & password.}
s.test_files = [
"test/controllers/confirmations_controller_test.rb",
"test/controllers/passwords_controller_test.rb",
"test/controllers/sessions_controller_test.rb",
"test/controllers/users_controller_test.rb",
"test/models/clearance_mailer_test.rb",
"test/models/user_test.rb",
"test/rails_root/app/controllers/accounts_controller.rb",
"test/rails_root/app/controllers/application_controller.rb",
"test/rails_root/app/helpers/application_helper.rb",
"test/rails_root/app/helpers/confirmations_helper.rb",
"test/rails_root/app/helpers/passwords_helper.rb",
"test/rails_root/app/models/user.rb",
"test/rails_root/config/boot.rb",
"test/rails_root/config/environment.rb",
"test/rails_root/config/environments/development.rb",
"test/rails_root/config/environments/production.rb",
"test/rails_root/config/environments/test.rb",
"test/rails_root/config/initializers/clearance.rb",
"test/rails_root/config/initializers/inflections.rb",
"test/rails_root/config/initializers/mime_types.rb",
"test/rails_root/config/initializers/requires.rb",
"test/rails_root/config/initializers/time_formats.rb",
"test/rails_root/config/routes.rb",
"test/rails_root/db/migrate/20100225210436_clearance_create_users.rb",
"test/rails_root/features/step_definitions/clearance_steps.rb",
"test/rails_root/features/step_definitions/factory_girl_steps.rb",
"test/rails_root/features/step_definitions/web_steps.rb",
"test/rails_root/features/support/env.rb",
"test/rails_root/features/support/paths.rb",
"test/rails_root/public/dispatch.rb",
"test/rails_root/script/create_project.rb",
"test/rails_root/test/factories/clearance.rb",
"test/rails_root/test/functional/accounts_controller_test.rb",
"test/rails_root/vendor/gems/justinfrench-formtastic-0.2.1/generators/formtastic_stylesheets/formtastic_stylesheets_generator.rb",
"test/rails_root/vendor/gems/justinfrench-formtastic-0.2.1/lib/formtastic.rb",
"test/rails_root/vendor/gems/justinfrench-formtastic-0.2.1/lib/justin_french/formtastic.rb",
"test/rails_root/vendor/gems/justinfrench-formtastic-0.2.1/rails/init.rb",
"test/rails_root/vendor/gems/justinfrench-formtastic-0.2.1/spec/formtastic_spec.rb",
"test/rails_root/vendor/gems/justinfrench-formtastic-0.2.1/spec/test_helper.rb",
"test/test_helper.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end