authlogic_cloudfuji 0.9.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. data/.gitignore +17 -0
  2. data/.rspec +2 -0
  3. data/Gemfile +4 -0
  4. data/Rakefile +2 -0
  5. data/app/controllers/authlogic/cas/cas_authentication_controller.rb +7 -0
  6. data/app/controllers/authlogic/cas/cas_client_controller.rb +7 -0
  7. data/authlogic_bushido.gemspec +22 -0
  8. data/config/routes.rb +3 -0
  9. data/lib/authlogic_bushido.rb +1 -0
  10. data/lib/authlogic_cas.rb +104 -0
  11. data/lib/authlogic_cas/controller_actions/service.rb +72 -0
  12. data/lib/authlogic_cas/controller_actions/session.rb +32 -0
  13. data/lib/authlogic_cas/engine.rb +6 -0
  14. data/lib/authlogic_cas/rails_routes.rb +16 -0
  15. data/lib/authlogic_cas/single_sign_out/cache.rb +38 -0
  16. data/spec/authlogic_cas_spec.rb +150 -0
  17. data/spec/controllers/service_controller_spec.rb +51 -0
  18. data/spec/controllers/session_controller_spec.rb +31 -0
  19. data/spec/scenario/.gitignore +15 -0
  20. data/spec/scenario/Gemfile +5 -0
  21. data/spec/scenario/Rakefile +7 -0
  22. data/spec/scenario/app/assets/images/rails.png +0 -0
  23. data/spec/scenario/app/assets/javascripts/application.js +9 -0
  24. data/spec/scenario/app/assets/javascripts/main_controller.js.coffee +3 -0
  25. data/spec/scenario/app/assets/javascripts/user_sessions.js.coffee +3 -0
  26. data/spec/scenario/app/assets/javascripts/users.js.coffee +3 -0
  27. data/spec/scenario/app/assets/stylesheets/application.css +7 -0
  28. data/spec/scenario/app/assets/stylesheets/main_controller.css.scss +3 -0
  29. data/spec/scenario/app/assets/stylesheets/scaffolds.css.scss +56 -0
  30. data/spec/scenario/app/assets/stylesheets/user_sessions.css.scss +3 -0
  31. data/spec/scenario/app/assets/stylesheets/users.css.scss +3 -0
  32. data/spec/scenario/app/controllers/application_controller.rb +17 -0
  33. data/spec/scenario/app/controllers/main_controller.rb +8 -0
  34. data/spec/scenario/app/controllers/user_sessions_controller.rb +50 -0
  35. data/spec/scenario/app/controllers/users_controller.rb +86 -0
  36. data/spec/scenario/app/helpers/application_helper.rb +2 -0
  37. data/spec/scenario/app/helpers/main_controller_helper.rb +2 -0
  38. data/spec/scenario/app/helpers/user_sessions_helper.rb +2 -0
  39. data/spec/scenario/app/helpers/users_helper.rb +2 -0
  40. data/spec/scenario/app/mailers/.gitkeep +0 -0
  41. data/spec/scenario/app/models/.gitkeep +0 -0
  42. data/spec/scenario/app/models/user.rb +3 -0
  43. data/spec/scenario/app/models/user_session.rb +2 -0
  44. data/spec/scenario/app/views/layouts/application.html.erb +25 -0
  45. data/spec/scenario/app/views/main/another_cool_page.html.erb +3 -0
  46. data/spec/scenario/app/views/main/index.html.erb +2 -0
  47. data/spec/scenario/app/views/user_sessions/_form.html.erb +25 -0
  48. data/spec/scenario/app/views/user_sessions/edit.html.erb +3 -0
  49. data/spec/scenario/app/views/user_sessions/index.html.erb +25 -0
  50. data/spec/scenario/app/views/user_sessions/new.html.erb +5 -0
  51. data/spec/scenario/app/views/user_sessions/show.html.erb +15 -0
  52. data/spec/scenario/app/views/users/_form.html.erb +34 -0
  53. data/spec/scenario/app/views/users/edit.html.erb +6 -0
  54. data/spec/scenario/app/views/users/index.html.erb +27 -0
  55. data/spec/scenario/app/views/users/new.html.erb +5 -0
  56. data/spec/scenario/app/views/users/show.html.erb +20 -0
  57. data/spec/scenario/config.ru +4 -0
  58. data/spec/scenario/config/application.rb +54 -0
  59. data/spec/scenario/config/boot.rb +6 -0
  60. data/spec/scenario/config/environment.rb +17 -0
  61. data/spec/scenario/config/environments/development.rb +30 -0
  62. data/spec/scenario/config/environments/production.rb +60 -0
  63. data/spec/scenario/config/environments/test.rb +39 -0
  64. data/spec/scenario/config/initializers/authlogic_cas.rb +5 -0
  65. data/spec/scenario/config/initializers/backtrace_silencers.rb +7 -0
  66. data/spec/scenario/config/initializers/inflections.rb +10 -0
  67. data/spec/scenario/config/initializers/mime_types.rb +5 -0
  68. data/spec/scenario/config/initializers/secret_token.rb +7 -0
  69. data/spec/scenario/config/initializers/session_store.rb +8 -0
  70. data/spec/scenario/config/initializers/wrap_parameters.rb +14 -0
  71. data/spec/scenario/config/locales/en.yml +5 -0
  72. data/spec/scenario/config/routes.rb +16 -0
  73. data/spec/scenario/db/migrate/20120223141435_create_users.rb +17 -0
  74. data/spec/scenario/db/migrate/20120226154646_add_sessions_table.rb +16 -0
  75. data/spec/scenario/db/schema.rb +40 -0
  76. data/spec/scenario/db/seeds.rb +7 -0
  77. data/spec/scenario/script/rails +6 -0
  78. data/spec/single_sign_out/cache_spec.rb +47 -0
  79. data/spec/spec_helper.rb +22 -0
  80. metadata +256 -0
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Altry::Application.config.secret_token = 'e725c6c4c26e41d0070cc4d9979a66164c2f18af9b83bb7b61f543ea740a63d54d198a04f14a5738853b770d34b5f86a2f284cd2247e7b9b003fbda784de223e'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Altry::Application.config.session_store :cookie_store, key: '_altry_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ Altry::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,16 @@
1
+ Altry::Application.routes.draw do
2
+
3
+ scope :module => :authlogic do
4
+ scope :module => :cas do
5
+ match "/login" => "cas_authentication#new_cloudfuji_session", :as => "login"
6
+ match "/logout" => "cas_authentication#destroy_cloudfuji_session", :as => "logout"
7
+ end
8
+ end
9
+
10
+ resources :users
11
+
12
+ root :to => "main#index"
13
+ match "main/index" => "main#index"
14
+ match "main/index2" => "main#another_cool_page"
15
+
16
+ end
@@ -0,0 +1,17 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.text :ido_id
5
+ t.text :first_name
6
+ t.text :last_name
7
+ t.text :locale
8
+ t.text :email
9
+ t.text :username
10
+ t.text :crypted_password
11
+ t.text :password_salt
12
+ t.text :persistence_token
13
+
14
+ t.timestamps
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,16 @@
1
+ class AddSessionsTable < ActiveRecord::Migration
2
+ def up
3
+ create_table :sessions do |t|
4
+ t.string :session_id, :null => false
5
+ t.text :data
6
+ t.timestamps
7
+ end
8
+
9
+ add_index :sessions, :session_id
10
+ add_index :sessions, :updated_at
11
+ end
12
+
13
+ def down
14
+ drop_table :sessions
15
+ end
16
+ end
@@ -0,0 +1,40 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20120226154646) do
15
+
16
+ create_table "sessions", :force => true do |t|
17
+ t.string "session_id", :null => false
18
+ t.text "data"
19
+ t.datetime "created_at", :null => false
20
+ t.datetime "updated_at", :null => false
21
+ end
22
+
23
+ add_index "sessions", ["session_id"], :name => "index_sessions_on_session_id"
24
+ add_index "sessions", ["updated_at"], :name => "index_sessions_on_updated_at"
25
+
26
+ create_table "users", :force => true do |t|
27
+ t.text "ido_id"
28
+ t.text "first_name"
29
+ t.text "last_name"
30
+ t.text "locale"
31
+ t.text "email"
32
+ t.text "username"
33
+ t.text "crypted_password"
34
+ t.text "password_salt"
35
+ t.text "persistence_token"
36
+ t.datetime "created_at", :null => false
37
+ t.datetime "updated_at", :null => false
38
+ end
39
+
40
+ end
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
+ # Mayor.create(name: 'Emanuel', city: cities.first)
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,47 @@
1
+ require "spec_helper"
2
+
3
+ describe "Authlogic::Cas::SingleSignOut::Cache" do
4
+
5
+ subject { Authlogic::Cas::SingleSignOut::Cache }
6
+
7
+ describe "class methods" do
8
+ before :each do
9
+ @service_ticket_name = "1234"
10
+ Rails.stub!(:cache).and_return(ActiveSupport::Cache::Store.new)
11
+ Rails.stub!(:logger).and_return(ActiveSupport::BufferedLogger.new($stdout))
12
+ end
13
+
14
+ describe "logger" do
15
+ it "should return a rails logger object" do
16
+ ::Rails.should_receive(:logger)
17
+ subject.logger
18
+ end
19
+ end
20
+
21
+ describe "delete_service_ticket" do
22
+ it "deletes the service ticket from the Rails cache" do
23
+ ::Rails.cache.should_receive(:delete).with(subject.send(:cache_key, @service_ticket_name))
24
+ subject.delete_service_ticket(@service_ticket_name)
25
+ end
26
+ end
27
+
28
+ describe "find_unique_cas_id_by_service_ticket" do
29
+ it "should find the unique CAS ID by service ticket" do
30
+ unique_cas_id = "abc123"
31
+ ::Rails.cache.stub!(:read).and_return(unique_cas_id)
32
+
33
+ subject.find_unique_cas_id_by_service_ticket(@service_ticket).should == unique_cas_id
34
+ end
35
+ end
36
+
37
+ describe "store_unique_cas_id_for_service_ticket" do
38
+ end
39
+
40
+ describe "cache_key" do
41
+ it "should return the name of the key with a authlogic_cas prefix" do
42
+ subject.send(:cache_key, @session_index).should == "authlogic_cas:#{@session_index}"
43
+ end
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,22 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ $:.unshift File.dirname(__FILE__)
3
+ $:.unshift File.expand_path('../lib', __FILE__)
4
+
5
+ require 'rake'
6
+ require 'authlogic'
7
+ require 'authlogic_cas'
8
+ require 'rails/all'
9
+ require 'rspec/rails'
10
+ require 'rspec/autorun'
11
+
12
+ require 'scenario/config/environment'
13
+ Altry::Application.load_tasks
14
+ Rake::Task["db:migrate"].invoke
15
+
16
+
17
+
18
+ RSpec.configure do |config|
19
+ config.mock_with :rspec
20
+ # config.use_transactional_fixtures = true
21
+ config.infer_base_class_for_anonymous_controllers = false
22
+ end
metadata ADDED
@@ -0,0 +1,256 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: authlogic_cloudfuji
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.9.3
6
+ platform: ruby
7
+ authors:
8
+ - Akash Manohar J
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2012-04-25 00:00:00 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rspec-rails
17
+ requirement: &id001 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: "0"
23
+ type: :development
24
+ prerelease: false
25
+ version_requirements: *id001
26
+ - !ruby/object:Gem::Dependency
27
+ name: sqlite3
28
+ requirement: &id002 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: "0"
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: *id002
37
+ - !ruby/object:Gem::Dependency
38
+ name: rails
39
+ requirement: &id003 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: 3.2.1
45
+ type: :development
46
+ prerelease: false
47
+ version_requirements: *id003
48
+ - !ruby/object:Gem::Dependency
49
+ name: rubycas-client
50
+ requirement: &id004 !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - "="
54
+ - !ruby/object:Gem::Version
55
+ version: 2.2.1
56
+ type: :runtime
57
+ prerelease: false
58
+ version_requirements: *id004
59
+ - !ruby/object:Gem::Dependency
60
+ name: authlogic
61
+ requirement: &id005 !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: "0"
67
+ type: :runtime
68
+ prerelease: false
69
+ version_requirements: *id005
70
+ description: Cloudfuji support for Authlogic
71
+ email:
72
+ - akash@akash.im
73
+ executables: []
74
+
75
+ extensions: []
76
+
77
+ extra_rdoc_files: []
78
+
79
+ files:
80
+ - .gitignore
81
+ - .rspec
82
+ - Gemfile
83
+ - Rakefile
84
+ - app/controllers/authlogic/cas/cas_authentication_controller.rb
85
+ - app/controllers/authlogic/cas/cas_client_controller.rb
86
+ - authlogic_bushido.gemspec
87
+ - config/routes.rb
88
+ - lib/authlogic_bushido.rb
89
+ - lib/authlogic_cas.rb
90
+ - lib/authlogic_cas/controller_actions/service.rb
91
+ - lib/authlogic_cas/controller_actions/session.rb
92
+ - lib/authlogic_cas/engine.rb
93
+ - lib/authlogic_cas/rails_routes.rb
94
+ - lib/authlogic_cas/single_sign_out/cache.rb
95
+ - spec/authlogic_cas_spec.rb
96
+ - spec/controllers/service_controller_spec.rb
97
+ - spec/controllers/session_controller_spec.rb
98
+ - spec/scenario/.gitignore
99
+ - spec/scenario/Gemfile
100
+ - spec/scenario/Rakefile
101
+ - spec/scenario/app/assets/images/rails.png
102
+ - spec/scenario/app/assets/javascripts/application.js
103
+ - spec/scenario/app/assets/javascripts/main_controller.js.coffee
104
+ - spec/scenario/app/assets/javascripts/user_sessions.js.coffee
105
+ - spec/scenario/app/assets/javascripts/users.js.coffee
106
+ - spec/scenario/app/assets/stylesheets/application.css
107
+ - spec/scenario/app/assets/stylesheets/main_controller.css.scss
108
+ - spec/scenario/app/assets/stylesheets/scaffolds.css.scss
109
+ - spec/scenario/app/assets/stylesheets/user_sessions.css.scss
110
+ - spec/scenario/app/assets/stylesheets/users.css.scss
111
+ - spec/scenario/app/controllers/application_controller.rb
112
+ - spec/scenario/app/controllers/main_controller.rb
113
+ - spec/scenario/app/controllers/user_sessions_controller.rb
114
+ - spec/scenario/app/controllers/users_controller.rb
115
+ - spec/scenario/app/helpers/application_helper.rb
116
+ - spec/scenario/app/helpers/main_controller_helper.rb
117
+ - spec/scenario/app/helpers/user_sessions_helper.rb
118
+ - spec/scenario/app/helpers/users_helper.rb
119
+ - spec/scenario/app/mailers/.gitkeep
120
+ - spec/scenario/app/models/.gitkeep
121
+ - spec/scenario/app/models/user.rb
122
+ - spec/scenario/app/models/user_session.rb
123
+ - spec/scenario/app/views/layouts/application.html.erb
124
+ - spec/scenario/app/views/main/another_cool_page.html.erb
125
+ - spec/scenario/app/views/main/index.html.erb
126
+ - spec/scenario/app/views/user_sessions/_form.html.erb
127
+ - spec/scenario/app/views/user_sessions/edit.html.erb
128
+ - spec/scenario/app/views/user_sessions/index.html.erb
129
+ - spec/scenario/app/views/user_sessions/new.html.erb
130
+ - spec/scenario/app/views/user_sessions/show.html.erb
131
+ - spec/scenario/app/views/users/_form.html.erb
132
+ - spec/scenario/app/views/users/edit.html.erb
133
+ - spec/scenario/app/views/users/index.html.erb
134
+ - spec/scenario/app/views/users/new.html.erb
135
+ - spec/scenario/app/views/users/show.html.erb
136
+ - spec/scenario/config.ru
137
+ - spec/scenario/config/application.rb
138
+ - spec/scenario/config/boot.rb
139
+ - spec/scenario/config/environment.rb
140
+ - spec/scenario/config/environments/development.rb
141
+ - spec/scenario/config/environments/production.rb
142
+ - spec/scenario/config/environments/test.rb
143
+ - spec/scenario/config/initializers/authlogic_cas.rb
144
+ - spec/scenario/config/initializers/backtrace_silencers.rb
145
+ - spec/scenario/config/initializers/inflections.rb
146
+ - spec/scenario/config/initializers/mime_types.rb
147
+ - spec/scenario/config/initializers/secret_token.rb
148
+ - spec/scenario/config/initializers/session_store.rb
149
+ - spec/scenario/config/initializers/wrap_parameters.rb
150
+ - spec/scenario/config/locales/en.yml
151
+ - spec/scenario/config/routes.rb
152
+ - spec/scenario/db/migrate/20120223141435_create_users.rb
153
+ - spec/scenario/db/migrate/20120226154646_add_sessions_table.rb
154
+ - spec/scenario/db/schema.rb
155
+ - spec/scenario/db/seeds.rb
156
+ - spec/scenario/script/rails
157
+ - spec/single_sign_out/cache_spec.rb
158
+ - spec/spec_helper.rb
159
+ homepage: http://github.com/Cloudfuji/authlogic_cloudfuji
160
+ licenses: []
161
+
162
+ post_install_message:
163
+ rdoc_options: []
164
+
165
+ require_paths:
166
+ - lib
167
+ required_ruby_version: !ruby/object:Gem::Requirement
168
+ none: false
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ hash: -1837322508316040765
173
+ segments:
174
+ - 0
175
+ version: "0"
176
+ required_rubygems_version: !ruby/object:Gem::Requirement
177
+ none: false
178
+ requirements:
179
+ - - ">="
180
+ - !ruby/object:Gem::Version
181
+ hash: -1837322508316040765
182
+ segments:
183
+ - 0
184
+ version: "0"
185
+ requirements: []
186
+
187
+ rubyforge_project:
188
+ rubygems_version: 1.8.17
189
+ signing_key:
190
+ specification_version: 3
191
+ summary: Cloudfuji support for Authlogic
192
+ test_files:
193
+ - spec/authlogic_cas_spec.rb
194
+ - spec/controllers/service_controller_spec.rb
195
+ - spec/controllers/session_controller_spec.rb
196
+ - spec/scenario/.gitignore
197
+ - spec/scenario/Gemfile
198
+ - spec/scenario/Rakefile
199
+ - spec/scenario/app/assets/images/rails.png
200
+ - spec/scenario/app/assets/javascripts/application.js
201
+ - spec/scenario/app/assets/javascripts/main_controller.js.coffee
202
+ - spec/scenario/app/assets/javascripts/user_sessions.js.coffee
203
+ - spec/scenario/app/assets/javascripts/users.js.coffee
204
+ - spec/scenario/app/assets/stylesheets/application.css
205
+ - spec/scenario/app/assets/stylesheets/main_controller.css.scss
206
+ - spec/scenario/app/assets/stylesheets/scaffolds.css.scss
207
+ - spec/scenario/app/assets/stylesheets/user_sessions.css.scss
208
+ - spec/scenario/app/assets/stylesheets/users.css.scss
209
+ - spec/scenario/app/controllers/application_controller.rb
210
+ - spec/scenario/app/controllers/main_controller.rb
211
+ - spec/scenario/app/controllers/user_sessions_controller.rb
212
+ - spec/scenario/app/controllers/users_controller.rb
213
+ - spec/scenario/app/helpers/application_helper.rb
214
+ - spec/scenario/app/helpers/main_controller_helper.rb
215
+ - spec/scenario/app/helpers/user_sessions_helper.rb
216
+ - spec/scenario/app/helpers/users_helper.rb
217
+ - spec/scenario/app/mailers/.gitkeep
218
+ - spec/scenario/app/models/.gitkeep
219
+ - spec/scenario/app/models/user.rb
220
+ - spec/scenario/app/models/user_session.rb
221
+ - spec/scenario/app/views/layouts/application.html.erb
222
+ - spec/scenario/app/views/main/another_cool_page.html.erb
223
+ - spec/scenario/app/views/main/index.html.erb
224
+ - spec/scenario/app/views/user_sessions/_form.html.erb
225
+ - spec/scenario/app/views/user_sessions/edit.html.erb
226
+ - spec/scenario/app/views/user_sessions/index.html.erb
227
+ - spec/scenario/app/views/user_sessions/new.html.erb
228
+ - spec/scenario/app/views/user_sessions/show.html.erb
229
+ - spec/scenario/app/views/users/_form.html.erb
230
+ - spec/scenario/app/views/users/edit.html.erb
231
+ - spec/scenario/app/views/users/index.html.erb
232
+ - spec/scenario/app/views/users/new.html.erb
233
+ - spec/scenario/app/views/users/show.html.erb
234
+ - spec/scenario/config.ru
235
+ - spec/scenario/config/application.rb
236
+ - spec/scenario/config/boot.rb
237
+ - spec/scenario/config/environment.rb
238
+ - spec/scenario/config/environments/development.rb
239
+ - spec/scenario/config/environments/production.rb
240
+ - spec/scenario/config/environments/test.rb
241
+ - spec/scenario/config/initializers/authlogic_cas.rb
242
+ - spec/scenario/config/initializers/backtrace_silencers.rb
243
+ - spec/scenario/config/initializers/inflections.rb
244
+ - spec/scenario/config/initializers/mime_types.rb
245
+ - spec/scenario/config/initializers/secret_token.rb
246
+ - spec/scenario/config/initializers/session_store.rb
247
+ - spec/scenario/config/initializers/wrap_parameters.rb
248
+ - spec/scenario/config/locales/en.yml
249
+ - spec/scenario/config/routes.rb
250
+ - spec/scenario/db/migrate/20120223141435_create_users.rb
251
+ - spec/scenario/db/migrate/20120226154646_add_sessions_table.rb
252
+ - spec/scenario/db/schema.rb
253
+ - spec/scenario/db/seeds.rb
254
+ - spec/scenario/script/rails
255
+ - spec/single_sign_out/cache_spec.rb
256
+ - spec/spec_helper.rb