omniauth-aai 0.6.5 → 0.6.6

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: bfd7c32bfb00f107c948bb00a4454a51040150cd
4
- data.tar.gz: b7a304f90ed28e0b9cc5ae99aea534d887fb58d6
3
+ metadata.gz: 3f92afb50fb0d03c6aa5214436453443fe432d0e
4
+ data.tar.gz: 823d697b1abc397427ee6ee309874470dd697962
5
5
  SHA512:
6
- metadata.gz: 9e9579c114e8d9a3488d1b80972ff1aa65662ef8c39f6ef60a5865b5bdb561c4a6a2e812ce8c658f4176ec6fff0978bc250117d334525d1eb12e511dab8d1f0e
7
- data.tar.gz: 32895afe76f3bd9d3ef71fcb3bf4d22aa6e724438d60baf7886ac5808cf9cb151a7e50f4b1846967f278773990c39c72974109d5de90d40ab78e43d0143fee3d
6
+ metadata.gz: 40b66020e66a70be7e2d2c85583f6a2e65046cf233f3bfe79bb8561a857febb2ff0502ada0bd165f19bc2d8173920b2a37d6c4894a911cffc4dd5ee6672c3a36
7
+ data.tar.gz: 2d85caee02befbf6e4449b47340faadd53b7b7c80e5db94099a6b34613e59e96dc9bc0d2fa7cf90afbd79970b37c888971bca019d0fcd865263effa8eceab0ce
data/README.md CHANGED
@@ -24,7 +24,7 @@ Install as a gem via Gemfile or with
24
24
  This will generate some basic authenthication objects for rails:
25
25
 
26
26
  * config/initializers/omniauth.rb
27
- * app/controller/session_controller.rb
27
+ * app/controller/sessions_controller.rb
28
28
  * app/models/user.rb
29
29
  * db/migrate/<timestamp>_create_aai_user.rb
30
30
 
@@ -6,7 +6,7 @@ Example:
6
6
 
7
7
  This will create:
8
8
  config/initializers/omniauth.rb
9
- app/controller/session_controller.rb
9
+ app/controller/sessions_controller.rb
10
10
  app/models/user.rb
11
11
  db/migrate/<timestamp>_create_aai_user.rb
12
12
 
@@ -16,13 +16,14 @@ module Aai
16
16
  copy_file "omniauth.rb", "config/initializers/omniauth.rb"
17
17
  end
18
18
 
19
- def copy_session_controller_file
19
+ def copy_sessions_controller_file
20
20
  if true
21
- template "session_controller.rb", "app/controllers/session_controller.rb"
21
+ template "sessions_controller.rb", "app/controllers/sessions_controller.rb"
22
22
  inject_into_class "app/controllers/application_controller.rb", ApplicationController, " has_current_user\n"
23
- route("post '/auth/:provider/callback', to: 'session#create', as: 'auth_callback'")
24
- route("get '/auth/failure', to: 'session#failure', as: 'auth_failure'")
25
- route("get '/auth/logout', to: 'session#destroy', as: 'logout'")
23
+ route("post '/auth/:provider/callback', to: 'sessions#create', as: :auth_callback")
24
+ route("get '/auth/failure', to: 'sessions#failure', as: :auth_failure")
25
+ route("get '/auth/logout', to: 'sessions#destroy', as: :logout")
26
+ route("get '/auth/login', to: 'sessions#new', as: :login")
26
27
  end
27
28
  end
28
29
 
@@ -1,6 +1,11 @@
1
- class SessionController < ApplicationController
1
+ class SessionsController < ApplicationController
2
2
 
3
- skip_before_filter :verify_authenticity_token, only: :create, if: Rails.env.development?
3
+ before_filter :authenticate!, only: :new
4
+ skip_before_filter :verify_authenticity_token, only: [:new, :create, :destroy], if: Rails.env.development?
5
+
6
+ def new
7
+ redirect_to(session.delete( :return_to ) || root_path)
8
+ end
4
9
 
5
10
  def create
6
11
  <% if options[:persist] -%>
@@ -24,8 +29,9 @@ class SessionController < ApplicationController
24
29
 
25
30
  def destroy
26
31
  self.current_user = nil
32
+ session[:current_user] = nil
27
33
  flash[:notice] = "Logout successful"
28
- redirect_to(root_path)
34
+ redirect_to(sign_out_url)
29
35
  end
30
36
 
31
37
  private
@@ -34,4 +40,12 @@ class SessionController < ApplicationController
34
40
  request.env['omniauth.auth']
35
41
  end
36
42
 
43
+ def sign_out_url
44
+ if Rails.env.development?
45
+ root_url
46
+ else
47
+ root_url + 'Shibboleth.sso/Logout'
48
+ end
49
+ end
50
+
37
51
  end
@@ -1,7 +1,6 @@
1
1
  require "omniauth-aai/version"
2
2
  require "omniauth"
3
3
  require "omniauth/has_current_user"
4
- # require "action_controller/has_current_user"
5
4
 
6
5
  module OmniAuth
7
6
  module Strategies
@@ -1,5 +1,5 @@
1
1
  module OmniAuth
2
2
  module Aai
3
- VERSION = "0.6.5"
3
+ VERSION = "0.6.6"
4
4
  end
5
5
  end
@@ -23,13 +23,11 @@ module Omniauth
23
23
  @user
24
24
  end
25
25
 
26
- # Set the current user
27
26
  def current_user=(user)
28
27
  @user = user
29
28
  session[:current_user] = @user.marshal unless @user.nil?
30
29
  end
31
30
 
32
- # Authenticate User
33
31
  def authenticate!
34
32
  return if authenticated?
35
33
  session[:return_to] = request.url
@@ -40,7 +38,6 @@ module Omniauth
40
38
  end
41
39
  end
42
40
 
43
- # User authenticated?
44
41
  def authenticated?
45
42
  return true if self.current_user.present? && self.current_user.uid.present?
46
43
  return false
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../../../omniauth-aai
3
3
  specs:
4
- omniauth-aai (0.6.4)
4
+ omniauth-aai (0.6.5)
5
5
  omniauth-shibboleth (~> 1.2)
6
6
 
7
7
  GEM
@@ -63,14 +63,14 @@ GEM
63
63
  activesupport (>= 4.1.0)
64
64
  hashie (3.4.2)
65
65
  i18n (0.7.0)
66
- jbuilder (2.2.16)
66
+ jbuilder (2.3.0)
67
67
  activesupport (>= 3.0.0, < 5)
68
68
  multi_json (~> 1.2)
69
69
  jquery-rails (4.0.3)
70
70
  rails-dom-testing (~> 1.0)
71
71
  railties (>= 4.2.0)
72
72
  thor (>= 0.14, < 2.0)
73
- json (1.8.2)
73
+ json (1.8.3)
74
74
  loofah (2.0.2)
75
75
  nokogiri (>= 1.5.9)
76
76
  mail (2.6.3)
@@ -78,7 +78,7 @@ GEM
78
78
  mime-types (2.6.1)
79
79
  mini_portile (0.6.2)
80
80
  minitest (5.7.0)
81
- multi_json (1.11.0)
81
+ multi_json (1.11.1)
82
82
  nokogiri (1.6.6.2)
83
83
  mini_portile (~> 0.6.0)
84
84
  omniauth (1.2.2)
@@ -126,7 +126,7 @@ GEM
126
126
  json (~> 1.7, >= 1.7.7)
127
127
  rdoc (~> 4.0)
128
128
  spring (1.3.6)
129
- sprockets (3.1.0)
129
+ sprockets (3.2.0)
130
130
  rack (~> 1.0)
131
131
  sprockets-rails (2.3.1)
132
132
  actionpack (>= 3.0)
@@ -1,6 +1,11 @@
1
- class SessionController < ApplicationController
1
+ class SessionsController < ApplicationController
2
2
 
3
- skip_before_filter :verify_authenticity_token, only: :create, if: Rails.env.development?
3
+ skip_before_filter :verify_authenticity_token, only: [:new, :create], if: Rails.env.development?
4
+ before_filter :authenticate!, only: :new
5
+
6
+ def new
7
+ redirect_to(session.delete( :return_to ) || root_path)
8
+ end
4
9
 
5
10
  def create
6
11
  self.current_user = User.update_or_create_with_omniauth_aai(auth_hash)
@@ -1,8 +1,9 @@
1
1
  Rails.application.routes.draw do
2
2
 
3
- get '/auth/logout', to: 'session#destroy', as: 'logout'
4
- get '/auth/failure', to: 'session#failure', as: 'auth_failure'
5
- post '/auth/:provider/callback', to: 'session#create', as: 'auth_callback'
3
+ get '/auth/login', to: 'sessions#new', as: 'login'
4
+ get '/auth/logout', to: 'sessions#destroy', as: 'logout'
5
+ get '/auth/failure', to: 'sessions#failure', as: 'auth_failure'
6
+ post '/auth/:provider/callback', to: 'sessions#create', as: 'auth_callback'
6
7
  get "welcome/index"
7
8
  get "welcome/protected"
8
9
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-aai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.5
4
+ version: 0.6.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Rohrer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-10 00:00:00.000000000 Z
11
+ date: 2015-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth-shibboleth
@@ -115,13 +115,12 @@ files:
115
115
  - lib/generators/aai/setup_generator.rb
116
116
  - lib/generators/aai/templates/migration.rb
117
117
  - lib/generators/aai/templates/omniauth.rb
118
- - lib/generators/aai/templates/session_controller.rb
118
+ - lib/generators/aai/templates/sessions_controller.rb
119
119
  - lib/generators/aai/templates/user.rb
120
120
  - lib/omniauth-aai.rb
121
121
  - lib/omniauth-aai/version.rb
122
122
  - lib/omniauth/has_current_user.rb
123
123
  - lib/omniauth/strategies/aai.rb
124
- - omniauth-aai-0.6.4.gem
125
124
  - omniauth-aai.gemspec
126
125
  - spec/example_rails3_app/.DS_Store
127
126
  - spec/example_rails3_app/.gitignore
@@ -213,7 +212,7 @@ files:
213
212
  - spec/example_rails4_app/app/assets/stylesheets/application.css
214
213
  - spec/example_rails4_app/app/controllers/application_controller.rb
215
214
  - spec/example_rails4_app/app/controllers/concerns/.keep
216
- - spec/example_rails4_app/app/controllers/session_controller.rb
215
+ - spec/example_rails4_app/app/controllers/sessions_controller.rb
217
216
  - spec/example_rails4_app/app/controllers/welcome_controller.rb
218
217
  - spec/example_rails4_app/app/helpers/application_helper.rb
219
218
  - spec/example_rails4_app/app/mailers/.keep
@@ -270,6 +269,7 @@ files:
270
269
  - spec/example_rails4_app/test/mailers/.keep
271
270
  - spec/example_rails4_app/test/models/.keep
272
271
  - spec/example_rails4_app/test/test_helper.rb
272
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/16hQlFIe40NuIP864XRz2KijWCbEtxyjn5X1rXoJk6o.cache
273
273
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/1s_XCxu5Ta3ZrQVnXIYvLyRMXFQo20cDx9dOl2Z2iF8.cache
274
274
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/29DyBLYZiyJ3FlvLIMPsG2-7J8nAW42idLjWLEVdB_k.cache
275
275
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/3QbXCZJvxomnkCnjUWHuRcr1GygZ_h2BHAvxwpDe8_s.cache
@@ -278,13 +278,17 @@ files:
278
278
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/6jHw85RU0ldd0Q9aN-7rANpT7g1-koNDbSenv-m7smI.cache
279
279
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/7BAbDbQvvxI5tyXDU4FFEVqkskvwpwBb-Okv_3k7m_A.cache
280
280
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/9wp0IZ0iih5-OpulhDQiwTcivSJ1B0NGGT3E0QqfUvY.cache
281
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/ASeqoXJyDlZhHaweI73pi-Dj51RayBwGYDQv-OgzXiE.cache
281
282
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/BNSnmei4pmTUWNUSAxEsb0MthlP4aMS69DOMLpxnO1w.cache
282
283
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/CuDbyYCWFI80xf5TcM_YGo4vs7XDrDT2uGZbXL1CNlU.cache
284
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/D0w0IyoGT2s724eOBj8aEAFn3FYDYNtaVI7lJ_ZZuxE.cache
283
285
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/E7vUl62-SGsQ8YapPcF158Pt1JkBL-9rifcB_9dP8Dk.cache
284
286
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Gb8DbxW8LZBtcLvB3DaLNTXt5D0MNezSV797OaoPY9Q.cache
285
287
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/GgQIx53L-9pWadlFfRd5NlAqwNFKf7DLPkPnsnQ7bNk.cache
288
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/GhngrT7J72BUCc1bezWnL7Jo90IMfCX9sv-jG3yR1do.cache
286
289
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/GjsYHKbT8fxMeVlnpmarx6Xi-_Ph0QMuk1BHoU4JDrQ.cache
287
290
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/H4FEyyRC4IJsChOdu1cf9NDgg8w6J1YBVNHaKN92h9o.cache
291
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/HuW5JtBWJZxfUZ1DwcTWNbd8SUgtADxeUMUKeEzvf_g.cache
288
292
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/If5Lvqrq1tySO8vBUqp2xvRY_mnDfGebBxBP2mxZbZY.cache
289
293
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/IoT_x37i_0kSKYgLgbJR5-i6lvuoyNhOt9FSw-yILiQ.cache
290
294
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/JUseOAL-WHjhDijGjAaXwOvZEJUVhMs_jFSMbXunViY.cache
@@ -292,10 +296,14 @@ files:
292
296
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/KZpDQ14WKjcnWnLxlL99qFCd6ARfk0MsdegUfI30RMk.cache
293
297
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/KZxCQPT4Q2wX3rHnJZcFGWZPTtq7oNH9llxBAALh43s.cache
294
298
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/LgV_5lRim8CeylWertau64VwyRxtI51id8BtgIok58g.cache
299
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/LrrMe0GtdmPrjF0Ou61xP2OuXRn_qj89eGoZXbf3vbw.cache
300
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/LztSNJNntGvwWvTagsgqfu962AkizwMH0ZY3rR1UlfU.cache
295
301
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Nt-6pBlTra27ZPWSp2yTZSKBAePHJHgDlIoxWTgF9i8.cache
296
302
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/PHhC5vQizTPXEkJAiD_q9ESL7UlJW-l8Ua2aoWOhv_o.cache
303
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/P_EuZX1f1jWOTOCYOehyLGTvBYPNpeXrJK78R-D_fxg.cache
297
304
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/QRU43JksZxXfCsqux8aCe2yyWueGiamUDi18N8gDA1Q.cache
298
305
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/RECBJfTHjk7obOczR_QxMkSagYRkmidf_ZawDoZTR8A.cache
306
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/R_O3eL5GP3JE2uv530dKflrtqwgUnEDeuuO73Cu3ufc.cache
299
307
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/RanHbvC55zjJip0GoEuKsXCXGiMAnd9n7zr67BIqBSw.cache
300
308
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/S5179qXMIYo2z-pYHnXOtD2IYoz5ac8moYSK7pNt7m8.cache
301
309
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/SO9WJ6f1sF18HRfzSmwkLdVZZwRBNz1DxAaYtGbOTrE.cache
@@ -307,14 +315,17 @@ files:
307
315
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TqgWeb7o7Z23teWSLaSdF-f3_8aYzRVbBVZhQUHuZVc.cache
308
316
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/VOp0pIv_pTt1jyD5JQn5Ee721CyQFQTGdnz4ODw38i4.cache
309
317
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/W8O66kikznV0XXIhsnH-3dHWm24NyxyK2BbzZvEssto.cache
318
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/WvpkQTtu6Bilfk4avwZi3MltWyEZ5AoOFrh1CmggOHY.cache
310
319
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/YLGfTegl3aFlYlDF7dfyQ5OuL6B6D3l-mcGVqtWnVQ8.cache
311
320
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/YngNHAn-McYDpn3H2vj5Cfs7jvy6y0xXgV2lm-QqytU.cache
312
321
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/_J-JFAM5KZ8G3xUcVV9ht5vdsdH3wHg737JhiRTNl30.cache
313
322
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/apXOQCHHr7toaELV0vOhGpGHp0qsm15GmPpb-6SA6GI.cache
323
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/b8y2GQ1-kRPHQ6iuNVBh3u3UFg0MWb39-nI-F6kFjJI.cache
314
324
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/c5jVOyypWys4L2Hoyc4U84gCAJg3tGepalH4_wvPjag.cache
315
325
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/c8Xfpa8RSionpn-Hbvc5pDqvktT2tZDhvRCrUD1V_Oo.cache
316
326
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/cihMJr_YPzjx-OxZT97hhVuVpY1rkTjbZmXFd8XHCaU.cache
317
327
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/dHMPXPs1sOQ-fiWIOHBlX15A53Jm0CIPz2F_hNdtS3M.cache
328
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/e4ioh3j6ccc_NIUtSAGfGsBqUtpL4WzaWCz8arAlf3I.cache
318
329
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/e99bn4nHgVDcocbTGKcEmDNK9c_hXbgX6QjCJFCZHJM.cache
319
330
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/fLv1zUMqDQeVn2AWONn1mWotZV-MKGL2VWCOWalnPkg.cache
320
331
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/fWQJziLu4L1W29En3opeg-1CsjRQBWmvxu9pCs4bXj8.cache
@@ -325,16 +336,25 @@ files:
325
336
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/hS0tOwqtQJaZQ94vExFzOIkbAuInPL-qbhJ_ehyAIdA.cache
326
337
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/jRTlxo8OfNbF2UFI9yARZfikVm2L6tckGljgpdPKJAE.cache
327
338
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/jWzKY7vp1V-gp2DIoaBUf6FHlXy64u51evJE2HTEmHw.cache
339
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/lUc30_tLPQlQGisfWsxHa5lZyISJfptkj2aejrnhWZU.cache
340
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/nCxMbDnAes_1GC8RYt2PITy2WlNMi62r_NxgG9iCMtw.cache
341
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/o3kPC592ld19zDhb6e5CboJtfZTPuTXwL60X_-G1gns.cache
342
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/pDDE6FBtWnNdYy4cCqoBwRS9skyewhX3G5hbhJ-avkA.cache
343
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/qCq7JUQLgFWl8E0HPk7lIEBGOdmUhOQK8DTCpqoypGk.cache
328
344
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/qzBkjnl32lQWbp5TzPSAUL1ai7Di46nMpBx4F7m6x5s.cache
329
345
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/r77JGKq0Pw_xiSzw2prNjqaAF6alyTiTyCsdnbipthY.cache
330
346
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/rJ0exYcGrKT54S-78fIu6vNCgQs3mDufsDxQ14gI_8E.cache
331
347
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/rx80cSLfrwi0ZB09RMu0y303mn2cqY0n-HVvX4OZSvg.cache
332
348
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/t86ZINxINr8OvlNbaSMwdIJCEKNwBO6brBig2BlQM14.cache
333
349
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/tXvI8895yJKqfChNv65cTiwS7lytvZHFz1fXzFbzVeM.cache
350
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/thCl8GGN_rJuvcv7xzw1ekUMhKjPezhxQRCfJsKQSE8.cache
351
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/tjK9Anw7eOjh7RbOOCT1XJdPXKwQF1LniW5CKzANsg4.cache
334
352
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/ueBgJWdtY_h7B_DpJgfhaB1zK-p3TTKWfXHuoog1ee0.cache
335
353
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/umu0vtYbA7uPY--szPF2GZOzRsafL6YLGkxCLx52t0c.cache
354
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/vxx5Pa9c7cJsc-XteYxMc1PzkF-ivhpS1rA4yMoFo-Q.cache
336
355
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/wRYMTVh2J03EQY8OmShoXFHM5q_wkCsogrHuAv8CR6g.cache
337
356
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/xSK_JYmeNOLhG9YlWG_YGYarb8YLyIeMXHahwRIyhZY.cache
357
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/xY3vpOpgxS_v0BTnI8qGvaqZPEHD4oWhTstxJSLV3nU.cache
338
358
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/yLpEexUzUtWqrKQPCErdaCnJUUkxgSLIOShi9XNRKlM.cache
339
359
  - spec/example_rails4_app/vendor/assets/javascripts/.keep
340
360
  - spec/example_rails4_app/vendor/assets/stylesheets/.keep
@@ -455,7 +475,7 @@ test_files:
455
475
  - spec/example_rails4_app/app/assets/stylesheets/application.css
456
476
  - spec/example_rails4_app/app/controllers/application_controller.rb
457
477
  - spec/example_rails4_app/app/controllers/concerns/.keep
458
- - spec/example_rails4_app/app/controllers/session_controller.rb
478
+ - spec/example_rails4_app/app/controllers/sessions_controller.rb
459
479
  - spec/example_rails4_app/app/controllers/welcome_controller.rb
460
480
  - spec/example_rails4_app/app/helpers/application_helper.rb
461
481
  - spec/example_rails4_app/app/mailers/.keep
@@ -516,6 +536,7 @@ test_files:
516
536
  - spec/example_rails4_app/test/mailers/.keep
517
537
  - spec/example_rails4_app/test/models/.keep
518
538
  - spec/example_rails4_app/test/test_helper.rb
539
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/16hQlFIe40NuIP864XRz2KijWCbEtxyjn5X1rXoJk6o.cache
519
540
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/1s_XCxu5Ta3ZrQVnXIYvLyRMXFQo20cDx9dOl2Z2iF8.cache
520
541
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/29DyBLYZiyJ3FlvLIMPsG2-7J8nAW42idLjWLEVdB_k.cache
521
542
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/3QbXCZJvxomnkCnjUWHuRcr1GygZ_h2BHAvxwpDe8_s.cache
@@ -526,18 +547,23 @@ test_files:
526
547
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/9wp0IZ0iih5-OpulhDQiwTcivSJ1B0NGGT3E0QqfUvY.cache
527
548
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/_J-JFAM5KZ8G3xUcVV9ht5vdsdH3wHg737JhiRTNl30.cache
528
549
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/apXOQCHHr7toaELV0vOhGpGHp0qsm15GmPpb-6SA6GI.cache
550
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/ASeqoXJyDlZhHaweI73pi-Dj51RayBwGYDQv-OgzXiE.cache
551
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/b8y2GQ1-kRPHQ6iuNVBh3u3UFg0MWb39-nI-F6kFjJI.cache
529
552
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/BNSnmei4pmTUWNUSAxEsb0MthlP4aMS69DOMLpxnO1w.cache
530
553
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/c5jVOyypWys4L2Hoyc4U84gCAJg3tGepalH4_wvPjag.cache
531
554
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/c8Xfpa8RSionpn-Hbvc5pDqvktT2tZDhvRCrUD1V_Oo.cache
532
555
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/cihMJr_YPzjx-OxZT97hhVuVpY1rkTjbZmXFd8XHCaU.cache
533
556
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/CuDbyYCWFI80xf5TcM_YGo4vs7XDrDT2uGZbXL1CNlU.cache
557
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/D0w0IyoGT2s724eOBj8aEAFn3FYDYNtaVI7lJ_ZZuxE.cache
534
558
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/dHMPXPs1sOQ-fiWIOHBlX15A53Jm0CIPz2F_hNdtS3M.cache
559
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/e4ioh3j6ccc_NIUtSAGfGsBqUtpL4WzaWCz8arAlf3I.cache
535
560
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/E7vUl62-SGsQ8YapPcF158Pt1JkBL-9rifcB_9dP8Dk.cache
536
561
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/e99bn4nHgVDcocbTGKcEmDNK9c_hXbgX6QjCJFCZHJM.cache
537
562
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/fLv1zUMqDQeVn2AWONn1mWotZV-MKGL2VWCOWalnPkg.cache
538
563
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/fWQJziLu4L1W29En3opeg-1CsjRQBWmvxu9pCs4bXj8.cache
539
564
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Gb8DbxW8LZBtcLvB3DaLNTXt5D0MNezSV797OaoPY9Q.cache
540
565
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/GgQIx53L-9pWadlFfRd5NlAqwNFKf7DLPkPnsnQ7bNk.cache
566
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/GhngrT7J72BUCc1bezWnL7Jo90IMfCX9sv-jG3yR1do.cache
541
567
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/GjsYHKbT8fxMeVlnpmarx6Xi-_Ph0QMuk1BHoU4JDrQ.cache
542
568
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/gLKErIDcQk5SB5QrsCeFTLyCw5500orRLwYeVdZdKMc.cache
543
569
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/gr63R85vyTqHHJZQ-17HzBTVQzxNIG5ioLBJIG7ylUI.cache
@@ -545,6 +571,7 @@ test_files:
545
571
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/h94CfaFE7uxKkjg9ok-t1VaNrmPtIlflckdFHhn8HQs.cache
546
572
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/hE4vknoiDD4JODeZCrqVQJsqIprogjXMLmC8OwA_Jr0.cache
547
573
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/hS0tOwqtQJaZQ94vExFzOIkbAuInPL-qbhJ_ehyAIdA.cache
574
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/HuW5JtBWJZxfUZ1DwcTWNbd8SUgtADxeUMUKeEzvf_g.cache
548
575
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/If5Lvqrq1tySO8vBUqp2xvRY_mnDfGebBxBP2mxZbZY.cache
549
576
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/IoT_x37i_0kSKYgLgbJR5-i6lvuoyNhOt9FSw-yILiQ.cache
550
577
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/jRTlxo8OfNbF2UFI9yARZfikVm2L6tckGljgpdPKJAE.cache
@@ -554,11 +581,20 @@ test_files:
554
581
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/KZpDQ14WKjcnWnLxlL99qFCd6ARfk0MsdegUfI30RMk.cache
555
582
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/KZxCQPT4Q2wX3rHnJZcFGWZPTtq7oNH9llxBAALh43s.cache
556
583
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/LgV_5lRim8CeylWertau64VwyRxtI51id8BtgIok58g.cache
584
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/LrrMe0GtdmPrjF0Ou61xP2OuXRn_qj89eGoZXbf3vbw.cache
585
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/lUc30_tLPQlQGisfWsxHa5lZyISJfptkj2aejrnhWZU.cache
586
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/LztSNJNntGvwWvTagsgqfu962AkizwMH0ZY3rR1UlfU.cache
587
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/nCxMbDnAes_1GC8RYt2PITy2WlNMi62r_NxgG9iCMtw.cache
557
588
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Nt-6pBlTra27ZPWSp2yTZSKBAePHJHgDlIoxWTgF9i8.cache
589
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/o3kPC592ld19zDhb6e5CboJtfZTPuTXwL60X_-G1gns.cache
590
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/P_EuZX1f1jWOTOCYOehyLGTvBYPNpeXrJK78R-D_fxg.cache
591
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/pDDE6FBtWnNdYy4cCqoBwRS9skyewhX3G5hbhJ-avkA.cache
558
592
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/PHhC5vQizTPXEkJAiD_q9ESL7UlJW-l8Ua2aoWOhv_o.cache
593
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/qCq7JUQLgFWl8E0HPk7lIEBGOdmUhOQK8DTCpqoypGk.cache
559
594
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/QRU43JksZxXfCsqux8aCe2yyWueGiamUDi18N8gDA1Q.cache
560
595
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/qzBkjnl32lQWbp5TzPSAUL1ai7Di46nMpBx4F7m6x5s.cache
561
596
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/r77JGKq0Pw_xiSzw2prNjqaAF6alyTiTyCsdnbipthY.cache
597
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/R_O3eL5GP3JE2uv530dKflrtqwgUnEDeuuO73Cu3ufc.cache
562
598
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/RanHbvC55zjJip0GoEuKsXCXGiMAnd9n7zr67BIqBSw.cache
563
599
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/RECBJfTHjk7obOczR_QxMkSagYRkmidf_ZawDoZTR8A.cache
564
600
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/rJ0exYcGrKT54S-78fIu6vNCgQs3mDufsDxQ14gI_8E.cache
@@ -569,6 +605,8 @@ test_files:
569
605
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/t86ZINxINr8OvlNbaSMwdIJCEKNwBO6brBig2BlQM14.cache
570
606
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TdlxPZJxUr_7HWj7CrC81yJyV0-40_Ogqo_1NTaEoIU.cache
571
607
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TGEldewczDNL-pNPKYkePKZe3ySFo2sisfkbnD19W4s.cache
608
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/thCl8GGN_rJuvcv7xzw1ekUMhKjPezhxQRCfJsKQSE8.cache
609
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/tjK9Anw7eOjh7RbOOCT1XJdPXKwQF1LniW5CKzANsg4.cache
572
610
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TowmqkMiUGEwvy7lnHQ_88ROBl0yb2D4yH0ugiNjvfA.cache
573
611
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/Tp7wu_U3u6gFUnDoUHA40bWXyFOSSxNiXK6XPRwYmYU.cache
574
612
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/TqgWeb7o7Z23teWSLaSdF-f3_8aYzRVbBVZhQUHuZVc.cache
@@ -576,9 +614,12 @@ test_files:
576
614
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/ueBgJWdtY_h7B_DpJgfhaB1zK-p3TTKWfXHuoog1ee0.cache
577
615
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/umu0vtYbA7uPY--szPF2GZOzRsafL6YLGkxCLx52t0c.cache
578
616
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/VOp0pIv_pTt1jyD5JQn5Ee721CyQFQTGdnz4ODw38i4.cache
617
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/vxx5Pa9c7cJsc-XteYxMc1PzkF-ivhpS1rA4yMoFo-Q.cache
579
618
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/W8O66kikznV0XXIhsnH-3dHWm24NyxyK2BbzZvEssto.cache
580
619
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/wRYMTVh2J03EQY8OmShoXFHM5q_wkCsogrHuAv8CR6g.cache
620
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/WvpkQTtu6Bilfk4avwZi3MltWyEZ5AoOFrh1CmggOHY.cache
581
621
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/xSK_JYmeNOLhG9YlWG_YGYarb8YLyIeMXHahwRIyhZY.cache
622
+ - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/xY3vpOpgxS_v0BTnI8qGvaqZPEHD4oWhTstxJSLV3nU.cache
582
623
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/YLGfTegl3aFlYlDF7dfyQ5OuL6B6D3l-mcGVqtWnVQ8.cache
583
624
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/yLpEexUzUtWqrKQPCErdaCnJUUkxgSLIOShi9XNRKlM.cache
584
625
  - spec/example_rails4_app/tmp/cache/assets/development/sprockets/v3.0/YngNHAn-McYDpn3H2vj5Cfs7jvy6y0xXgV2lm-QqytU.cache
Binary file