lobby 0.0.1a

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. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +34 -0
  4. data/app/assets/javascripts/lobby/application.js +13 -0
  5. data/app/assets/stylesheets/lobby/application.css +13 -0
  6. data/app/controllers/lobby/application_controller.rb +3 -0
  7. data/app/controllers/lobby/application_controller.rb~ +6 -0
  8. data/app/controllers/lobby/confirmation_controller.rb +46 -0
  9. data/app/controllers/lobby/confirmation_controller.rb~ +44 -0
  10. data/app/controllers/lobby/password_forgotten_controller.rb +48 -0
  11. data/app/controllers/lobby/password_forgotten_controller.rb~ +48 -0
  12. data/app/controllers/lobby/sessions_controller.rb +33 -0
  13. data/app/controllers/lobby/sessions_controller.rb~ +33 -0
  14. data/app/controllers/lobby/users_controller.rb +23 -0
  15. data/app/controllers/lobby/users_controller.rb~ +23 -0
  16. data/app/forms/password_forgotten_form.rb +5 -0
  17. data/app/forms/password_forgotten_form.rb~ +5 -0
  18. data/app/helpers/lobby/application_helper.rb +4 -0
  19. data/app/mailers/confirmation_mailer.rb +30 -0
  20. data/app/mailers/confirmation_mailer.rb~ +28 -0
  21. data/app/models/auth_user.rb~ +100 -0
  22. data/app/models/authentication.rb~ +13 -0
  23. data/app/models/lobby/auth_user.rb +100 -0
  24. data/app/models/lobby/auth_user.rb~ +100 -0
  25. data/app/models/lobby/authentication.rb +13 -0
  26. data/app/models/lobby/password_forgotten_form_abstract.rb +47 -0
  27. data/app/models/password_forgotten_form_abstract.rb~ +45 -0
  28. data/app/views/layouts/lobby/application.html.erb +14 -0
  29. data/app/views/sessions/new.html.haml +19 -0
  30. data/app/views/sessions/new.html.haml~ +0 -0
  31. data/config/locales/de.yml +529 -0
  32. data/config/locales/de.yml~ +529 -0
  33. data/config/locales/en.bootstrap.yml +18 -0
  34. data/config/locales/en.yml +532 -0
  35. data/config/locales/en.yml~ +530 -0
  36. data/config/routes.rb +21 -0
  37. data/config/routes.rb~ +23 -0
  38. data/db/migrate/20131205180849_create_users.rb +16 -0
  39. data/db/migrate/20131205180849_create_users.rb~ +16 -0
  40. data/lib/lobby/engine.rb +7 -0
  41. data/lib/lobby/engine.rb~ +5 -0
  42. data/lib/lobby/version.rb +3 -0
  43. data/lib/lobby/version.rb~ +3 -0
  44. data/lib/lobby.rb +4 -0
  45. data/lib/tasks/lobby_tasks.rake +4 -0
  46. data/test/dummy/README.rdoc +28 -0
  47. data/test/dummy/Rakefile +6 -0
  48. data/test/dummy/app/assets/javascripts/application.js +13 -0
  49. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  50. data/test/dummy/app/controllers/application_controller.rb +6 -0
  51. data/test/dummy/app/controllers/application_controller.rb~ +5 -0
  52. data/test/dummy/app/helpers/application_helper.rb +2 -0
  53. data/test/dummy/app/models/user.rb +30 -0
  54. data/test/dummy/app/models/user.rb~ +30 -0
  55. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  56. data/test/dummy/app/views/lobby/common/_form_errors.html.haml +6 -0
  57. data/test/dummy/app/views/lobby/confirmation/new_email_token.html.haml +10 -0
  58. data/test/dummy/app/views/lobby/confirmation/registration.html.haml +15 -0
  59. data/test/dummy/app/views/lobby/confirmation/registration.html.haml~ +15 -0
  60. data/test/dummy/app/views/lobby/confirmation/resend_signup_token.html.haml +17 -0
  61. data/test/dummy/app/views/lobby/confirmation/resend_signup_token.html.haml~ +17 -0
  62. data/test/dummy/app/views/lobby/confirmation/user_email.html.haml +0 -0
  63. data/test/dummy/app/views/lobby/confirmation_mailer/new_email_request.text.haml +1 -0
  64. data/test/dummy/app/views/lobby/confirmation_mailer/registration.text.haml +1 -0
  65. data/test/dummy/app/views/lobby/confirmation_mailer/resend_signup_token.text.haml +1 -0
  66. data/test/dummy/app/views/lobby/confirmation_mailer/send_password_reset.text.haml +1 -0
  67. data/test/dummy/app/views/lobby/password_forgotten/new.html.haml +21 -0
  68. data/test/dummy/app/views/lobby/password_forgotten/new.html.haml~ +21 -0
  69. data/test/dummy/app/views/lobby/password_forgotten/order_new_password.html.haml +13 -0
  70. data/test/dummy/app/views/lobby/password_forgotten/order_new_password.html.haml~ +13 -0
  71. data/test/dummy/app/views/lobby/password_forgotten/recover_password_auth.html.haml +9 -0
  72. data/test/dummy/app/views/lobby/sessions/new.html.haml +12 -0
  73. data/test/dummy/app/views/lobby/sessions/new.html.haml~ +12 -0
  74. data/test/dummy/app/views/lobby/users/new.html.haml +20 -0
  75. data/test/dummy/app/views/lobby/users/new.html.haml~ +20 -0
  76. data/test/dummy/bin/bundle +3 -0
  77. data/test/dummy/bin/rails +4 -0
  78. data/test/dummy/bin/rake +4 -0
  79. data/test/dummy/config/app_config.yml +31 -0
  80. data/test/dummy/config/application.rb +23 -0
  81. data/test/dummy/config/boot.rb +5 -0
  82. data/test/dummy/config/database.yml +25 -0
  83. data/test/dummy/config/environment.rb +5 -0
  84. data/test/dummy/config/environments/development.rb +29 -0
  85. data/test/dummy/config/environments/production.rb +80 -0
  86. data/test/dummy/config/environments/test.rb +36 -0
  87. data/test/dummy/config/initializers/action_mailer.rb +75 -0
  88. data/test/dummy/config/initializers/action_mailer.rb~ +75 -0
  89. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  90. data/test/dummy/config/initializers/constants.rb +1 -0
  91. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  92. data/test/dummy/config/initializers/inflections.rb +16 -0
  93. data/test/dummy/config/initializers/load_app_config.rb +3 -0
  94. data/test/dummy/config/initializers/mime_types.rb +5 -0
  95. data/test/dummy/config/initializers/secret_token.rb +12 -0
  96. data/test/dummy/config/initializers/session_store.rb +3 -0
  97. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  98. data/test/dummy/config/locales/en.yml +23 -0
  99. data/test/dummy/config/routes.rb +4 -0
  100. data/test/dummy/config.ru +4 -0
  101. data/test/dummy/db/development.sqlite3 +0 -0
  102. data/test/dummy/log/development.log +10657 -0
  103. data/test/dummy/public/404.html +58 -0
  104. data/test/dummy/public/422.html +58 -0
  105. data/test/dummy/public/500.html +57 -0
  106. data/test/dummy/public/favicon.ico +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sprockets/14bc37f3a9c398f6798dd6a37b000ced +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sprockets/940a306c051fc9ecf6ca85c072fac574 +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sprockets/959f475481f39907c5c22136d3ad0b02 +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sprockets/c4adbd06827a23aa54492fb7cb615529 +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sprockets/c615a56268b779cf1f55f9134c8ae04e +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sprockets/e4cc9c240851fac0c22ef37d0ee2fb62 +0 -0
  113. data/test/integration/navigation_test.rb +10 -0
  114. data/test/lobby_test.rb +7 -0
  115. data/test/test_helper.rb +15 -0
  116. metadata +294 -0
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/404.html -->
52
+ <div class="dialog">
53
+ <h1>The page you were looking for doesn't exist.</h1>
54
+ <p>You may have mistyped the address or the page may have moved.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/422.html -->
52
+ <div class="dialog">
53
+ <h1>The change you wanted was rejected.</h1>
54
+ <p>Maybe you tried to change something you didn't have access to.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,57 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/500.html -->
52
+ <div class="dialog">
53
+ <h1>We're sorry, but something went wrong.</h1>
54
+ </div>
55
+ <p>If you are the application owner check the logs for more information.</p>
56
+ </body>
57
+ </html>
File without changes
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class LobbyTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Lobby
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
metadata ADDED
@@ -0,0 +1,294 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lobby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1a
5
+ prerelease: 5
6
+ platform: ruby
7
+ authors:
8
+ - Guido Boyke
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-12-06 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 4.0.0.rc2
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 4.0.0.rc2
30
+ - !ruby/object:Gem::Dependency
31
+ name: haml
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 4.0.4
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 4.0.4
46
+ - !ruby/object:Gem::Dependency
47
+ name: bcrypt-ruby
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: 3.0.0
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 3.0.0
62
+ - !ruby/object:Gem::Dependency
63
+ name: sqlite3
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ description: Lightweight authentication for my projects
79
+ email:
80
+ - guido.boyke@gboyke.com
81
+ executables: []
82
+ extensions: []
83
+ extra_rdoc_files: []
84
+ files:
85
+ - app/forms/password_forgotten_form.rb
86
+ - app/forms/password_forgotten_form.rb~
87
+ - app/mailers/confirmation_mailer.rb
88
+ - app/mailers/confirmation_mailer.rb~
89
+ - app/views/sessions/new.html.haml
90
+ - app/views/sessions/new.html.haml~
91
+ - app/views/layouts/lobby/application.html.erb
92
+ - app/assets/stylesheets/lobby/application.css
93
+ - app/assets/javascripts/lobby/application.js
94
+ - app/controllers/lobby/users_controller.rb~
95
+ - app/controllers/lobby/application_controller.rb
96
+ - app/controllers/lobby/confirmation_controller.rb
97
+ - app/controllers/lobby/password_forgotten_controller.rb~
98
+ - app/controllers/lobby/sessions_controller.rb~
99
+ - app/controllers/lobby/users_controller.rb
100
+ - app/controllers/lobby/confirmation_controller.rb~
101
+ - app/controllers/lobby/sessions_controller.rb
102
+ - app/controllers/lobby/application_controller.rb~
103
+ - app/controllers/lobby/password_forgotten_controller.rb
104
+ - app/helpers/lobby/application_helper.rb
105
+ - app/models/authentication.rb~
106
+ - app/models/lobby/auth_user.rb
107
+ - app/models/lobby/auth_user.rb~
108
+ - app/models/lobby/authentication.rb
109
+ - app/models/lobby/password_forgotten_form_abstract.rb
110
+ - app/models/auth_user.rb~
111
+ - app/models/password_forgotten_form_abstract.rb~
112
+ - config/locales/de.yml
113
+ - config/locales/en.yml~
114
+ - config/locales/en.yml
115
+ - config/locales/en.bootstrap.yml
116
+ - config/locales/de.yml~
117
+ - config/routes.rb~
118
+ - config/routes.rb
119
+ - db/migrate/20131205180849_create_users.rb~
120
+ - db/migrate/20131205180849_create_users.rb
121
+ - lib/lobby/engine.rb~
122
+ - lib/lobby/engine.rb
123
+ - lib/lobby/version.rb
124
+ - lib/lobby/version.rb~
125
+ - lib/lobby.rb
126
+ - lib/tasks/lobby_tasks.rake
127
+ - MIT-LICENSE
128
+ - Rakefile
129
+ - README.rdoc
130
+ - test/integration/navigation_test.rb
131
+ - test/test_helper.rb
132
+ - test/lobby_test.rb
133
+ - test/dummy/Rakefile
134
+ - test/dummy/db/development.sqlite3
135
+ - test/dummy/config.ru
136
+ - test/dummy/config/environments/test.rb
137
+ - test/dummy/config/environments/development.rb
138
+ - test/dummy/config/environments/production.rb
139
+ - test/dummy/config/boot.rb
140
+ - test/dummy/config/environment.rb
141
+ - test/dummy/config/initializers/constants.rb
142
+ - test/dummy/config/initializers/backtrace_silencers.rb
143
+ - test/dummy/config/initializers/load_app_config.rb
144
+ - test/dummy/config/initializers/action_mailer.rb
145
+ - test/dummy/config/initializers/action_mailer.rb~
146
+ - test/dummy/config/initializers/session_store.rb
147
+ - test/dummy/config/initializers/inflections.rb
148
+ - test/dummy/config/initializers/wrap_parameters.rb
149
+ - test/dummy/config/initializers/filter_parameter_logging.rb
150
+ - test/dummy/config/initializers/secret_token.rb
151
+ - test/dummy/config/initializers/mime_types.rb
152
+ - test/dummy/config/locales/en.yml
153
+ - test/dummy/config/app_config.yml
154
+ - test/dummy/config/database.yml
155
+ - test/dummy/config/routes.rb
156
+ - test/dummy/config/application.rb
157
+ - test/dummy/app/views/lobby/password_forgotten/new.html.haml
158
+ - test/dummy/app/views/lobby/password_forgotten/order_new_password.html.haml~
159
+ - test/dummy/app/views/lobby/password_forgotten/order_new_password.html.haml
160
+ - test/dummy/app/views/lobby/password_forgotten/recover_password_auth.html.haml
161
+ - test/dummy/app/views/lobby/password_forgotten/new.html.haml~
162
+ - test/dummy/app/views/lobby/confirmation_mailer/resend_signup_token.text.haml
163
+ - test/dummy/app/views/lobby/confirmation_mailer/send_password_reset.text.haml
164
+ - test/dummy/app/views/lobby/confirmation_mailer/registration.text.haml
165
+ - test/dummy/app/views/lobby/confirmation_mailer/new_email_request.text.haml
166
+ - test/dummy/app/views/lobby/sessions/new.html.haml
167
+ - test/dummy/app/views/lobby/sessions/new.html.haml~
168
+ - test/dummy/app/views/lobby/confirmation/registration.html.haml
169
+ - test/dummy/app/views/lobby/confirmation/resend_signup_token.html.haml~
170
+ - test/dummy/app/views/lobby/confirmation/resend_signup_token.html.haml
171
+ - test/dummy/app/views/lobby/confirmation/user_email.html.haml
172
+ - test/dummy/app/views/lobby/confirmation/new_email_token.html.haml
173
+ - test/dummy/app/views/lobby/confirmation/registration.html.haml~
174
+ - test/dummy/app/views/lobby/common/_form_errors.html.haml
175
+ - test/dummy/app/views/lobby/users/new.html.haml
176
+ - test/dummy/app/views/lobby/users/new.html.haml~
177
+ - test/dummy/app/views/layouts/application.html.erb
178
+ - test/dummy/app/assets/stylesheets/application.css
179
+ - test/dummy/app/assets/javascripts/application.js
180
+ - test/dummy/app/controllers/application_controller.rb
181
+ - test/dummy/app/controllers/application_controller.rb~
182
+ - test/dummy/app/helpers/application_helper.rb
183
+ - test/dummy/app/models/user.rb~
184
+ - test/dummy/app/models/user.rb
185
+ - test/dummy/bin/rails
186
+ - test/dummy/bin/rake
187
+ - test/dummy/bin/bundle
188
+ - test/dummy/public/404.html
189
+ - test/dummy/public/500.html
190
+ - test/dummy/public/favicon.ico
191
+ - test/dummy/public/422.html
192
+ - test/dummy/tmp/cache/assets/development/sprockets/c4adbd06827a23aa54492fb7cb615529
193
+ - test/dummy/tmp/cache/assets/development/sprockets/c615a56268b779cf1f55f9134c8ae04e
194
+ - test/dummy/tmp/cache/assets/development/sprockets/14bc37f3a9c398f6798dd6a37b000ced
195
+ - test/dummy/tmp/cache/assets/development/sprockets/959f475481f39907c5c22136d3ad0b02
196
+ - test/dummy/tmp/cache/assets/development/sprockets/e4cc9c240851fac0c22ef37d0ee2fb62
197
+ - test/dummy/tmp/cache/assets/development/sprockets/940a306c051fc9ecf6ca85c072fac574
198
+ - test/dummy/README.rdoc
199
+ - test/dummy/log/development.log
200
+ homepage: http://www.gboyke.com
201
+ licenses: []
202
+ post_install_message:
203
+ rdoc_options: []
204
+ require_paths:
205
+ - lib
206
+ required_ruby_version: !ruby/object:Gem::Requirement
207
+ none: false
208
+ requirements:
209
+ - - ! '>='
210
+ - !ruby/object:Gem::Version
211
+ version: '0'
212
+ required_rubygems_version: !ruby/object:Gem::Requirement
213
+ none: false
214
+ requirements:
215
+ - - ! '>'
216
+ - !ruby/object:Gem::Version
217
+ version: 1.3.1
218
+ requirements: []
219
+ rubyforge_project:
220
+ rubygems_version: 1.8.23
221
+ signing_key:
222
+ specification_version: 3
223
+ summary: Authentication
224
+ test_files:
225
+ - test/integration/navigation_test.rb
226
+ - test/test_helper.rb
227
+ - test/lobby_test.rb
228
+ - test/dummy/Rakefile
229
+ - test/dummy/db/development.sqlite3
230
+ - test/dummy/config.ru
231
+ - test/dummy/config/environments/test.rb
232
+ - test/dummy/config/environments/development.rb
233
+ - test/dummy/config/environments/production.rb
234
+ - test/dummy/config/boot.rb
235
+ - test/dummy/config/environment.rb
236
+ - test/dummy/config/initializers/constants.rb
237
+ - test/dummy/config/initializers/backtrace_silencers.rb
238
+ - test/dummy/config/initializers/load_app_config.rb
239
+ - test/dummy/config/initializers/action_mailer.rb
240
+ - test/dummy/config/initializers/action_mailer.rb~
241
+ - test/dummy/config/initializers/session_store.rb
242
+ - test/dummy/config/initializers/inflections.rb
243
+ - test/dummy/config/initializers/wrap_parameters.rb
244
+ - test/dummy/config/initializers/filter_parameter_logging.rb
245
+ - test/dummy/config/initializers/secret_token.rb
246
+ - test/dummy/config/initializers/mime_types.rb
247
+ - test/dummy/config/locales/en.yml
248
+ - test/dummy/config/app_config.yml
249
+ - test/dummy/config/database.yml
250
+ - test/dummy/config/routes.rb
251
+ - test/dummy/config/application.rb
252
+ - test/dummy/app/views/lobby/password_forgotten/new.html.haml
253
+ - test/dummy/app/views/lobby/password_forgotten/order_new_password.html.haml~
254
+ - test/dummy/app/views/lobby/password_forgotten/order_new_password.html.haml
255
+ - test/dummy/app/views/lobby/password_forgotten/recover_password_auth.html.haml
256
+ - test/dummy/app/views/lobby/password_forgotten/new.html.haml~
257
+ - test/dummy/app/views/lobby/confirmation_mailer/resend_signup_token.text.haml
258
+ - test/dummy/app/views/lobby/confirmation_mailer/send_password_reset.text.haml
259
+ - test/dummy/app/views/lobby/confirmation_mailer/registration.text.haml
260
+ - test/dummy/app/views/lobby/confirmation_mailer/new_email_request.text.haml
261
+ - test/dummy/app/views/lobby/sessions/new.html.haml
262
+ - test/dummy/app/views/lobby/sessions/new.html.haml~
263
+ - test/dummy/app/views/lobby/confirmation/registration.html.haml
264
+ - test/dummy/app/views/lobby/confirmation/resend_signup_token.html.haml~
265
+ - test/dummy/app/views/lobby/confirmation/resend_signup_token.html.haml
266
+ - test/dummy/app/views/lobby/confirmation/user_email.html.haml
267
+ - test/dummy/app/views/lobby/confirmation/new_email_token.html.haml
268
+ - test/dummy/app/views/lobby/confirmation/registration.html.haml~
269
+ - test/dummy/app/views/lobby/common/_form_errors.html.haml
270
+ - test/dummy/app/views/lobby/users/new.html.haml
271
+ - test/dummy/app/views/lobby/users/new.html.haml~
272
+ - test/dummy/app/views/layouts/application.html.erb
273
+ - test/dummy/app/assets/stylesheets/application.css
274
+ - test/dummy/app/assets/javascripts/application.js
275
+ - test/dummy/app/controllers/application_controller.rb
276
+ - test/dummy/app/controllers/application_controller.rb~
277
+ - test/dummy/app/helpers/application_helper.rb
278
+ - test/dummy/app/models/user.rb~
279
+ - test/dummy/app/models/user.rb
280
+ - test/dummy/bin/rails
281
+ - test/dummy/bin/rake
282
+ - test/dummy/bin/bundle
283
+ - test/dummy/public/404.html
284
+ - test/dummy/public/500.html
285
+ - test/dummy/public/favicon.ico
286
+ - test/dummy/public/422.html
287
+ - test/dummy/tmp/cache/assets/development/sprockets/c4adbd06827a23aa54492fb7cb615529
288
+ - test/dummy/tmp/cache/assets/development/sprockets/c615a56268b779cf1f55f9134c8ae04e
289
+ - test/dummy/tmp/cache/assets/development/sprockets/14bc37f3a9c398f6798dd6a37b000ced
290
+ - test/dummy/tmp/cache/assets/development/sprockets/959f475481f39907c5c22136d3ad0b02
291
+ - test/dummy/tmp/cache/assets/development/sprockets/e4cc9c240851fac0c22ef37d0ee2fb62
292
+ - test/dummy/tmp/cache/assets/development/sprockets/940a306c051fc9ecf6ca85c072fac574
293
+ - test/dummy/README.rdoc
294
+ - test/dummy/log/development.log