bpluser 0.0.24 → 0.0.26
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/app/controllers/bpluser/users/registrations_controller.rb +1 -1
- data/lib/bpluser/version.rb +1 -1
- metadata +24 -24
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7f2736b79e16012f1fe5260a9394007435b8de59
|
|
4
|
+
data.tar.gz: 596b8419d24719160f6a32e1b829ac91ca24e6b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bcddf94ebff73f14573d001e2996f33e2b5a7f968e9ba0673f975dce5d0e007b911a86950204fd40a89d421eef20600dd3d674926634e0fe0b93259e2b5e1d04
|
|
7
|
+
data.tar.gz: 00ad7498d128642772df76654d90dc0dd28f0c3af6d32584be643c949147b67fbe3a3622c992c83c6bc3ee9754c641b0ae3f474366810fb68870c0be2126ba7a
|
|
@@ -19,7 +19,7 @@ module Bpluser::Users::RegistrationsController
|
|
|
19
19
|
params[:user][:username] = params[:user][:uid]
|
|
20
20
|
params[:user][:display_name] = params[:user][:first_name] + " " + params[:user][:last_name]
|
|
21
21
|
if User.where(:provider => params[:user][:provider], :uid => params[:user][:email]).present?
|
|
22
|
-
flash[:error] = "
|
|
22
|
+
flash[:error] = "An account with that email (#{params[:user][:email]}) already exists. Please sign in or click the \"Forgot your password?\" link below."
|
|
23
23
|
redirect_to new_user_session_path
|
|
24
24
|
else
|
|
25
25
|
super
|
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.26
|
|
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:
|
|
11
|
+
date: 2018-12-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -98,16 +98,16 @@ dependencies:
|
|
|
98
98
|
name: devise
|
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
|
100
100
|
requirements:
|
|
101
|
-
- - "
|
|
101
|
+
- - ">="
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
|
-
version:
|
|
103
|
+
version: '0'
|
|
104
104
|
type: :runtime
|
|
105
105
|
prerelease: false
|
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
107
|
requirements:
|
|
108
|
-
- - "
|
|
108
|
+
- - ">="
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
|
-
version:
|
|
110
|
+
version: '0'
|
|
111
111
|
- !ruby/object:Gem::Dependency
|
|
112
112
|
name: sqlite3
|
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -220,38 +220,38 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
220
220
|
version: '0'
|
|
221
221
|
requirements: []
|
|
222
222
|
rubyforge_project:
|
|
223
|
-
rubygems_version: 2.
|
|
223
|
+
rubygems_version: 2.6.12
|
|
224
224
|
signing_key:
|
|
225
225
|
specification_version: 4
|
|
226
226
|
summary: Shared user access gem of BPL
|
|
227
227
|
test_files:
|
|
228
|
-
- test/
|
|
229
|
-
- test/
|
|
230
|
-
- test/dummy/
|
|
231
|
-
- test/dummy/
|
|
232
|
-
- test/dummy/app/controllers/application_controller.rb
|
|
233
|
-
- test/dummy/app/views/layouts/application.html.erb
|
|
228
|
+
- test/integration/navigation_test.rb
|
|
229
|
+
- test/bpluser_test.rb
|
|
230
|
+
- test/dummy/Rakefile
|
|
231
|
+
- test/dummy/README.rdoc
|
|
234
232
|
- test/dummy/script/rails
|
|
235
|
-
- test/dummy/public/422.html
|
|
236
|
-
- test/dummy/public/favicon.ico
|
|
237
233
|
- test/dummy/public/500.html
|
|
238
234
|
- test/dummy/public/404.html
|
|
239
|
-
- test/dummy/
|
|
240
|
-
- test/dummy/
|
|
241
|
-
- test/dummy/config/routes.rb
|
|
242
|
-
- test/dummy/config/application.rb
|
|
235
|
+
- test/dummy/public/favicon.ico
|
|
236
|
+
- test/dummy/public/422.html
|
|
243
237
|
- test/dummy/config/environment.rb
|
|
244
238
|
- test/dummy/config/initializers/wrap_parameters.rb
|
|
245
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
246
|
-
- test/dummy/config/initializers/mime_types.rb
|
|
247
239
|
- test/dummy/config/initializers/session_store.rb
|
|
248
240
|
- test/dummy/config/initializers/inflections.rb
|
|
241
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
249
242
|
- test/dummy/config/initializers/secret_token.rb
|
|
250
|
-
- test/dummy/config/
|
|
243
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
244
|
+
- test/dummy/config/application.rb
|
|
251
245
|
- test/dummy/config/locales/en.yml
|
|
252
246
|
- test/dummy/config/environments/test.rb
|
|
253
247
|
- test/dummy/config/environments/development.rb
|
|
254
248
|
- test/dummy/config/environments/production.rb
|
|
255
|
-
- test/
|
|
256
|
-
- test/
|
|
249
|
+
- test/dummy/config/routes.rb
|
|
250
|
+
- test/dummy/config/boot.rb
|
|
251
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
252
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
253
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
254
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
255
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
256
|
+
- test/dummy/config.ru
|
|
257
257
|
- test/test_helper.rb
|