bpluser 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/bpluser/users/registrations_controller.rb +1 -1
- data/lib/bpluser/version.rb +1 -1
- metadata +25 -25
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc109c3bc01a5a5c355e944ed3fdd63261e1af74
|
4
|
+
data.tar.gz: a7f7d3daed8f455354f251130a34a17ec6fda22e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75b7517206259d3129b7cee23156d0d7dfc345e8cbff3ed2def3a983ac31108c97e95bafce8d07fa9513fda6f7770a4055be4ca806ecb210b1750ddbd2ea00b4
|
7
|
+
data.tar.gz: 1c66e33c09af6b1d7731752abe2fbad0f4c5f3fbc9d866fb8c498d34f896e1192e7027cdf41e2697e48a0704a3ee28bb9e0bcb265b4d54c7b40d81ca33b6e681
|
@@ -8,7 +8,7 @@ module Bpluser::Users::RegistrationsController
|
|
8
8
|
module InstanceMethods
|
9
9
|
def update_sanitized_params
|
10
10
|
devise_parameter_sanitizer.for(:sign_up) {|u| u.permit(:provider, :username, :email, :password, :password_confirmation, :remember_me, :first_name, :last_name, :display_name, :uid)}
|
11
|
-
devise_parameter_sanitizer.for(:account_update) {|u| u.permit(:provider, :username, :email, :password, :password_confirmation, :remember_me, :first_name, :last_name, :display_name, :uid)}
|
11
|
+
devise_parameter_sanitizer.for(:account_update) {|u| u.permit(:provider, :username, :email, :password, :password_confirmation, :remember_me, :first_name, :last_name, :display_name, :uid, :current_password)}
|
12
12
|
end
|
13
13
|
|
14
14
|
# POST /resource
|
data/lib/bpluser/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bpluser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Boston Public Library Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -204,38 +204,38 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
204
204
|
version: '0'
|
205
205
|
requirements: []
|
206
206
|
rubyforge_project:
|
207
|
-
rubygems_version: 2.
|
207
|
+
rubygems_version: 2.2.2
|
208
208
|
signing_key:
|
209
209
|
specification_version: 4
|
210
210
|
summary: Shared user access gem of BPL
|
211
211
|
test_files:
|
212
|
+
- test/integration/navigation_test.rb
|
212
213
|
- test/bpluser_test.rb
|
213
|
-
- test/
|
214
|
-
- test/dummy/
|
215
|
-
- test/dummy/app/assets/javascripts/application.js
|
214
|
+
- test/test_helper.rb
|
215
|
+
- test/dummy/config.ru
|
216
216
|
- test/dummy/app/assets/stylesheets/application.css
|
217
|
+
- test/dummy/app/assets/javascripts/application.js
|
217
218
|
- test/dummy/app/controllers/application_controller.rb
|
218
|
-
- test/dummy/
|
219
|
-
- test/dummy/
|
220
|
-
- test/dummy/public/500.html
|
221
|
-
- test/dummy/public/422.html
|
222
|
-
- test/dummy/public/favicon.ico
|
223
|
-
- test/dummy/config.ru
|
219
|
+
- test/dummy/app/views/layouts/application.html.erb
|
220
|
+
- test/dummy/app/helpers/application_helper.rb
|
224
221
|
- test/dummy/README.rdoc
|
225
|
-
- test/dummy/
|
226
|
-
- test/dummy/config/
|
227
|
-
- test/dummy/config/environment.rb
|
228
|
-
- test/dummy/config/application.rb
|
222
|
+
- test/dummy/config/locales/en.yml
|
223
|
+
- test/dummy/config/environments/production.rb
|
229
224
|
- test/dummy/config/environments/test.rb
|
230
225
|
- test/dummy/config/environments/development.rb
|
231
|
-
- test/dummy/config/
|
232
|
-
- test/dummy/config/
|
233
|
-
- test/dummy/config/
|
234
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
235
|
-
- test/dummy/config/initializers/mime_types.rb
|
236
|
-
- test/dummy/config/initializers/inflections.rb
|
226
|
+
- test/dummy/config/routes.rb
|
227
|
+
- test/dummy/config/application.rb
|
228
|
+
- test/dummy/config/initializers/session_store.rb
|
237
229
|
- test/dummy/config/initializers/secret_token.rb
|
230
|
+
- test/dummy/config/initializers/inflections.rb
|
231
|
+
- test/dummy/config/initializers/mime_types.rb
|
232
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
238
233
|
- test/dummy/config/initializers/wrap_parameters.rb
|
239
|
-
- test/dummy/config/
|
240
|
-
- test/
|
241
|
-
- test/
|
234
|
+
- test/dummy/config/boot.rb
|
235
|
+
- test/dummy/config/environment.rb
|
236
|
+
- test/dummy/script/rails
|
237
|
+
- test/dummy/public/500.html
|
238
|
+
- test/dummy/public/favicon.ico
|
239
|
+
- test/dummy/public/422.html
|
240
|
+
- test/dummy/public/404.html
|
241
|
+
- test/dummy/Rakefile
|