user_mgmt 0.0.51 → 0.0.52
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.
- checksums.yaml +4 -4
- data/.gitignore +8 -2
- data/Gemfile +12 -2
- data/Gemfile.lock +119 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +35 -0
- data/app/assets/images/user_mgmt/.keep +0 -0
- data/app/assets/javascripts/user_mgmt/application.js +13 -0
- data/app/assets/stylesheets/user_mgmt/application.css +13 -0
- data/app/controllers/user_mgmt/application_controller.rb +4 -0
- data/app/helpers/user_mgmt/application_helper.rb +4 -0
- data/app/views/layouts/user_mgmt/application.html.erb +14 -0
- data/app/views/user_mgmt/registrations/new.html.haml +3 -4
- data/bin/rails +8 -0
- data/config/routes.rb +2 -0
- data/lib/tasks/user_mgmt_tasks.rake +4 -0
- data/lib/user_mgmt/engine.rb +6 -5
- data/lib/user_mgmt/version.rb +1 -1
- data/lib/user_mgmt.rb +11 -11
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/images/.keep +0 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/concerns/.keep +0 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/mailers/.keep +0 -0
- data/test/dummy/app/models/.keep +0 -0
- data/test/dummy/app/models/concerns/.keep +0 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/lib/assets/.keep +0 -0
- data/test/dummy/log/.keep +0 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +15 -0
- data/test/user_mgmt_test.rb +7 -0
- data/user_mgmt.gemspec +32 -24
- metadata +125 -6
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: user_mgmt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.52
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Danilo Faria, Fernando Gorodscy, Josh Leslie
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-07-
|
11
|
+
date: 2013-07-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: sqlite3
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: rspec
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,6 +94,20 @@ dependencies:
|
|
80
94
|
- - '>='
|
81
95
|
- !ruby/object:Gem::Version
|
82
96
|
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: haml-rails
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '>='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '>='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
83
111
|
- !ruby/object:Gem::Dependency
|
84
112
|
name: bundler
|
85
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -114,22 +142,34 @@ description: Includes functionality for site-specific registration and third-par
|
|
114
142
|
database authentication.
|
115
143
|
email:
|
116
144
|
- su_critic@hotmail.com
|
117
|
-
executables:
|
145
|
+
executables:
|
146
|
+
- rails
|
118
147
|
extensions: []
|
119
148
|
extra_rdoc_files: []
|
120
149
|
files:
|
121
150
|
- .gitignore
|
122
151
|
- .rspec
|
123
152
|
- Gemfile
|
153
|
+
- Gemfile.lock
|
124
154
|
- LICENSE.txt
|
155
|
+
- MIT-LICENSE
|
125
156
|
- README.md
|
126
157
|
- Rakefile
|
158
|
+
- app/assets/images/user_mgmt/.keep
|
159
|
+
- app/assets/javascripts/user_mgmt/application.js
|
160
|
+
- app/assets/stylesheets/user_mgmt/application.css
|
161
|
+
- app/controllers/user_mgmt/application_controller.rb
|
127
162
|
- app/controllers/user_mgmt_controller.rb
|
163
|
+
- app/helpers/user_mgmt/application_helper.rb
|
164
|
+
- app/views/layouts/user_mgmt/application.html.erb
|
128
165
|
- app/views/user_mgmt/registrations/_user_form.html.haml
|
129
166
|
- app/views/user_mgmt/registrations/new.html.haml
|
167
|
+
- bin/rails
|
168
|
+
- config/routes.rb
|
130
169
|
- lib/generators/templates/README
|
131
170
|
- lib/generators/templates/user_mgmt.rb
|
132
171
|
- lib/generators/user_mgmt/install_generator.rb
|
172
|
+
- lib/tasks/user_mgmt_tasks.rake
|
133
173
|
- lib/user_mgmt.rb
|
134
174
|
- lib/user_mgmt/configurator.rb
|
135
175
|
- lib/user_mgmt/engine.rb
|
@@ -137,6 +177,47 @@ files:
|
|
137
177
|
- spec/generators/install_generator_spec.rb
|
138
178
|
- spec/spec_helper.rb
|
139
179
|
- spec/user_mgmt_spec.rb
|
180
|
+
- test/dummy/README.rdoc
|
181
|
+
- test/dummy/Rakefile
|
182
|
+
- test/dummy/app/assets/images/.keep
|
183
|
+
- test/dummy/app/assets/javascripts/application.js
|
184
|
+
- test/dummy/app/assets/stylesheets/application.css
|
185
|
+
- test/dummy/app/controllers/application_controller.rb
|
186
|
+
- test/dummy/app/controllers/concerns/.keep
|
187
|
+
- test/dummy/app/helpers/application_helper.rb
|
188
|
+
- test/dummy/app/mailers/.keep
|
189
|
+
- test/dummy/app/models/.keep
|
190
|
+
- test/dummy/app/models/concerns/.keep
|
191
|
+
- test/dummy/app/views/layouts/application.html.erb
|
192
|
+
- test/dummy/bin/bundle
|
193
|
+
- test/dummy/bin/rails
|
194
|
+
- test/dummy/bin/rake
|
195
|
+
- test/dummy/config.ru
|
196
|
+
- test/dummy/config/application.rb
|
197
|
+
- test/dummy/config/boot.rb
|
198
|
+
- test/dummy/config/database.yml
|
199
|
+
- test/dummy/config/environment.rb
|
200
|
+
- test/dummy/config/environments/development.rb
|
201
|
+
- test/dummy/config/environments/production.rb
|
202
|
+
- test/dummy/config/environments/test.rb
|
203
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
204
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
205
|
+
- test/dummy/config/initializers/inflections.rb
|
206
|
+
- test/dummy/config/initializers/mime_types.rb
|
207
|
+
- test/dummy/config/initializers/secret_token.rb
|
208
|
+
- test/dummy/config/initializers/session_store.rb
|
209
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
210
|
+
- test/dummy/config/locales/en.yml
|
211
|
+
- test/dummy/config/routes.rb
|
212
|
+
- test/dummy/lib/assets/.keep
|
213
|
+
- test/dummy/log/.keep
|
214
|
+
- test/dummy/public/404.html
|
215
|
+
- test/dummy/public/422.html
|
216
|
+
- test/dummy/public/500.html
|
217
|
+
- test/dummy/public/favicon.ico
|
218
|
+
- test/integration/navigation_test.rb
|
219
|
+
- test/test_helper.rb
|
220
|
+
- test/user_mgmt_test.rb
|
140
221
|
- user_mgmt.gemspec
|
141
222
|
homepage: https://github.com/Methos2013/user_mgmt_gem
|
142
223
|
licenses:
|
@@ -163,6 +244,44 @@ signing_key:
|
|
163
244
|
specification_version: 4
|
164
245
|
summary: Various authentication options in an outside database.
|
165
246
|
test_files:
|
166
|
-
-
|
167
|
-
-
|
168
|
-
-
|
247
|
+
- test/dummy/README.rdoc
|
248
|
+
- test/dummy/Rakefile
|
249
|
+
- test/dummy/app/assets/images/.keep
|
250
|
+
- test/dummy/app/assets/javascripts/application.js
|
251
|
+
- test/dummy/app/assets/stylesheets/application.css
|
252
|
+
- test/dummy/app/controllers/application_controller.rb
|
253
|
+
- test/dummy/app/controllers/concerns/.keep
|
254
|
+
- test/dummy/app/helpers/application_helper.rb
|
255
|
+
- test/dummy/app/mailers/.keep
|
256
|
+
- test/dummy/app/models/.keep
|
257
|
+
- test/dummy/app/models/concerns/.keep
|
258
|
+
- test/dummy/app/views/layouts/application.html.erb
|
259
|
+
- test/dummy/bin/bundle
|
260
|
+
- test/dummy/bin/rails
|
261
|
+
- test/dummy/bin/rake
|
262
|
+
- test/dummy/config.ru
|
263
|
+
- test/dummy/config/application.rb
|
264
|
+
- test/dummy/config/boot.rb
|
265
|
+
- test/dummy/config/database.yml
|
266
|
+
- test/dummy/config/environment.rb
|
267
|
+
- test/dummy/config/environments/development.rb
|
268
|
+
- test/dummy/config/environments/production.rb
|
269
|
+
- test/dummy/config/environments/test.rb
|
270
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
271
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
272
|
+
- test/dummy/config/initializers/inflections.rb
|
273
|
+
- test/dummy/config/initializers/mime_types.rb
|
274
|
+
- test/dummy/config/initializers/secret_token.rb
|
275
|
+
- test/dummy/config/initializers/session_store.rb
|
276
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
277
|
+
- test/dummy/config/locales/en.yml
|
278
|
+
- test/dummy/config/routes.rb
|
279
|
+
- test/dummy/lib/assets/.keep
|
280
|
+
- test/dummy/log/.keep
|
281
|
+
- test/dummy/public/404.html
|
282
|
+
- test/dummy/public/422.html
|
283
|
+
- test/dummy/public/500.html
|
284
|
+
- test/dummy/public/favicon.ico
|
285
|
+
- test/integration/navigation_test.rb
|
286
|
+
- test/test_helper.rb
|
287
|
+
- test/user_mgmt_test.rb
|