bpluser 0.0.4 → 0.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 32ae3c9a34d6f207f376e898d296b473815d44b8
4
- data.tar.gz: fbc0d7852c1761494d503187666a8ad8b56e1cb1
3
+ metadata.gz: cc109c3bc01a5a5c355e944ed3fdd63261e1af74
4
+ data.tar.gz: a7f7d3daed8f455354f251130a34a17ec6fda22e
5
5
  SHA512:
6
- metadata.gz: f6a8300434a70b7c7634c900dd416d6a63d2d722d87032efe4305dbfc4ea33c4f0b10ec1423c6e0d128664b52913fef8280a34ff241dcfc9d9b13f6179124233
7
- data.tar.gz: f9de54583e80eee25971d5f444291cf3311eb48ca9139a465f828a495e9048457bf0e0d5a20310d7df67f7e7089e2119c0c9ddf4a0301afd78eaa1e91317c772
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
@@ -1,3 +1,3 @@
1
1
  module Bpluser
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
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
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-06-29 00:00:00.000000000 Z
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.4.6
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/dummy/app/helpers/application_helper.rb
214
- - test/dummy/app/views/layouts/application.html.erb
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/Rakefile
219
- - test/dummy/public/404.html
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/script/rails
226
- - test/dummy/config/routes.rb
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/environments/production.rb
232
- - test/dummy/config/locales/en.yml
233
- - test/dummy/config/boot.rb
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/initializers/session_store.rb
240
- - test/test_helper.rb
241
- - test/integration/navigation_test.rb
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