devise 4.5.0 → 4.6.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of devise might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/CHANGELOG.md +30 -1
- data/MIT-LICENSE +1 -1
- data/README.md +18 -0
- data/app/controllers/devise/passwords_controller.rb +1 -0
- data/app/controllers/devise/registrations_controller.rb +25 -7
- data/app/helpers/devise_helper.rb +10 -19
- data/app/views/devise/confirmations/new.html.erb +1 -1
- data/app/views/devise/passwords/edit.html.erb +1 -1
- data/app/views/devise/passwords/new.html.erb +1 -1
- data/app/views/devise/registrations/edit.html.erb +1 -1
- data/app/views/devise/registrations/new.html.erb +1 -1
- data/app/views/devise/sessions/new.html.erb +2 -2
- data/app/views/devise/shared/_error_messages.html.erb +15 -0
- data/app/views/devise/shared/_links.html.erb +7 -7
- data/app/views/devise/unlocks/new.html.erb +1 -1
- data/config/locales/en.yml +1 -0
- data/lib/devise.rb +4 -0
- data/lib/devise/controllers/helpers.rb +1 -1
- data/lib/devise/failure_app.rb +28 -3
- data/lib/devise/models/authenticatable.rb +7 -15
- data/lib/devise/models/confirmable.rb +4 -1
- data/lib/devise/models/database_authenticatable.rb +41 -6
- data/lib/devise/models/lockable.rb +2 -2
- data/lib/devise/models/registerable.rb +2 -0
- data/lib/devise/strategies/database_authenticatable.rb +3 -0
- data/lib/devise/test/controller_helpers.rb +1 -1
- data/lib/devise/version.rb +1 -1
- data/lib/generators/active_record/devise_generator.rb +4 -4
- data/lib/generators/devise/controllers_generator.rb +1 -1
- data/lib/generators/templates/devise.rb +12 -3
- data/lib/generators/templates/simple_form_for/registrations/edit.html.erb +1 -1
- data/lib/generators/templates/simple_form_for/registrations/new.html.erb +1 -1
- metadata +5 -305
- data/.gitignore +0 -10
- data/.travis.yml +0 -69
- data/.yardopts +0 -9
- data/CODE_OF_CONDUCT.md +0 -22
- data/CONTRIBUTING.md +0 -79
- data/Gemfile +0 -39
- data/Gemfile.lock +0 -202
- data/ISSUE_TEMPLATE.md +0 -19
- data/Rakefile +0 -37
- data/bin/test +0 -13
- data/devise.gemspec +0 -28
- data/devise.png +0 -0
- data/gemfiles/Gemfile.rails-4.1-stable +0 -32
- data/gemfiles/Gemfile.rails-4.1-stable.lock +0 -171
- data/gemfiles/Gemfile.rails-4.2-stable +0 -32
- data/gemfiles/Gemfile.rails-4.2-stable.lock +0 -192
- data/gemfiles/Gemfile.rails-5.0-stable +0 -33
- data/gemfiles/Gemfile.rails-5.0-stable.lock +0 -192
- data/gemfiles/Gemfile.rails-5.2-rc1 +0 -26
- data/gemfiles/Gemfile.rails-5.2-rc1.lock +0 -201
- data/guides/bug_report_templates/integration_test.rb +0 -106
- data/test/controllers/custom_registrations_controller_test.rb +0 -42
- data/test/controllers/custom_strategy_test.rb +0 -66
- data/test/controllers/helper_methods_test.rb +0 -24
- data/test/controllers/helpers_test.rb +0 -318
- data/test/controllers/inherited_controller_i18n_messages_test.rb +0 -53
- data/test/controllers/internal_helpers_test.rb +0 -129
- data/test/controllers/load_hooks_controller_test.rb +0 -21
- data/test/controllers/passwords_controller_test.rb +0 -34
- data/test/controllers/sessions_controller_test.rb +0 -108
- data/test/controllers/url_helpers_test.rb +0 -67
- data/test/delegator_test.rb +0 -21
- data/test/devise_test.rb +0 -109
- data/test/failure_app_test.rb +0 -346
- data/test/generators/active_record_generator_test.rb +0 -130
- data/test/generators/controllers_generator_test.rb +0 -50
- data/test/generators/devise_generator_test.rb +0 -41
- data/test/generators/install_generator_test.rb +0 -26
- data/test/generators/mongoid_generator_test.rb +0 -25
- data/test/generators/views_generator_test.rb +0 -105
- data/test/helpers/devise_helper_test.rb +0 -51
- data/test/integration/authenticatable_test.rb +0 -706
- data/test/integration/confirmable_test.rb +0 -326
- data/test/integration/database_authenticatable_test.rb +0 -110
- data/test/integration/http_authenticatable_test.rb +0 -114
- data/test/integration/lockable_test.rb +0 -242
- data/test/integration/mounted_engine_test.rb +0 -38
- data/test/integration/omniauthable_test.rb +0 -148
- data/test/integration/recoverable_test.rb +0 -349
- data/test/integration/registerable_test.rb +0 -365
- data/test/integration/rememberable_test.rb +0 -219
- data/test/integration/timeoutable_test.rb +0 -186
- data/test/integration/trackable_test.rb +0 -99
- data/test/mailers/confirmation_instructions_test.rb +0 -117
- data/test/mailers/email_changed_test.rb +0 -132
- data/test/mailers/mailer_test.rb +0 -20
- data/test/mailers/reset_password_instructions_test.rb +0 -98
- data/test/mailers/unlock_instructions_test.rb +0 -93
- data/test/mapping_test.rb +0 -136
- data/test/models/authenticatable_test.rb +0 -25
- data/test/models/confirmable_test.rb +0 -549
- data/test/models/database_authenticatable_test.rb +0 -290
- data/test/models/lockable_test.rb +0 -352
- data/test/models/omniauthable_test.rb +0 -9
- data/test/models/recoverable_test.rb +0 -263
- data/test/models/registerable_test.rb +0 -9
- data/test/models/rememberable_test.rb +0 -184
- data/test/models/serializable_test.rb +0 -60
- data/test/models/timeoutable_test.rb +0 -53
- data/test/models/trackable_test.rb +0 -80
- data/test/models/validatable_test.rb +0 -121
- data/test/models_test.rb +0 -155
- data/test/omniauth/config_test.rb +0 -61
- data/test/omniauth/url_helpers_test.rb +0 -53
- data/test/orm/active_record.rb +0 -24
- data/test/orm/mongoid.rb +0 -15
- data/test/parameter_sanitizer_test.rb +0 -105
- data/test/rails_app/Rakefile +0 -6
- data/test/rails_app/app/active_record/admin.rb +0 -8
- data/test/rails_app/app/active_record/shim.rb +0 -4
- data/test/rails_app/app/active_record/user.rb +0 -20
- data/test/rails_app/app/active_record/user_on_engine.rb +0 -9
- data/test/rails_app/app/active_record/user_on_main_app.rb +0 -9
- data/test/rails_app/app/active_record/user_with_validations.rb +0 -12
- data/test/rails_app/app/active_record/user_without_email.rb +0 -10
- data/test/rails_app/app/controllers/admins/sessions_controller.rb +0 -8
- data/test/rails_app/app/controllers/admins_controller.rb +0 -8
- data/test/rails_app/app/controllers/application_controller.rb +0 -13
- data/test/rails_app/app/controllers/application_with_fake_engine.rb +0 -32
- data/test/rails_app/app/controllers/custom/registrations_controller.rb +0 -33
- data/test/rails_app/app/controllers/home_controller.rb +0 -31
- data/test/rails_app/app/controllers/publisher/registrations_controller.rb +0 -4
- data/test/rails_app/app/controllers/publisher/sessions_controller.rb +0 -4
- data/test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb +0 -16
- data/test/rails_app/app/controllers/users_controller.rb +0 -33
- data/test/rails_app/app/helpers/application_helper.rb +0 -5
- data/test/rails_app/app/mailers/users/from_proc_mailer.rb +0 -5
- data/test/rails_app/app/mailers/users/mailer.rb +0 -5
- data/test/rails_app/app/mailers/users/reply_to_mailer.rb +0 -6
- data/test/rails_app/app/mongoid/admin.rb +0 -31
- data/test/rails_app/app/mongoid/shim.rb +0 -25
- data/test/rails_app/app/mongoid/user.rb +0 -50
- data/test/rails_app/app/mongoid/user_on_engine.rb +0 -41
- data/test/rails_app/app/mongoid/user_on_main_app.rb +0 -41
- data/test/rails_app/app/mongoid/user_with_validations.rb +0 -37
- data/test/rails_app/app/mongoid/user_without_email.rb +0 -35
- data/test/rails_app/app/views/admins/index.html.erb +0 -1
- data/test/rails_app/app/views/admins/sessions/new.html.erb +0 -2
- data/test/rails_app/app/views/home/admin_dashboard.html.erb +0 -1
- data/test/rails_app/app/views/home/index.html.erb +0 -1
- data/test/rails_app/app/views/home/join.html.erb +0 -1
- data/test/rails_app/app/views/home/private.html.erb +0 -1
- data/test/rails_app/app/views/home/user_dashboard.html.erb +0 -1
- data/test/rails_app/app/views/layouts/application.html.erb +0 -24
- data/test/rails_app/app/views/users/edit_form.html.erb +0 -1
- data/test/rails_app/app/views/users/index.html.erb +0 -1
- data/test/rails_app/app/views/users/mailer/confirmation_instructions.erb +0 -1
- data/test/rails_app/app/views/users/sessions/new.html.erb +0 -1
- data/test/rails_app/bin/bundle +0 -3
- data/test/rails_app/bin/rails +0 -4
- data/test/rails_app/bin/rake +0 -4
- data/test/rails_app/config.ru +0 -4
- data/test/rails_app/config/application.rb +0 -48
- data/test/rails_app/config/boot.rb +0 -27
- data/test/rails_app/config/database.yml +0 -18
- data/test/rails_app/config/environment.rb +0 -7
- data/test/rails_app/config/environments/development.rb +0 -32
- data/test/rails_app/config/environments/production.rb +0 -88
- data/test/rails_app/config/environments/test.rb +0 -47
- data/test/rails_app/config/initializers/backtrace_silencers.rb +0 -9
- data/test/rails_app/config/initializers/devise.rb +0 -187
- data/test/rails_app/config/initializers/inflections.rb +0 -4
- data/test/rails_app/config/initializers/secret_token.rb +0 -5
- data/test/rails_app/config/initializers/session_store.rb +0 -3
- data/test/rails_app/config/routes.rb +0 -128
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +0 -77
- data/test/rails_app/db/schema.rb +0 -57
- data/test/rails_app/lib/lazy_load_test_module.rb +0 -5
- data/test/rails_app/lib/shared_admin.rb +0 -23
- data/test/rails_app/lib/shared_user.rb +0 -32
- data/test/rails_app/lib/shared_user_without_email.rb +0 -28
- data/test/rails_app/lib/shared_user_without_omniauth.rb +0 -15
- data/test/rails_app/public/404.html +0 -26
- data/test/rails_app/public/422.html +0 -26
- data/test/rails_app/public/500.html +0 -26
- data/test/rails_app/public/favicon.ico +0 -0
- data/test/rails_test.rb +0 -11
- data/test/routes_test.rb +0 -281
- data/test/secret_key_finder_test.rb +0 -121
- data/test/support/action_controller/record_identifier.rb +0 -12
- data/test/support/assertions.rb +0 -30
- data/test/support/helpers.rb +0 -83
- data/test/support/http_method_compatibility.rb +0 -53
- data/test/support/integration.rb +0 -95
- data/test/support/locale/en.yml +0 -8
- data/test/support/mongoid.yml +0 -6
- data/test/support/webrat/integrations/rails.rb +0 -35
- data/test/test/controller_helpers_test.rb +0 -193
- data/test/test/integration_helpers_test.rb +0 -34
- data/test/test_helper.rb +0 -36
- data/test/test_models.rb +0 -35
@@ -1,33 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
gemspec path: ".."
|
6
|
-
|
7
|
-
gem "rails", '~> 5.0.0'
|
8
|
-
gem "omniauth"
|
9
|
-
gem "omniauth-oauth2"
|
10
|
-
gem "rdoc"
|
11
|
-
|
12
|
-
gem "activemodel-serializers-xml", github: "rails/activemodel-serializers-xml"
|
13
|
-
|
14
|
-
gem "rails-controller-testing"
|
15
|
-
|
16
|
-
gem "responders", "~> 2.1"
|
17
|
-
|
18
|
-
group :test do
|
19
|
-
gem "omniauth-facebook"
|
20
|
-
gem "omniauth-openid"
|
21
|
-
gem "webrat", "0.7.3", require: false
|
22
|
-
gem "mocha", "~> 1.1", require: false
|
23
|
-
gem 'test_after_commit', require: false
|
24
|
-
end
|
25
|
-
|
26
|
-
platforms :ruby do
|
27
|
-
gem "sqlite3"
|
28
|
-
end
|
29
|
-
|
30
|
-
# TODO:
|
31
|
-
# group :mongoid do
|
32
|
-
# gem "mongoid", "~> 4.0.0"
|
33
|
-
# end
|
@@ -1,192 +0,0 @@
|
|
1
|
-
GIT
|
2
|
-
remote: git://github.com/rails/activemodel-serializers-xml.git
|
3
|
-
revision: dd9c0acf26aab111ebc647cd8deb99ebc6946531
|
4
|
-
specs:
|
5
|
-
activemodel-serializers-xml (1.0.1)
|
6
|
-
activemodel (> 5.x)
|
7
|
-
activesupport (> 5.x)
|
8
|
-
builder (~> 3.1)
|
9
|
-
|
10
|
-
PATH
|
11
|
-
remote: ..
|
12
|
-
specs:
|
13
|
-
devise (4.5.0)
|
14
|
-
bcrypt (~> 3.0)
|
15
|
-
orm_adapter (~> 0.1)
|
16
|
-
railties (>= 4.1.0, < 6.0)
|
17
|
-
responders
|
18
|
-
warden (~> 1.2.3)
|
19
|
-
|
20
|
-
GEM
|
21
|
-
remote: https://rubygems.org/
|
22
|
-
specs:
|
23
|
-
actioncable (5.0.2)
|
24
|
-
actionpack (= 5.0.2)
|
25
|
-
nio4r (>= 1.2, < 3.0)
|
26
|
-
websocket-driver (~> 0.6.1)
|
27
|
-
actionmailer (5.0.2)
|
28
|
-
actionpack (= 5.0.2)
|
29
|
-
actionview (= 5.0.2)
|
30
|
-
activejob (= 5.0.2)
|
31
|
-
mail (~> 2.5, >= 2.5.4)
|
32
|
-
rails-dom-testing (~> 2.0)
|
33
|
-
actionpack (5.0.2)
|
34
|
-
actionview (= 5.0.2)
|
35
|
-
activesupport (= 5.0.2)
|
36
|
-
rack (~> 2.0)
|
37
|
-
rack-test (~> 0.6.3)
|
38
|
-
rails-dom-testing (~> 2.0)
|
39
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
40
|
-
actionview (5.0.2)
|
41
|
-
activesupport (= 5.0.2)
|
42
|
-
builder (~> 3.1)
|
43
|
-
erubis (~> 2.7.0)
|
44
|
-
rails-dom-testing (~> 2.0)
|
45
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
46
|
-
activejob (5.0.2)
|
47
|
-
activesupport (= 5.0.2)
|
48
|
-
globalid (>= 0.3.6)
|
49
|
-
activemodel (5.0.2)
|
50
|
-
activesupport (= 5.0.2)
|
51
|
-
activerecord (5.0.2)
|
52
|
-
activemodel (= 5.0.2)
|
53
|
-
activesupport (= 5.0.2)
|
54
|
-
arel (~> 7.0)
|
55
|
-
activesupport (5.0.2)
|
56
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
57
|
-
i18n (~> 0.7)
|
58
|
-
minitest (~> 5.1)
|
59
|
-
tzinfo (~> 1.1)
|
60
|
-
arel (7.1.4)
|
61
|
-
bcrypt (3.1.12)
|
62
|
-
builder (3.2.3)
|
63
|
-
concurrent-ruby (1.0.5)
|
64
|
-
erubis (2.7.0)
|
65
|
-
faraday (0.11.0)
|
66
|
-
multipart-post (>= 1.2, < 3)
|
67
|
-
globalid (0.4.0)
|
68
|
-
activesupport (>= 4.2.0)
|
69
|
-
hashie (3.5.5)
|
70
|
-
i18n (0.8.1)
|
71
|
-
jwt (1.5.6)
|
72
|
-
loofah (2.0.3)
|
73
|
-
nokogiri (>= 1.5.9)
|
74
|
-
mail (2.6.5)
|
75
|
-
mime-types (>= 1.16, < 4)
|
76
|
-
metaclass (0.0.4)
|
77
|
-
method_source (0.8.2)
|
78
|
-
mime-types (3.1)
|
79
|
-
mime-types-data (~> 3.2015)
|
80
|
-
mime-types-data (3.2016.0521)
|
81
|
-
mini_portile2 (2.1.0)
|
82
|
-
minitest (5.10.1)
|
83
|
-
mocha (1.2.1)
|
84
|
-
metaclass (~> 0.0.1)
|
85
|
-
multi_json (1.12.1)
|
86
|
-
multi_xml (0.6.0)
|
87
|
-
multipart-post (2.0.0)
|
88
|
-
nio4r (2.0.0)
|
89
|
-
nokogiri (1.7.2)
|
90
|
-
mini_portile2 (~> 2.1.0)
|
91
|
-
oauth2 (1.3.1)
|
92
|
-
faraday (>= 0.8, < 0.12)
|
93
|
-
jwt (~> 1.0)
|
94
|
-
multi_json (~> 1.3)
|
95
|
-
multi_xml (~> 0.5)
|
96
|
-
rack (>= 1.2, < 3)
|
97
|
-
omniauth (1.6.1)
|
98
|
-
hashie (>= 3.4.6, < 3.6.0)
|
99
|
-
rack (>= 1.6.2, < 3)
|
100
|
-
omniauth-facebook (4.0.0)
|
101
|
-
omniauth-oauth2 (~> 1.2)
|
102
|
-
omniauth-oauth2 (1.4.0)
|
103
|
-
oauth2 (~> 1.0)
|
104
|
-
omniauth (~> 1.2)
|
105
|
-
omniauth-openid (1.0.1)
|
106
|
-
omniauth (~> 1.0)
|
107
|
-
rack-openid (~> 1.3.1)
|
108
|
-
orm_adapter (0.5.0)
|
109
|
-
rack (2.0.2)
|
110
|
-
rack-openid (1.3.1)
|
111
|
-
rack (>= 1.1.0)
|
112
|
-
ruby-openid (>= 2.1.8)
|
113
|
-
rack-test (0.6.3)
|
114
|
-
rack (>= 1.0)
|
115
|
-
rails (5.0.2)
|
116
|
-
actioncable (= 5.0.2)
|
117
|
-
actionmailer (= 5.0.2)
|
118
|
-
actionpack (= 5.0.2)
|
119
|
-
actionview (= 5.0.2)
|
120
|
-
activejob (= 5.0.2)
|
121
|
-
activemodel (= 5.0.2)
|
122
|
-
activerecord (= 5.0.2)
|
123
|
-
activesupport (= 5.0.2)
|
124
|
-
bundler (>= 1.3.0, < 2.0)
|
125
|
-
railties (= 5.0.2)
|
126
|
-
sprockets-rails (>= 2.0.0)
|
127
|
-
rails-controller-testing (1.0.1)
|
128
|
-
actionpack (~> 5.x)
|
129
|
-
actionview (~> 5.x)
|
130
|
-
activesupport (~> 5.x)
|
131
|
-
rails-dom-testing (2.0.3)
|
132
|
-
activesupport (>= 4.2.0)
|
133
|
-
nokogiri (>= 1.6)
|
134
|
-
rails-html-sanitizer (1.0.3)
|
135
|
-
loofah (~> 2.0)
|
136
|
-
railties (5.0.2)
|
137
|
-
actionpack (= 5.0.2)
|
138
|
-
activesupport (= 5.0.2)
|
139
|
-
method_source
|
140
|
-
rake (>= 0.8.7)
|
141
|
-
thor (>= 0.18.1, < 2.0)
|
142
|
-
rake (12.0.0)
|
143
|
-
rdoc (5.1.0)
|
144
|
-
responders (2.4.0)
|
145
|
-
actionpack (>= 4.2.0, < 5.3)
|
146
|
-
railties (>= 4.2.0, < 5.3)
|
147
|
-
ruby-openid (2.7.0)
|
148
|
-
sprockets (3.7.1)
|
149
|
-
concurrent-ruby (~> 1.0)
|
150
|
-
rack (> 1, < 3)
|
151
|
-
sprockets-rails (3.2.0)
|
152
|
-
actionpack (>= 4.0)
|
153
|
-
activesupport (>= 4.0)
|
154
|
-
sprockets (>= 3.0.0)
|
155
|
-
sqlite3 (1.3.13)
|
156
|
-
test_after_commit (1.1.0)
|
157
|
-
activerecord (>= 3.2)
|
158
|
-
thor (0.19.4)
|
159
|
-
thread_safe (0.3.6)
|
160
|
-
tzinfo (1.2.3)
|
161
|
-
thread_safe (~> 0.1)
|
162
|
-
warden (1.2.7)
|
163
|
-
rack (>= 1.0)
|
164
|
-
webrat (0.7.3)
|
165
|
-
nokogiri (>= 1.2.0)
|
166
|
-
rack (>= 1.0)
|
167
|
-
rack-test (>= 0.5.3)
|
168
|
-
websocket-driver (0.6.5)
|
169
|
-
websocket-extensions (>= 0.1.0)
|
170
|
-
websocket-extensions (0.1.2)
|
171
|
-
|
172
|
-
PLATFORMS
|
173
|
-
ruby
|
174
|
-
|
175
|
-
DEPENDENCIES
|
176
|
-
activemodel-serializers-xml!
|
177
|
-
devise!
|
178
|
-
mocha (~> 1.1)
|
179
|
-
omniauth
|
180
|
-
omniauth-facebook
|
181
|
-
omniauth-oauth2
|
182
|
-
omniauth-openid
|
183
|
-
rails (~> 5.0.0)
|
184
|
-
rails-controller-testing
|
185
|
-
rdoc
|
186
|
-
responders (~> 2.1)
|
187
|
-
sqlite3
|
188
|
-
test_after_commit
|
189
|
-
webrat (= 0.7.3)
|
190
|
-
|
191
|
-
BUNDLED WITH
|
192
|
-
1.16.1
|
@@ -1,26 +0,0 @@
|
|
1
|
-
source "https://rubygems.org"
|
2
|
-
|
3
|
-
gemspec path: ".."
|
4
|
-
|
5
|
-
gem "rails", '~> 5.2.0.rc1'
|
6
|
-
gem "omniauth"
|
7
|
-
gem "omniauth-oauth2"
|
8
|
-
gem "rdoc"
|
9
|
-
|
10
|
-
gem "activemodel-serializers-xml", github: "rails/activemodel-serializers-xml"
|
11
|
-
|
12
|
-
gem "rails-controller-testing"
|
13
|
-
|
14
|
-
gem "responders", "~> 2.1"
|
15
|
-
|
16
|
-
group :test do
|
17
|
-
gem "omniauth-facebook"
|
18
|
-
gem "omniauth-openid"
|
19
|
-
gem "webrat", "0.7.3", require: false
|
20
|
-
gem "mocha", "~> 1.1", require: false
|
21
|
-
gem 'test_after_commit', require: false
|
22
|
-
end
|
23
|
-
|
24
|
-
platforms :ruby do
|
25
|
-
gem "sqlite3"
|
26
|
-
end
|
@@ -1,201 +0,0 @@
|
|
1
|
-
GIT
|
2
|
-
remote: git://github.com/rails/activemodel-serializers-xml.git
|
3
|
-
revision: 356edf4dfc38fb1fbfee90c87856e4fe5b73c5e1
|
4
|
-
specs:
|
5
|
-
activemodel-serializers-xml (1.0.2)
|
6
|
-
activemodel (> 5.x)
|
7
|
-
activesupport (> 5.x)
|
8
|
-
builder (~> 3.1)
|
9
|
-
|
10
|
-
PATH
|
11
|
-
remote: ..
|
12
|
-
specs:
|
13
|
-
devise (4.5.0)
|
14
|
-
bcrypt (~> 3.0)
|
15
|
-
orm_adapter (~> 0.1)
|
16
|
-
railties (>= 4.1.0, < 6.0)
|
17
|
-
responders
|
18
|
-
warden (~> 1.2.3)
|
19
|
-
|
20
|
-
GEM
|
21
|
-
remote: https://rubygems.org/
|
22
|
-
specs:
|
23
|
-
actioncable (5.2.0.rc1)
|
24
|
-
actionpack (= 5.2.0.rc1)
|
25
|
-
nio4r (~> 2.0)
|
26
|
-
websocket-driver (>= 0.6.1)
|
27
|
-
actionmailer (5.2.0.rc1)
|
28
|
-
actionpack (= 5.2.0.rc1)
|
29
|
-
actionview (= 5.2.0.rc1)
|
30
|
-
activejob (= 5.2.0.rc1)
|
31
|
-
mail (~> 2.5, >= 2.5.4)
|
32
|
-
rails-dom-testing (~> 2.0)
|
33
|
-
actionpack (5.2.0.rc1)
|
34
|
-
actionview (= 5.2.0.rc1)
|
35
|
-
activesupport (= 5.2.0.rc1)
|
36
|
-
rack (~> 2.0)
|
37
|
-
rack-test (>= 0.6.3)
|
38
|
-
rails-dom-testing (~> 2.0)
|
39
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
40
|
-
actionview (5.2.0.rc1)
|
41
|
-
activesupport (= 5.2.0.rc1)
|
42
|
-
builder (~> 3.1)
|
43
|
-
erubi (~> 1.4)
|
44
|
-
rails-dom-testing (~> 2.0)
|
45
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
46
|
-
activejob (5.2.0.rc1)
|
47
|
-
activesupport (= 5.2.0.rc1)
|
48
|
-
globalid (>= 0.3.6)
|
49
|
-
activemodel (5.2.0.rc1)
|
50
|
-
activesupport (= 5.2.0.rc1)
|
51
|
-
activerecord (5.2.0.rc1)
|
52
|
-
activemodel (= 5.2.0.rc1)
|
53
|
-
activesupport (= 5.2.0.rc1)
|
54
|
-
arel (>= 9.0)
|
55
|
-
activestorage (5.2.0.rc1)
|
56
|
-
actionpack (= 5.2.0.rc1)
|
57
|
-
activerecord (= 5.2.0.rc1)
|
58
|
-
marcel (~> 0.3.1)
|
59
|
-
activesupport (5.2.0.rc1)
|
60
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
61
|
-
i18n (~> 0.7)
|
62
|
-
minitest (~> 5.1)
|
63
|
-
tzinfo (~> 1.1)
|
64
|
-
arel (9.0.0)
|
65
|
-
bcrypt (3.1.12)
|
66
|
-
builder (3.2.3)
|
67
|
-
concurrent-ruby (1.0.5)
|
68
|
-
crass (1.0.3)
|
69
|
-
erubi (1.7.0)
|
70
|
-
faraday (0.12.2)
|
71
|
-
multipart-post (>= 1.2, < 3)
|
72
|
-
globalid (0.4.1)
|
73
|
-
activesupport (>= 4.2.0)
|
74
|
-
hashie (3.5.7)
|
75
|
-
i18n (0.9.3)
|
76
|
-
concurrent-ruby (~> 1.0)
|
77
|
-
jwt (1.5.6)
|
78
|
-
loofah (2.1.1)
|
79
|
-
crass (~> 1.0.2)
|
80
|
-
nokogiri (>= 1.5.9)
|
81
|
-
mail (2.7.0)
|
82
|
-
mini_mime (>= 0.1.1)
|
83
|
-
marcel (0.3.1)
|
84
|
-
mimemagic (~> 0.3.2)
|
85
|
-
metaclass (0.0.4)
|
86
|
-
method_source (0.9.0)
|
87
|
-
mimemagic (0.3.2)
|
88
|
-
mini_mime (1.0.0)
|
89
|
-
mini_portile2 (2.3.0)
|
90
|
-
minitest (5.11.3)
|
91
|
-
mocha (1.3.0)
|
92
|
-
metaclass (~> 0.0.1)
|
93
|
-
multi_json (1.13.1)
|
94
|
-
multi_xml (0.6.0)
|
95
|
-
multipart-post (2.0.0)
|
96
|
-
nio4r (2.2.0)
|
97
|
-
nokogiri (1.8.2)
|
98
|
-
mini_portile2 (~> 2.3.0)
|
99
|
-
oauth2 (1.4.0)
|
100
|
-
faraday (>= 0.8, < 0.13)
|
101
|
-
jwt (~> 1.0)
|
102
|
-
multi_json (~> 1.3)
|
103
|
-
multi_xml (~> 0.5)
|
104
|
-
rack (>= 1.2, < 3)
|
105
|
-
omniauth (1.8.1)
|
106
|
-
hashie (>= 3.4.6, < 3.6.0)
|
107
|
-
rack (>= 1.6.2, < 3)
|
108
|
-
omniauth-facebook (4.0.0)
|
109
|
-
omniauth-oauth2 (~> 1.2)
|
110
|
-
omniauth-oauth2 (1.5.0)
|
111
|
-
oauth2 (~> 1.1)
|
112
|
-
omniauth (~> 1.2)
|
113
|
-
omniauth-openid (1.0.1)
|
114
|
-
omniauth (~> 1.0)
|
115
|
-
rack-openid (~> 1.3.1)
|
116
|
-
orm_adapter (0.5.0)
|
117
|
-
rack (2.0.4)
|
118
|
-
rack-openid (1.3.1)
|
119
|
-
rack (>= 1.1.0)
|
120
|
-
ruby-openid (>= 2.1.8)
|
121
|
-
rack-test (0.8.2)
|
122
|
-
rack (>= 1.0, < 3)
|
123
|
-
rails (5.2.0.rc1)
|
124
|
-
actioncable (= 5.2.0.rc1)
|
125
|
-
actionmailer (= 5.2.0.rc1)
|
126
|
-
actionpack (= 5.2.0.rc1)
|
127
|
-
actionview (= 5.2.0.rc1)
|
128
|
-
activejob (= 5.2.0.rc1)
|
129
|
-
activemodel (= 5.2.0.rc1)
|
130
|
-
activerecord (= 5.2.0.rc1)
|
131
|
-
activestorage (= 5.2.0.rc1)
|
132
|
-
activesupport (= 5.2.0.rc1)
|
133
|
-
bundler (>= 1.3.0)
|
134
|
-
railties (= 5.2.0.rc1)
|
135
|
-
sprockets-rails (>= 2.0.0)
|
136
|
-
rails-controller-testing (1.0.2)
|
137
|
-
actionpack (~> 5.x, >= 5.0.1)
|
138
|
-
actionview (~> 5.x, >= 5.0.1)
|
139
|
-
activesupport (~> 5.x)
|
140
|
-
rails-dom-testing (2.0.3)
|
141
|
-
activesupport (>= 4.2.0)
|
142
|
-
nokogiri (>= 1.6)
|
143
|
-
rails-html-sanitizer (1.0.3)
|
144
|
-
loofah (~> 2.0)
|
145
|
-
railties (5.2.0.rc1)
|
146
|
-
actionpack (= 5.2.0.rc1)
|
147
|
-
activesupport (= 5.2.0.rc1)
|
148
|
-
method_source
|
149
|
-
rake (>= 0.8.7)
|
150
|
-
thor (>= 0.18.1, < 2.0)
|
151
|
-
rake (12.3.0)
|
152
|
-
rdoc (6.0.1)
|
153
|
-
responders (2.4.0)
|
154
|
-
actionpack (>= 4.2.0, < 5.3)
|
155
|
-
railties (>= 4.2.0, < 5.3)
|
156
|
-
ruby-openid (2.7.0)
|
157
|
-
sprockets (3.7.1)
|
158
|
-
concurrent-ruby (~> 1.0)
|
159
|
-
rack (> 1, < 3)
|
160
|
-
sprockets-rails (3.2.1)
|
161
|
-
actionpack (>= 4.0)
|
162
|
-
activesupport (>= 4.0)
|
163
|
-
sprockets (>= 3.0.0)
|
164
|
-
sqlite3 (1.3.13)
|
165
|
-
test_after_commit (1.1.0)
|
166
|
-
activerecord (>= 3.2)
|
167
|
-
thor (0.20.0)
|
168
|
-
thread_safe (0.3.6)
|
169
|
-
tzinfo (1.2.5)
|
170
|
-
thread_safe (~> 0.1)
|
171
|
-
warden (1.2.7)
|
172
|
-
rack (>= 1.0)
|
173
|
-
webrat (0.7.3)
|
174
|
-
nokogiri (>= 1.2.0)
|
175
|
-
rack (>= 1.0)
|
176
|
-
rack-test (>= 0.5.3)
|
177
|
-
websocket-driver (0.7.0)
|
178
|
-
websocket-extensions (>= 0.1.0)
|
179
|
-
websocket-extensions (0.1.3)
|
180
|
-
|
181
|
-
PLATFORMS
|
182
|
-
ruby
|
183
|
-
|
184
|
-
DEPENDENCIES
|
185
|
-
activemodel-serializers-xml!
|
186
|
-
devise!
|
187
|
-
mocha (~> 1.1)
|
188
|
-
omniauth
|
189
|
-
omniauth-facebook
|
190
|
-
omniauth-oauth2
|
191
|
-
omniauth-openid
|
192
|
-
rails (~> 5.2.0.rc1)
|
193
|
-
rails-controller-testing
|
194
|
-
rdoc
|
195
|
-
responders (~> 2.1)
|
196
|
-
sqlite3
|
197
|
-
test_after_commit
|
198
|
-
webrat (= 0.7.3)
|
199
|
-
|
200
|
-
BUNDLED WITH
|
201
|
-
1.16.1
|