authpro 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +28 -0
  4. data/lib/authpro.rb +2 -0
  5. data/lib/authpro/version.rb +3 -0
  6. data/lib/generators/authpro/USAGE +8 -0
  7. data/lib/generators/authpro/authpro_generator.rb +59 -0
  8. data/lib/generators/authpro/templates/application.html.erb +26 -0
  9. data/lib/generators/authpro/templates/home_controller.rb +4 -0
  10. data/lib/generators/authpro/templates/index.html.erb +1 -0
  11. data/lib/generators/authpro/templates/new_password_resets.html.erb +9 -0
  12. data/lib/generators/authpro/templates/new_sessions.html.erb +16 -0
  13. data/lib/generators/authpro/templates/new_user.html.erb +27 -0
  14. data/lib/generators/authpro/templates/password_reset.text.erb +5 -0
  15. data/lib/generators/authpro/templates/password_resets_controller.rb +37 -0
  16. data/lib/generators/authpro/templates/password_resets_edit.html.erb +23 -0
  17. data/lib/generators/authpro/templates/sessions_controller.rb +26 -0
  18. data/lib/generators/authpro/templates/user.rb +25 -0
  19. data/lib/generators/authpro/templates/user_mailer.rb +8 -0
  20. data/lib/generators/authpro/templates/users_controller.rb +21 -0
  21. data/lib/tasks/authpro_tasks.rake +4 -0
  22. data/test/authpro_generator_test.rb +35 -0
  23. data/test/authpro_integration_test.rb +144 -0
  24. data/test/dummy/Gemfile +17 -0
  25. data/test/dummy/Gemfile.lock +120 -0
  26. data/test/dummy/README.rdoc +28 -0
  27. data/test/dummy/Rakefile +6 -0
  28. data/test/dummy/app/assets/javascripts/application.js +13 -0
  29. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  30. data/test/dummy/app/controllers/application_controller.rb +5 -0
  31. data/test/dummy/app/helpers/application_helper.rb +2 -0
  32. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  33. data/test/dummy/bin/bundle +3 -0
  34. data/test/dummy/bin/rails +4 -0
  35. data/test/dummy/bin/rake +4 -0
  36. data/test/dummy/config.ru +4 -0
  37. data/test/dummy/config/application.rb +23 -0
  38. data/test/dummy/config/boot.rb +9 -0
  39. data/test/dummy/config/database.yml +25 -0
  40. data/test/dummy/config/environment.rb +5 -0
  41. data/test/dummy/config/environments/development.rb +27 -0
  42. data/test/dummy/config/environments/production.rb +80 -0
  43. data/test/dummy/config/environments/test.rb +38 -0
  44. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  45. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  46. data/test/dummy/config/initializers/inflections.rb +16 -0
  47. data/test/dummy/config/initializers/mime_types.rb +5 -0
  48. data/test/dummy/config/initializers/secret_token.rb +12 -0
  49. data/test/dummy/config/initializers/session_store.rb +3 -0
  50. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  51. data/test/dummy/config/locales/en.yml +23 -0
  52. data/test/dummy/config/routes.rb +49 -0
  53. data/test/dummy/db/test.sqlite3 +0 -0
  54. data/test/dummy/log/test.log +72 -0
  55. data/test/dummy/public/404.html +27 -0
  56. data/test/dummy/public/422.html +26 -0
  57. data/test/dummy/public/500.html +26 -0
  58. data/test/dummy/public/favicon.ico +0 -0
  59. data/test/rails/dummy/Gemfile +17 -0
  60. data/test/rails/dummy/Gemfile.lock +120 -0
  61. data/test/rails/dummy/README.rdoc +28 -0
  62. data/test/rails/dummy/Rakefile +6 -0
  63. data/test/rails/dummy/app/assets/javascripts/application.js +13 -0
  64. data/test/rails/dummy/app/assets/stylesheets/application.css +13 -0
  65. data/test/rails/dummy/app/controllers/application_controller.rb +13 -0
  66. data/test/rails/dummy/app/controllers/home_controller.rb +4 -0
  67. data/test/rails/dummy/app/controllers/password_resets_controller.rb +37 -0
  68. data/test/rails/dummy/app/controllers/sessions_controller.rb +26 -0
  69. data/test/rails/dummy/app/controllers/users_controller.rb +21 -0
  70. data/test/rails/dummy/app/helpers/application_helper.rb +2 -0
  71. data/test/rails/dummy/app/mailers/user_mailer.rb +8 -0
  72. data/test/rails/dummy/app/models/user.rb +25 -0
  73. data/test/rails/dummy/app/views/home/index.html.erb +1 -0
  74. data/test/rails/dummy/app/views/layouts/application.html.erb +26 -0
  75. data/test/rails/dummy/app/views/password_resets/edit.html.erb +23 -0
  76. data/test/rails/dummy/app/views/password_resets/new.html.erb +9 -0
  77. data/test/rails/dummy/app/views/sessions/new.html.erb +16 -0
  78. data/test/rails/dummy/app/views/user_mailer/password_reset.text.erb +5 -0
  79. data/test/rails/dummy/app/views/users/new.html.erb +27 -0
  80. data/test/rails/dummy/bin/bundle +3 -0
  81. data/test/rails/dummy/bin/rails +4 -0
  82. data/test/rails/dummy/bin/rake +4 -0
  83. data/test/rails/dummy/config.ru +4 -0
  84. data/test/rails/dummy/config/application.rb +23 -0
  85. data/test/rails/dummy/config/boot.rb +9 -0
  86. data/test/rails/dummy/config/database.yml +25 -0
  87. data/test/rails/dummy/config/environment.rb +5 -0
  88. data/test/rails/dummy/config/environments/development.rb +28 -0
  89. data/test/rails/dummy/config/environments/production.rb +80 -0
  90. data/test/rails/dummy/config/environments/test.rb +38 -0
  91. data/test/rails/dummy/config/initializers/backtrace_silencers.rb +7 -0
  92. data/test/rails/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  93. data/test/rails/dummy/config/initializers/inflections.rb +16 -0
  94. data/test/rails/dummy/config/initializers/mime_types.rb +5 -0
  95. data/test/rails/dummy/config/initializers/secret_token.rb +12 -0
  96. data/test/rails/dummy/config/initializers/session_store.rb +3 -0
  97. data/test/rails/dummy/config/initializers/wrap_parameters.rb +14 -0
  98. data/test/rails/dummy/config/locales/en.yml +23 -0
  99. data/test/rails/dummy/config/routes.rb +56 -0
  100. data/test/rails/dummy/db/migrate/20130310185934_create_users.rb +13 -0
  101. data/test/rails/dummy/db/test.sqlite3 +0 -0
  102. data/test/rails/dummy/log/test.log +454 -0
  103. data/test/rails/dummy/public/404.html +27 -0
  104. data/test/rails/dummy/public/422.html +26 -0
  105. data/test/rails/dummy/public/500.html +26 -0
  106. data/test/rails/dummy/public/favicon.ico +0 -0
  107. data/test/rails/dummy/test/fixtures/users.yml +15 -0
  108. data/test/rails/dummy/test/models/user_test.rb +7 -0
  109. data/test/rails/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  110. data/test/rails/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  111. data/test/rails/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  112. data/test/rails/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  113. data/test/rails/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  114. data/test/rails/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  115. data/test/test_helper.rb +31 -0
  116. metadata +335 -0
@@ -0,0 +1,27 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style>
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ <p>If you are the application owner check the logs for more information.</p>
26
+ </body>
27
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style>
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style>
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ <p>If you are the application owner check the logs for more information.</p>
25
+ </body>
26
+ </html>
File without changes
@@ -0,0 +1,15 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ email: MyString
5
+ password_digest: MyString
6
+ auth_token: MyString
7
+ password_reset_token: MyString
8
+ password_reset_sent_at: 2013-03-10 19:59:34
9
+
10
+ two:
11
+ email: MyString
12
+ password_digest: MyString
13
+ auth_token: MyString
14
+ password_reset_token: MyString
15
+ password_reset_sent_at: 2013-03-10 19:59:34
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class UserTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,31 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ dummy_dir = File.expand_path(File.join(File.dirname(__FILE__), "dummy"))
5
+ rails_dir = File.expand_path(File.join(File.dirname(__FILE__), "rails"))
6
+ rails_dummy_dir = rails_dir + "/dummy"
7
+ FileUtils.cp_r dummy_dir, rails_dir
8
+ require rails_dummy_dir + "/config/environment.rb"
9
+ require "rails/test_help"
10
+ require "rails/generators/test_case"
11
+ require "capybara/rails"
12
+ require "database_cleaner"
13
+ require "timecop"
14
+ require "generators/authpro/authpro_generator"
15
+
16
+ Rails.backtrace_cleaner.remove_silencers!
17
+
18
+ DatabaseCleaner.strategy = :truncation
19
+
20
+ class ActionDispatch::IntegrationTest
21
+ include Capybara::DSL
22
+
23
+ self.use_transactional_fixtures = false
24
+
25
+ teardown do
26
+ DatabaseCleaner.clean
27
+ Capybara.reset_sessions!
28
+ Capybara.use_default_driver
29
+ end
30
+ end
31
+
metadata ADDED
@@ -0,0 +1,335 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: authpro
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Richard Nyström
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-03-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0.beta1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0.beta1
27
+ - !ruby/object:Gem::Dependency
28
+ name: bcrypt-ruby
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 3.0.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: 3.0.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: sqlite3
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: capybara
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: database_cleaner
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ~>
74
+ - !ruby/object:Gem::Version
75
+ version: 1.0.0.RC1
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ~>
81
+ - !ruby/object:Gem::Version
82
+ version: 1.0.0.RC1
83
+ - !ruby/object:Gem::Dependency
84
+ name: timecop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: Simple Rails authentication generator for pros
98
+ email:
99
+ - ricny046@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - lib/authpro/version.rb
105
+ - lib/authpro.rb
106
+ - lib/generators/authpro/authpro_generator.rb
107
+ - lib/generators/authpro/templates/application.html.erb
108
+ - lib/generators/authpro/templates/home_controller.rb
109
+ - lib/generators/authpro/templates/index.html.erb
110
+ - lib/generators/authpro/templates/new_password_resets.html.erb
111
+ - lib/generators/authpro/templates/new_sessions.html.erb
112
+ - lib/generators/authpro/templates/new_user.html.erb
113
+ - lib/generators/authpro/templates/password_reset.text.erb
114
+ - lib/generators/authpro/templates/password_resets_controller.rb
115
+ - lib/generators/authpro/templates/password_resets_edit.html.erb
116
+ - lib/generators/authpro/templates/sessions_controller.rb
117
+ - lib/generators/authpro/templates/user.rb
118
+ - lib/generators/authpro/templates/user_mailer.rb
119
+ - lib/generators/authpro/templates/users_controller.rb
120
+ - lib/generators/authpro/USAGE
121
+ - lib/tasks/authpro_tasks.rake
122
+ - MIT-LICENSE
123
+ - Rakefile
124
+ - test/authpro_generator_test.rb
125
+ - test/authpro_integration_test.rb
126
+ - test/dummy/app/assets/javascripts/application.js
127
+ - test/dummy/app/assets/stylesheets/application.css
128
+ - test/dummy/app/controllers/application_controller.rb
129
+ - test/dummy/app/helpers/application_helper.rb
130
+ - test/dummy/app/views/layouts/application.html.erb
131
+ - test/dummy/bin/bundle
132
+ - test/dummy/bin/rails
133
+ - test/dummy/bin/rake
134
+ - test/dummy/config/application.rb
135
+ - test/dummy/config/boot.rb
136
+ - test/dummy/config/database.yml
137
+ - test/dummy/config/environment.rb
138
+ - test/dummy/config/environments/development.rb
139
+ - test/dummy/config/environments/production.rb
140
+ - test/dummy/config/environments/test.rb
141
+ - test/dummy/config/initializers/backtrace_silencers.rb
142
+ - test/dummy/config/initializers/filter_parameter_logging.rb
143
+ - test/dummy/config/initializers/inflections.rb
144
+ - test/dummy/config/initializers/mime_types.rb
145
+ - test/dummy/config/initializers/secret_token.rb
146
+ - test/dummy/config/initializers/session_store.rb
147
+ - test/dummy/config/initializers/wrap_parameters.rb
148
+ - test/dummy/config/locales/en.yml
149
+ - test/dummy/config/routes.rb
150
+ - test/dummy/config.ru
151
+ - test/dummy/db/test.sqlite3
152
+ - test/dummy/Gemfile
153
+ - test/dummy/Gemfile.lock
154
+ - test/dummy/log/test.log
155
+ - test/dummy/public/404.html
156
+ - test/dummy/public/422.html
157
+ - test/dummy/public/500.html
158
+ - test/dummy/public/favicon.ico
159
+ - test/dummy/Rakefile
160
+ - test/dummy/README.rdoc
161
+ - test/rails/dummy/app/assets/javascripts/application.js
162
+ - test/rails/dummy/app/assets/stylesheets/application.css
163
+ - test/rails/dummy/app/controllers/application_controller.rb
164
+ - test/rails/dummy/app/controllers/home_controller.rb
165
+ - test/rails/dummy/app/controllers/password_resets_controller.rb
166
+ - test/rails/dummy/app/controllers/sessions_controller.rb
167
+ - test/rails/dummy/app/controllers/users_controller.rb
168
+ - test/rails/dummy/app/helpers/application_helper.rb
169
+ - test/rails/dummy/app/mailers/user_mailer.rb
170
+ - test/rails/dummy/app/models/user.rb
171
+ - test/rails/dummy/app/views/home/index.html.erb
172
+ - test/rails/dummy/app/views/layouts/application.html.erb
173
+ - test/rails/dummy/app/views/password_resets/edit.html.erb
174
+ - test/rails/dummy/app/views/password_resets/new.html.erb
175
+ - test/rails/dummy/app/views/sessions/new.html.erb
176
+ - test/rails/dummy/app/views/user_mailer/password_reset.text.erb
177
+ - test/rails/dummy/app/views/users/new.html.erb
178
+ - test/rails/dummy/bin/bundle
179
+ - test/rails/dummy/bin/rails
180
+ - test/rails/dummy/bin/rake
181
+ - test/rails/dummy/config/application.rb
182
+ - test/rails/dummy/config/boot.rb
183
+ - test/rails/dummy/config/database.yml
184
+ - test/rails/dummy/config/environment.rb
185
+ - test/rails/dummy/config/environments/development.rb
186
+ - test/rails/dummy/config/environments/production.rb
187
+ - test/rails/dummy/config/environments/test.rb
188
+ - test/rails/dummy/config/initializers/backtrace_silencers.rb
189
+ - test/rails/dummy/config/initializers/filter_parameter_logging.rb
190
+ - test/rails/dummy/config/initializers/inflections.rb
191
+ - test/rails/dummy/config/initializers/mime_types.rb
192
+ - test/rails/dummy/config/initializers/secret_token.rb
193
+ - test/rails/dummy/config/initializers/session_store.rb
194
+ - test/rails/dummy/config/initializers/wrap_parameters.rb
195
+ - test/rails/dummy/config/locales/en.yml
196
+ - test/rails/dummy/config/routes.rb
197
+ - test/rails/dummy/config.ru
198
+ - test/rails/dummy/db/migrate/20130310185934_create_users.rb
199
+ - test/rails/dummy/db/test.sqlite3
200
+ - test/rails/dummy/Gemfile
201
+ - test/rails/dummy/Gemfile.lock
202
+ - test/rails/dummy/log/test.log
203
+ - test/rails/dummy/public/404.html
204
+ - test/rails/dummy/public/422.html
205
+ - test/rails/dummy/public/500.html
206
+ - test/rails/dummy/public/favicon.ico
207
+ - test/rails/dummy/Rakefile
208
+ - test/rails/dummy/README.rdoc
209
+ - test/rails/dummy/test/fixtures/users.yml
210
+ - test/rails/dummy/test/models/user_test.rb
211
+ - test/rails/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705
212
+ - test/rails/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af
213
+ - test/rails/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953
214
+ - test/rails/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994
215
+ - test/rails/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
216
+ - test/rails/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
217
+ - test/test_helper.rb
218
+ homepage: https://github.com/ricn/authpro
219
+ licenses: []
220
+ metadata: {}
221
+ post_install_message:
222
+ rdoc_options: []
223
+ require_paths:
224
+ - lib
225
+ required_ruby_version: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - '>='
228
+ - !ruby/object:Gem::Version
229
+ version: '0'
230
+ required_rubygems_version: !ruby/object:Gem::Requirement
231
+ requirements:
232
+ - - '>='
233
+ - !ruby/object:Gem::Version
234
+ version: '0'
235
+ requirements: []
236
+ rubyforge_project:
237
+ rubygems_version: 2.0.0
238
+ signing_key:
239
+ specification_version: 4
240
+ summary: Simple Rails authentication generator for pros
241
+ test_files:
242
+ - test/authpro_generator_test.rb
243
+ - test/authpro_integration_test.rb
244
+ - test/dummy/app/assets/javascripts/application.js
245
+ - test/dummy/app/assets/stylesheets/application.css
246
+ - test/dummy/app/controllers/application_controller.rb
247
+ - test/dummy/app/helpers/application_helper.rb
248
+ - test/dummy/app/views/layouts/application.html.erb
249
+ - test/dummy/bin/bundle
250
+ - test/dummy/bin/rails
251
+ - test/dummy/bin/rake
252
+ - test/dummy/config/application.rb
253
+ - test/dummy/config/boot.rb
254
+ - test/dummy/config/database.yml
255
+ - test/dummy/config/environment.rb
256
+ - test/dummy/config/environments/development.rb
257
+ - test/dummy/config/environments/production.rb
258
+ - test/dummy/config/environments/test.rb
259
+ - test/dummy/config/initializers/backtrace_silencers.rb
260
+ - test/dummy/config/initializers/filter_parameter_logging.rb
261
+ - test/dummy/config/initializers/inflections.rb
262
+ - test/dummy/config/initializers/mime_types.rb
263
+ - test/dummy/config/initializers/secret_token.rb
264
+ - test/dummy/config/initializers/session_store.rb
265
+ - test/dummy/config/initializers/wrap_parameters.rb
266
+ - test/dummy/config/locales/en.yml
267
+ - test/dummy/config/routes.rb
268
+ - test/dummy/config.ru
269
+ - test/dummy/db/test.sqlite3
270
+ - test/dummy/Gemfile
271
+ - test/dummy/Gemfile.lock
272
+ - test/dummy/log/test.log
273
+ - test/dummy/public/404.html
274
+ - test/dummy/public/422.html
275
+ - test/dummy/public/500.html
276
+ - test/dummy/public/favicon.ico
277
+ - test/dummy/Rakefile
278
+ - test/dummy/README.rdoc
279
+ - test/rails/dummy/app/assets/javascripts/application.js
280
+ - test/rails/dummy/app/assets/stylesheets/application.css
281
+ - test/rails/dummy/app/controllers/application_controller.rb
282
+ - test/rails/dummy/app/controllers/home_controller.rb
283
+ - test/rails/dummy/app/controllers/password_resets_controller.rb
284
+ - test/rails/dummy/app/controllers/sessions_controller.rb
285
+ - test/rails/dummy/app/controllers/users_controller.rb
286
+ - test/rails/dummy/app/helpers/application_helper.rb
287
+ - test/rails/dummy/app/mailers/user_mailer.rb
288
+ - test/rails/dummy/app/models/user.rb
289
+ - test/rails/dummy/app/views/home/index.html.erb
290
+ - test/rails/dummy/app/views/layouts/application.html.erb
291
+ - test/rails/dummy/app/views/password_resets/edit.html.erb
292
+ - test/rails/dummy/app/views/password_resets/new.html.erb
293
+ - test/rails/dummy/app/views/sessions/new.html.erb
294
+ - test/rails/dummy/app/views/user_mailer/password_reset.text.erb
295
+ - test/rails/dummy/app/views/users/new.html.erb
296
+ - test/rails/dummy/bin/bundle
297
+ - test/rails/dummy/bin/rails
298
+ - test/rails/dummy/bin/rake
299
+ - test/rails/dummy/config/application.rb
300
+ - test/rails/dummy/config/boot.rb
301
+ - test/rails/dummy/config/database.yml
302
+ - test/rails/dummy/config/environment.rb
303
+ - test/rails/dummy/config/environments/development.rb
304
+ - test/rails/dummy/config/environments/production.rb
305
+ - test/rails/dummy/config/environments/test.rb
306
+ - test/rails/dummy/config/initializers/backtrace_silencers.rb
307
+ - test/rails/dummy/config/initializers/filter_parameter_logging.rb
308
+ - test/rails/dummy/config/initializers/inflections.rb
309
+ - test/rails/dummy/config/initializers/mime_types.rb
310
+ - test/rails/dummy/config/initializers/secret_token.rb
311
+ - test/rails/dummy/config/initializers/session_store.rb
312
+ - test/rails/dummy/config/initializers/wrap_parameters.rb
313
+ - test/rails/dummy/config/locales/en.yml
314
+ - test/rails/dummy/config/routes.rb
315
+ - test/rails/dummy/config.ru
316
+ - test/rails/dummy/db/migrate/20130310185934_create_users.rb
317
+ - test/rails/dummy/db/test.sqlite3
318
+ - test/rails/dummy/Gemfile
319
+ - test/rails/dummy/Gemfile.lock
320
+ - test/rails/dummy/log/test.log
321
+ - test/rails/dummy/public/404.html
322
+ - test/rails/dummy/public/422.html
323
+ - test/rails/dummy/public/500.html
324
+ - test/rails/dummy/public/favicon.ico
325
+ - test/rails/dummy/Rakefile
326
+ - test/rails/dummy/README.rdoc
327
+ - test/rails/dummy/test/fixtures/users.yml
328
+ - test/rails/dummy/test/models/user_test.rb
329
+ - test/rails/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705
330
+ - test/rails/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af
331
+ - test/rails/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953
332
+ - test/rails/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994
333
+ - test/rails/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
334
+ - test/rails/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
335
+ - test/test_helper.rb