devise 3.5.10 → 4.0.0.rc1

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.

Files changed (96) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +9 -9
  3. data/CHANGELOG.md +33 -1188
  4. data/Gemfile +0 -1
  5. data/Gemfile.lock +15 -18
  6. data/MIT-LICENSE +1 -1
  7. data/README.md +20 -10
  8. data/app/controllers/devise/omniauth_callbacks_controller.rb +4 -4
  9. data/app/controllers/devise/passwords_controller.rb +2 -2
  10. data/app/controllers/devise/registrations_controller.rb +2 -2
  11. data/app/controllers/devise/sessions_controller.rb +4 -4
  12. data/app/controllers/devise/unlocks_controller.rb +1 -1
  13. data/app/controllers/devise_controller.rb +11 -7
  14. data/devise.gemspec +2 -3
  15. data/gemfiles/Gemfile.rails-4.1-stable +0 -1
  16. data/gemfiles/Gemfile.rails-4.1-stable.lock +38 -41
  17. data/gemfiles/Gemfile.rails-4.2-stable +0 -1
  18. data/gemfiles/Gemfile.rails-4.2-stable.lock +47 -50
  19. data/gemfiles/Gemfile.rails-5.0-beta +37 -0
  20. data/gemfiles/Gemfile.rails-5.0-beta.lock +242 -0
  21. data/lib/devise.rb +8 -8
  22. data/lib/devise/controllers/helpers.rb +7 -11
  23. data/lib/devise/failure_app.rb +17 -9
  24. data/lib/devise/models/authenticatable.rb +5 -1
  25. data/lib/devise/models/confirmable.rb +3 -4
  26. data/lib/devise/models/database_authenticatable.rb +1 -0
  27. data/lib/devise/models/lockable.rb +1 -5
  28. data/lib/devise/models/rememberable.rb +5 -11
  29. data/lib/devise/parameter_sanitizer.rb +176 -61
  30. data/lib/devise/rails.rb +1 -10
  31. data/lib/devise/rails/routes.rb +25 -14
  32. data/lib/devise/rails/warden_compat.rb +1 -10
  33. data/lib/devise/strategies/rememberable.rb +6 -3
  34. data/lib/devise/test_helpers.rb +9 -4
  35. data/lib/devise/token_generator.rb +1 -41
  36. data/lib/devise/version.rb +1 -1
  37. data/lib/generators/active_record/devise_generator.rb +3 -3
  38. data/lib/generators/active_record/templates/migration.rb +1 -1
  39. data/lib/generators/active_record/templates/migration_existing.rb +1 -1
  40. data/lib/generators/devise/orm_helpers.rb +0 -17
  41. data/lib/generators/templates/controllers/registrations_controller.rb +4 -4
  42. data/lib/generators/templates/controllers/sessions_controller.rb +2 -2
  43. data/lib/generators/templates/devise.rb +4 -5
  44. data/test/controllers/custom_registrations_controller_test.rb +5 -5
  45. data/test/controllers/custom_strategy_test.rb +7 -5
  46. data/test/controllers/helper_methods_test.rb +3 -2
  47. data/test/controllers/helpers_test.rb +1 -1
  48. data/test/controllers/inherited_controller_i18n_messages_test.rb +2 -2
  49. data/test/controllers/internal_helpers_test.rb +8 -10
  50. data/test/controllers/load_hooks_controller_test.rb +1 -1
  51. data/test/controllers/passwords_controller_test.rb +4 -3
  52. data/test/controllers/sessions_controller_test.rb +21 -18
  53. data/test/controllers/url_helpers_test.rb +1 -1
  54. data/test/failure_app_test.rb +19 -14
  55. data/test/generators/active_record_generator_test.rb +0 -26
  56. data/test/helpers/devise_helper_test.rb +1 -1
  57. data/test/integration/authenticatable_test.rb +18 -18
  58. data/test/integration/confirmable_test.rb +5 -5
  59. data/test/integration/database_authenticatable_test.rb +1 -1
  60. data/test/integration/http_authenticatable_test.rb +4 -5
  61. data/test/integration/lockable_test.rb +4 -3
  62. data/test/integration/omniauthable_test.rb +1 -1
  63. data/test/integration/recoverable_test.rb +10 -10
  64. data/test/integration/registerable_test.rb +9 -11
  65. data/test/integration/rememberable_test.rb +7 -43
  66. data/test/integration/timeoutable_test.rb +4 -4
  67. data/test/integration/trackable_test.rb +1 -1
  68. data/test/models/confirmable_test.rb +5 -13
  69. data/test/models/lockable_test.rb +0 -22
  70. data/test/models/rememberable_test.rb +0 -12
  71. data/test/models/validatable_test.rb +2 -10
  72. data/test/omniauth/url_helpers_test.rb +1 -2
  73. data/test/orm/active_record.rb +6 -1
  74. data/test/parameter_sanitizer_test.rb +103 -53
  75. data/test/rails_app/app/active_record/user.rb +3 -0
  76. data/test/rails_app/app/controllers/admins_controller.rb +1 -1
  77. data/test/rails_app/app/controllers/application_controller.rb +2 -2
  78. data/test/rails_app/app/controllers/home_controller.rb +5 -1
  79. data/test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb +2 -2
  80. data/test/rails_app/app/controllers/users_controller.rb +5 -5
  81. data/test/rails_app/config/application.rb +1 -1
  82. data/test/rails_app/config/boot.rb +3 -3
  83. data/test/rails_app/config/environments/test.rb +6 -1
  84. data/test/rails_app/config/initializers/secret_token.rb +1 -6
  85. data/test/routes_test.rb +26 -11
  86. data/test/support/http_method_compatibility.rb +51 -0
  87. data/test/support/webrat/integrations/rails.rb +9 -0
  88. data/test/test_helpers_test.rb +3 -3
  89. metadata +13 -31
  90. data/gemfiles/Gemfile.rails-3.2-stable +0 -29
  91. data/gemfiles/Gemfile.rails-3.2-stable.lock +0 -172
  92. data/gemfiles/Gemfile.rails-4.0-stable +0 -30
  93. data/gemfiles/Gemfile.rails-4.0-stable.lock +0 -166
  94. data/script/cached-bundle +0 -49
  95. data/script/s3-put +0 -71
  96. data/test/time_helpers.rb +0 -137
@@ -6,7 +6,6 @@ gem "rails", github: 'rails/rails', branch: '4-2-stable'
6
6
  gem "omniauth", "~> 1.2.2"
7
7
  gem "omniauth-oauth2", "~> 1.2.0"
8
8
  gem "rdoc"
9
- gem "mime-types", "~> 2.99"
10
9
 
11
10
  group :test do
12
11
  gem "omniauth-facebook"
@@ -1,79 +1,78 @@
1
1
  GIT
2
2
  remote: git://github.com/rails/rails.git
3
- revision: 2a1b655bb7db42ed0dbadab5bb129a8515e86a40
3
+ revision: acf654b1c4a1ffe2a90d6ea63a0b989d656bb87d
4
4
  branch: 4-2-stable
5
5
  specs:
6
- actionmailer (4.2.6)
7
- actionpack (= 4.2.6)
8
- actionview (= 4.2.6)
9
- activejob (= 4.2.6)
6
+ actionmailer (4.2.5.1)
7
+ actionpack (= 4.2.5.1)
8
+ actionview (= 4.2.5.1)
9
+ activejob (= 4.2.5.1)
10
10
  mail (~> 2.5, >= 2.5.4)
11
11
  rails-dom-testing (~> 1.0, >= 1.0.5)
12
- actionpack (4.2.6)
13
- actionview (= 4.2.6)
14
- activesupport (= 4.2.6)
12
+ actionpack (4.2.5.1)
13
+ actionview (= 4.2.5.1)
14
+ activesupport (= 4.2.5.1)
15
15
  rack (~> 1.6)
16
16
  rack-test (~> 0.6.2)
17
17
  rails-dom-testing (~> 1.0, >= 1.0.5)
18
18
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
19
- actionview (4.2.6)
20
- activesupport (= 4.2.6)
19
+ actionview (4.2.5.1)
20
+ activesupport (= 4.2.5.1)
21
21
  builder (~> 3.1)
22
22
  erubis (~> 2.7.0)
23
23
  rails-dom-testing (~> 1.0, >= 1.0.5)
24
24
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
25
- activejob (4.2.6)
26
- activesupport (= 4.2.6)
25
+ activejob (4.2.5.1)
26
+ activesupport (= 4.2.5.1)
27
27
  globalid (>= 0.3.0)
28
- activemodel (4.2.6)
29
- activesupport (= 4.2.6)
28
+ activemodel (4.2.5.1)
29
+ activesupport (= 4.2.5.1)
30
30
  builder (~> 3.1)
31
- activerecord (4.2.6)
32
- activemodel (= 4.2.6)
33
- activesupport (= 4.2.6)
31
+ activerecord (4.2.5.1)
32
+ activemodel (= 4.2.5.1)
33
+ activesupport (= 4.2.5.1)
34
34
  arel (~> 6.0)
35
- activesupport (4.2.6)
35
+ activesupport (4.2.5.1)
36
36
  i18n (~> 0.7)
37
37
  json (~> 1.7, >= 1.7.7)
38
38
  minitest (~> 5.1)
39
39
  thread_safe (~> 0.3, >= 0.3.4)
40
40
  tzinfo (~> 1.1)
41
- rails (4.2.6)
42
- actionmailer (= 4.2.6)
43
- actionpack (= 4.2.6)
44
- actionview (= 4.2.6)
45
- activejob (= 4.2.6)
46
- activemodel (= 4.2.6)
47
- activerecord (= 4.2.6)
48
- activesupport (= 4.2.6)
41
+ rails (4.2.5.1)
42
+ actionmailer (= 4.2.5.1)
43
+ actionpack (= 4.2.5.1)
44
+ actionview (= 4.2.5.1)
45
+ activejob (= 4.2.5.1)
46
+ activemodel (= 4.2.5.1)
47
+ activerecord (= 4.2.5.1)
48
+ activesupport (= 4.2.5.1)
49
49
  bundler (>= 1.3.0, < 2.0)
50
- railties (= 4.2.6)
50
+ railties (= 4.2.5.1)
51
51
  sprockets-rails
52
- railties (4.2.6)
53
- actionpack (= 4.2.6)
54
- activesupport (= 4.2.6)
52
+ railties (4.2.5.1)
53
+ actionpack (= 4.2.5.1)
54
+ activesupport (= 4.2.5.1)
55
55
  rake (>= 0.8.7)
56
56
  thor (>= 0.18.1, < 2.0)
57
57
 
58
58
  PATH
59
59
  remote: ..
60
60
  specs:
61
- devise (3.5.8)
61
+ devise (4.0.0.rc1)
62
62
  bcrypt (~> 3.0)
63
63
  orm_adapter (~> 0.1)
64
- railties (>= 3.2.6, < 5)
64
+ railties (>= 4.1.0, < 5.1)
65
65
  responders
66
- thread_safe (~> 0.1)
67
66
  warden (~> 1.2.3)
68
67
 
69
68
  GEM
70
69
  remote: https://rubygems.org/
71
70
  specs:
72
71
  arel (6.0.3)
73
- bcrypt (3.1.11)
72
+ bcrypt (3.1.10)
74
73
  bson (3.2.6)
75
74
  builder (3.2.2)
76
- concurrent-ruby (1.0.1)
75
+ concurrent-ruby (1.0.0)
77
76
  connection_pool (2.2.0)
78
77
  erubis (2.7.0)
79
78
  faraday (0.9.2)
@@ -83,13 +82,13 @@ GEM
83
82
  hashie (3.4.3)
84
83
  i18n (0.7.0)
85
84
  json (1.8.3)
86
- jwt (1.5.1)
85
+ jwt (1.5.2)
87
86
  loofah (2.0.3)
88
87
  nokogiri (>= 1.5.9)
89
- mail (2.6.4)
90
- mime-types (>= 1.16, < 4)
88
+ mail (2.6.3)
89
+ mime-types (>= 1.16, < 3)
91
90
  metaclass (0.0.4)
92
- mime-types (2.99.1)
91
+ mime-types (2.99)
93
92
  mini_portile2 (2.0.0)
94
93
  minitest (5.8.4)
95
94
  mocha (1.1.0)
@@ -103,17 +102,17 @@ GEM
103
102
  bson (~> 3.0)
104
103
  connection_pool (~> 2.0)
105
104
  optionable (~> 0.2.0)
106
- multi_json (1.11.3)
105
+ multi_json (1.11.2)
107
106
  multi_xml (0.5.5)
108
107
  multipart-post (2.0.0)
109
108
  nokogiri (1.6.7.2)
110
109
  mini_portile2 (~> 2.0.0.rc2)
111
- oauth2 (1.1.0)
110
+ oauth2 (1.0.0)
112
111
  faraday (>= 0.8, < 0.10)
113
- jwt (~> 1.0, < 1.5.2)
112
+ jwt (~> 1.0)
114
113
  multi_json (~> 1.3)
115
114
  multi_xml (~> 0.5)
116
- rack (>= 1.2, < 3)
115
+ rack (~> 1.2)
117
116
  omniauth (1.2.2)
118
117
  hashie (>= 1.2, < 4)
119
118
  rack (~> 1.0)
@@ -144,16 +143,15 @@ GEM
144
143
  rails-deprecated_sanitizer (>= 1.0.1)
145
144
  rails-html-sanitizer (1.0.3)
146
145
  loofah (~> 2.0)
147
- rake (11.1.2)
148
- rdoc (4.2.2)
149
- json (~> 1.4)
150
- responders (2.1.2)
146
+ rake (10.5.0)
147
+ rdoc (4.2.1)
148
+ responders (2.1.1)
151
149
  railties (>= 4.2.0, < 5.1)
152
150
  ruby-openid (2.7.0)
153
- sprockets (3.6.0)
151
+ sprockets (3.5.2)
154
152
  concurrent-ruby (~> 1.0)
155
153
  rack (> 1, < 3)
156
- sprockets-rails (3.0.4)
154
+ sprockets-rails (3.0.0)
157
155
  actionpack (>= 4.0)
158
156
  activesupport (>= 4.0)
159
157
  sprockets (>= 3.0.0)
@@ -177,7 +175,6 @@ DEPENDENCIES
177
175
  activerecord-jdbcsqlite3-adapter
178
176
  devise!
179
177
  jruby-openssl
180
- mime-types (~> 2.99)
181
178
  mocha (~> 1.1)
182
179
  mongoid (~> 4.0.0)
183
180
  omniauth (~> 1.2.2)
@@ -0,0 +1,37 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '..'
4
+
5
+ gem 'rails', '5.0.0.beta1.1'
6
+ gem 'omniauth', '~>1.3.1'
7
+ gem 'oauth2', github: 'intridea/oauth2', branch: 'master'
8
+ gem 'omniauth-oauth2', '>= 1.2.0', '< 1.5.0'
9
+ gem 'rdoc'
10
+
11
+ gem 'activemodel-serializers-xml', github: 'rails/activemodel-serializers-xml'
12
+
13
+ gem 'rails-controller-testing'
14
+
15
+ gem 'responders', '~>2.1.1'
16
+
17
+ group :test do
18
+ gem 'omniauth-facebook'
19
+ gem 'omniauth-openid', '~> 1.0.1'
20
+ gem 'webrat', '0.7.3', require: false
21
+ gem 'mocha', '~> 1.1', require: false
22
+ end
23
+
24
+ platforms :jruby do
25
+ gem 'activerecord-jdbc-adapter'
26
+ gem 'activerecord-jdbcsqlite3-adapter'
27
+ gem 'jruby-openssl'
28
+ end
29
+
30
+ platforms :ruby do
31
+ gem 'sqlite3'
32
+ end
33
+
34
+ # TODO:
35
+ # group :mongoid do
36
+ # gem 'mongoid', '~> 4.0.0'
37
+ # end
@@ -0,0 +1,242 @@
1
+ GIT
2
+ remote: git://github.com/intridea/oauth2.git
3
+ revision: 43e1fdd87e95a5b02438d5cce6a67e411afb5fec
4
+ branch: master
5
+ specs:
6
+ oauth2 (1.0.0)
7
+ faraday (>= 0.8, < 0.10)
8
+ jwt (~> 1.0, < 1.5.2)
9
+ multi_json (~> 1.3)
10
+ multi_xml (~> 0.5)
11
+ rack (>= 1.2, < 3)
12
+
13
+ GIT
14
+ remote: git://github.com/rails/activemodel-serializers-xml.git
15
+ revision: 1f72d9507c91b1cda10d1d20eac2b74dd6d9d4b9
16
+ specs:
17
+ activemodel-serializers-xml (0.1.0)
18
+ activemodel
19
+ activerecord
20
+ activesupport
21
+
22
+ PATH
23
+ remote: ..
24
+ specs:
25
+ devise (4.0.0.rc1)
26
+ bcrypt (~> 3.0)
27
+ orm_adapter (~> 0.1)
28
+ railties (>= 4.1.0, < 5.1)
29
+ responders
30
+ warden (~> 1.2.3)
31
+
32
+ GEM
33
+ remote: https://rubygems.org/
34
+ specs:
35
+ actioncable (5.0.0.beta1.1)
36
+ actionpack (= 5.0.0.beta1.1)
37
+ celluloid (~> 0.17.2)
38
+ coffee-rails (~> 4.1.0)
39
+ em-hiredis (~> 0.3.0)
40
+ faye-websocket (~> 0.10.0)
41
+ redis (~> 3.0)
42
+ websocket-driver (~> 0.6.1)
43
+ actionmailer (5.0.0.beta1.1)
44
+ actionpack (= 5.0.0.beta1.1)
45
+ actionview (= 5.0.0.beta1.1)
46
+ activejob (= 5.0.0.beta1.1)
47
+ mail (~> 2.5, >= 2.5.4)
48
+ rails-dom-testing (~> 1.0, >= 1.0.5)
49
+ actionpack (5.0.0.beta1.1)
50
+ actionview (= 5.0.0.beta1.1)
51
+ activesupport (= 5.0.0.beta1.1)
52
+ rack (~> 2.x)
53
+ rack-test (~> 0.6.3)
54
+ rails-dom-testing (~> 1.0, >= 1.0.5)
55
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
56
+ actionview (5.0.0.beta1.1)
57
+ activesupport (= 5.0.0.beta1.1)
58
+ builder (~> 3.1)
59
+ erubis (~> 2.7.0)
60
+ rails-dom-testing (~> 1.0, >= 1.0.5)
61
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
62
+ activejob (5.0.0.beta1.1)
63
+ activesupport (= 5.0.0.beta1.1)
64
+ globalid (>= 0.3.6)
65
+ activemodel (5.0.0.beta1.1)
66
+ activesupport (= 5.0.0.beta1.1)
67
+ builder (~> 3.1)
68
+ activerecord (5.0.0.beta1.1)
69
+ activemodel (= 5.0.0.beta1.1)
70
+ activesupport (= 5.0.0.beta1.1)
71
+ arel (~> 7.0)
72
+ activesupport (5.0.0.beta1.1)
73
+ concurrent-ruby (~> 1.0)
74
+ i18n (~> 0.7)
75
+ json (~> 1.7, >= 1.7.7)
76
+ method_source
77
+ minitest (~> 5.1)
78
+ tzinfo (~> 1.1)
79
+ arel (7.0.0)
80
+ bcrypt (3.1.10)
81
+ builder (3.2.2)
82
+ celluloid (0.17.3)
83
+ celluloid-essentials
84
+ celluloid-extras
85
+ celluloid-fsm
86
+ celluloid-pool
87
+ celluloid-supervision
88
+ timers (>= 4.1.1)
89
+ celluloid-essentials (0.20.5)
90
+ timers (>= 4.1.1)
91
+ celluloid-extras (0.20.5)
92
+ timers (>= 4.1.1)
93
+ celluloid-fsm (0.20.5)
94
+ timers (>= 4.1.1)
95
+ celluloid-pool (0.20.5)
96
+ timers (>= 4.1.1)
97
+ celluloid-supervision (0.20.5)
98
+ timers (>= 4.1.1)
99
+ coffee-rails (4.1.1)
100
+ coffee-script (>= 2.2.0)
101
+ railties (>= 4.0.0, < 5.1.x)
102
+ coffee-script (2.4.1)
103
+ coffee-script-source
104
+ execjs
105
+ coffee-script-source (1.10.0)
106
+ concurrent-ruby (1.0.0)
107
+ em-hiredis (0.3.0)
108
+ eventmachine (~> 1.0)
109
+ hiredis (~> 0.5.0)
110
+ erubis (2.7.0)
111
+ eventmachine (1.0.9.1)
112
+ execjs (2.6.0)
113
+ faraday (0.9.2)
114
+ multipart-post (>= 1.2, < 3)
115
+ faye-websocket (0.10.2)
116
+ eventmachine (>= 0.12.0)
117
+ websocket-driver (>= 0.5.1)
118
+ globalid (0.3.6)
119
+ activesupport (>= 4.1.0)
120
+ hashie (3.4.3)
121
+ hiredis (0.5.2)
122
+ hitimes (1.2.3)
123
+ i18n (0.7.0)
124
+ json (1.8.3)
125
+ jwt (1.5.1)
126
+ loofah (2.0.3)
127
+ nokogiri (>= 1.5.9)
128
+ mail (2.6.3)
129
+ mime-types (>= 1.16, < 3)
130
+ metaclass (0.0.4)
131
+ method_source (0.8.2)
132
+ mime-types (2.99)
133
+ mini_portile2 (2.0.0)
134
+ minitest (5.8.4)
135
+ mocha (1.1.0)
136
+ metaclass (~> 0.0.1)
137
+ multi_json (1.11.2)
138
+ multi_xml (0.5.5)
139
+ multipart-post (2.0.0)
140
+ nokogiri (1.6.7.2)
141
+ mini_portile2 (~> 2.0.0.rc2)
142
+ omniauth (1.3.1)
143
+ hashie (>= 1.2, < 4)
144
+ rack (>= 1.0, < 3)
145
+ omniauth-facebook (3.0.0)
146
+ omniauth-oauth2 (~> 1.2)
147
+ omniauth-oauth2 (1.4.0)
148
+ oauth2 (~> 1.0)
149
+ omniauth (~> 1.2)
150
+ omniauth-openid (1.0.1)
151
+ omniauth (~> 1.0)
152
+ rack-openid (~> 1.3.1)
153
+ orm_adapter (0.5.0)
154
+ rack (2.0.0.alpha)
155
+ json
156
+ rack-openid (1.3.1)
157
+ rack (>= 1.1.0)
158
+ ruby-openid (>= 2.1.8)
159
+ rack-test (0.6.3)
160
+ rack (>= 1.0)
161
+ rails (5.0.0.beta1.1)
162
+ actioncable (= 5.0.0.beta1.1)
163
+ actionmailer (= 5.0.0.beta1.1)
164
+ actionpack (= 5.0.0.beta1.1)
165
+ actionview (= 5.0.0.beta1.1)
166
+ activejob (= 5.0.0.beta1.1)
167
+ activemodel (= 5.0.0.beta1.1)
168
+ activerecord (= 5.0.0.beta1.1)
169
+ activesupport (= 5.0.0.beta1.1)
170
+ bundler (>= 1.3.0, < 2.0)
171
+ railties (= 5.0.0.beta1.1)
172
+ sprockets-rails (>= 2.0.0)
173
+ rails-controller-testing (0.0.3)
174
+ rails (>= 4.2)
175
+ rails-deprecated_sanitizer (1.0.3)
176
+ activesupport (>= 4.2.0.alpha)
177
+ rails-dom-testing (1.0.7)
178
+ activesupport (>= 4.2.0.beta, < 5.0)
179
+ nokogiri (~> 1.6.0)
180
+ rails-deprecated_sanitizer (>= 1.0.1)
181
+ rails-html-sanitizer (1.0.3)
182
+ loofah (~> 2.0)
183
+ railties (5.0.0.beta1.1)
184
+ actionpack (= 5.0.0.beta1.1)
185
+ activesupport (= 5.0.0.beta1.1)
186
+ method_source
187
+ rake (>= 0.8.7)
188
+ thor (>= 0.18.1, < 2.0)
189
+ rake (10.5.0)
190
+ rdoc (4.2.1)
191
+ redis (3.2.2)
192
+ responders (2.1.1)
193
+ railties (>= 4.2.0, < 5.1)
194
+ ruby-openid (2.7.0)
195
+ sprockets (3.5.2)
196
+ concurrent-ruby (~> 1.0)
197
+ rack (> 1, < 3)
198
+ sprockets-rails (3.0.0)
199
+ actionpack (>= 4.0)
200
+ activesupport (>= 4.0)
201
+ sprockets (>= 3.0.0)
202
+ sqlite3 (1.3.11)
203
+ thor (0.19.1)
204
+ thread_safe (0.3.5)
205
+ timers (4.1.1)
206
+ hitimes
207
+ tzinfo (1.2.2)
208
+ thread_safe (~> 0.1)
209
+ warden (1.2.6)
210
+ rack (>= 1.0)
211
+ webrat (0.7.3)
212
+ nokogiri (>= 1.2.0)
213
+ rack (>= 1.0)
214
+ rack-test (>= 0.5.3)
215
+ websocket-driver (0.6.3)
216
+ websocket-extensions (>= 0.1.0)
217
+ websocket-extensions (0.1.2)
218
+
219
+ PLATFORMS
220
+ ruby
221
+
222
+ DEPENDENCIES
223
+ activemodel-serializers-xml!
224
+ activerecord-jdbc-adapter
225
+ activerecord-jdbcsqlite3-adapter
226
+ devise!
227
+ jruby-openssl
228
+ mocha (~> 1.1)
229
+ oauth2!
230
+ omniauth (~> 1.3.1)
231
+ omniauth-facebook
232
+ omniauth-oauth2 (>= 1.2.0, < 1.5.0)
233
+ omniauth-openid (~> 1.0.1)
234
+ rails (= 5.0.0.beta1.1)
235
+ rails-controller-testing
236
+ rdoc
237
+ responders (~> 2.1.1)
238
+ sqlite3
239
+ webrat (= 0.7.3)
240
+
241
+ BUNDLED WITH
242
+ 1.11.2