contour 1.0.0.rc → 1.0.0.rc2
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.
- data/app/assets/javascripts/contour/global.js.coffee +6 -0
- data/app/helpers/contour_helper.rb +6 -7
- data/contour.gemspec +1 -1
- data/lib/contour/version.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +534 -0
- metadata +25 -25
@@ -26,3 +26,9 @@ jQuery ->
|
|
26
26
|
$.get($("#"+object_class+"_search").attr("action"), $("#"+object_class+"_search").serialize() + "&"+object_class+"_per_page="+ $(this).data('count'), null, "script")
|
27
27
|
false
|
28
28
|
)
|
29
|
+
|
30
|
+
$(document).on('click', '[data-object~="order"]', () ->
|
31
|
+
$('#order').val($(this).data('order'))
|
32
|
+
$($(this).data('form')).submit()
|
33
|
+
false
|
34
|
+
)
|
@@ -5,13 +5,12 @@ module ContourHelper
|
|
5
5
|
end
|
6
6
|
|
7
7
|
def sort_field_helper(order, sort_field, display_name, search_form_id = 'search_form')
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
end
|
14
|
-
result
|
8
|
+
sort_field_order = (order == sort_field) ? "#{sort_field} DESC" : sort_field
|
9
|
+
symbol = (order == sort_field) ? '»' : (order == sort_field + ' DESC' ? '«' : '«»')
|
10
|
+
selected_class = (order == sort_field) ? 'selected' : (order == sort_field + ' DESC' ? 'selected' : '')
|
11
|
+
content_tag(:span, class: selected_class) do
|
12
|
+
display_name.to_s.html_safe + ' ' + link_to(raw(symbol), '#', data: { object: 'order', order: sort_field_order, form: "##{search_form_id}" }, style: 'text-decoration:none')
|
13
|
+
end.html_safe
|
15
14
|
end
|
16
15
|
|
17
16
|
# From Twitter-Bootstrap-Rails
|
data/contour.gemspec
CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.files = Dir["{app,config,db,lib}/**/*"] + ["CHANGELOG.rdoc", "contour.gemspec", "LICENSE", "Rakefile", "README.rdoc"]
|
24
24
|
s.test_files = Dir["test/**/*"]
|
25
25
|
|
26
|
-
s.add_dependency 'rails', '~> 3.2.
|
26
|
+
s.add_dependency 'rails', '~> 3.2.4.rc1'
|
27
27
|
s.add_dependency 'jquery-rails', '~> 2.0.2'
|
28
28
|
s.add_dependency 'devise', '~> 2.1.0'
|
29
29
|
s.add_dependency 'omniauth', '~> 1.1.0'
|
data/lib/contour/version.rb
CHANGED
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
data/test/dummy/log/test.log
CHANGED
@@ -36982,3 +36982,537 @@ Completed 401 Unauthorized in 79ms
|
|
36982
36982
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
36983
36983
|
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
|
36984
36984
|
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
36985
|
+
Connecting to database specified by database.yml
|
36986
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
36987
|
+
[1m[35mFixture Delete (0.2ms)[0m DELETE FROM "authentications"
|
36988
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "authentications" ("provider", "uid", "created_at", "updated_at", "id", "user_id") VALUES ('open_id', 'open_id@open_id.com', '2012-05-29 19:27:52', '2012-05-29 19:27:52', 949717663, 201799169)[0m
|
36989
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "authentications" ("provider", "uid", "created_at", "updated_at", "id", "user_id") VALUES ('google_apps', 'test@gmail.com', '2012-05-29 19:27:52', '2012-05-29 19:27:52', 876923740, 201799169)
|
36990
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "authentications" ("provider", "uid", "created_at", "updated_at", "id", "user_id") VALUES ('ldap', 'CN=ldapid,CN=Users,DC=example,DC=com', '2012-05-29 19:27:52', '2012-05-29 19:27:52', 864673665, 201799169)[0m
|
36991
|
+
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "users"
|
36992
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "users" ("first_name", "last_name", "status", "deleted", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "created_at", "updated_at", "id") VALUES ('FirstName', 'LastName', 'active', 'f', 'valid@example.com', '$2a$10$ZgXIxDCn.TjuCgsnS9iEp.Z1LlmQ71FGKgZe/kdCaVvgvnAAcUaz2', 'ResetTokenOne', 'MyDate', 'MyDate', 0, 'MyDate', 'MyDate', 'MyString', 'MyString', '2012-05-29 19:27:52', '2012-05-29 19:27:52', 201799169)[0m
|
36993
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "users" ("first_name", "last_name", "status", "deleted", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'inactive', 'f', 'EmailTwo', 'MyString', 'ResetTokenTwo', 'MyDate', 'MyDate', 0, 'MyDate', 'MyDate', 'MyString', 'MyString', '2012-05-29 19:27:52', '2012-05-29 19:27:52', 999914115)
|
36994
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "users" ("first_name", "last_name", "status", "deleted", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "created_at", "updated_at", "id") VALUES ('Deleted', 'User', 'active', 't', 'deleted@example.com', 'MyString', 'ResetTokenFive', 'MyDate', '2011-02-23', 0, '2011-02-23', '2011-02-23', 'MyString', 'MyString', '2012-05-29 19:27:52', '2012-05-29 19:27:52', 725306934)[0m
|
36995
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "users" ("first_name", "last_name", "status", "deleted", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'pending', 'f', 'pending@example.com', 'MyString', 'ResetTokenFour', 'MyDate', '2011-02-23', 0, '2011-02-23', '2011-02-23', 'MyString', 'MyString', '2012-05-29 19:27:52', '2012-05-29 19:27:52', 349534908)
|
36996
|
+
[1m[36m (1.9ms)[0m [1mcommit transaction[0m
|
36997
|
+
[1m[35m (0.1ms)[0m begin transaction
|
36998
|
+
[1m[36mAuthentication Load (0.3ms)[0m [1mSELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1[0m [["id", 876923740]]
|
36999
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
37000
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
37001
|
+
[1m[35mAuthentication Load (0.1ms)[0m SELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1 [["id", 949717663]]
|
37002
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
37003
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37004
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37005
|
+
[1m[35mAuthentication Load (0.1ms)[0m SELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1 [["id", 949717663]]
|
37006
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "authentications" [0m
|
37007
|
+
Processing by Contour::AuthenticationsController#create as HTML
|
37008
|
+
Parameters: {"authentication"=>{"id"=>"949717663", "user_id"=>"201799169", "provider"=>"open_id", "uid"=>"open_id@open_id.com", "created_at"=>"2012-05-29 19:27:52 UTC", "updated_at"=>"2012-05-29 19:27:52 UTC"}}
|
37009
|
+
[1m[35mAuthentication Load (0.1ms)[0m SELECT "authentications".* FROM "authentications" WHERE "authentications"."provider" = 'google_apps' AND "authentications"."uid" = 'test@example.com' LIMIT 1
|
37010
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 201799169 LIMIT 1[0m
|
37011
|
+
Logged in user found, creating associated authentication.
|
37012
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
37013
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "authentications" ("created_at", "provider", "uid", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 May 2012 19:27:52 UTC +00:00], ["provider", "google_apps"], ["uid", "test@example.com"], ["updated_at", Tue, 29 May 2012 19:27:52 UTC +00:00], ["user_id", 201799169]]
|
37014
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37015
|
+
Redirected to http://test.host/authentications
|
37016
|
+
Completed 302 Found in 49ms (ActiveRecord: 0.8ms)
|
37017
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "authentications" [0m
|
37018
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
37019
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
37020
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
|
37021
|
+
[1m[36mAuthentication Load (0.0ms)[0m [1mSELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1[0m [["id", 949717663]]
|
37022
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "authentications"
|
37023
|
+
Processing by Contour::AuthenticationsController#destroy as HTML
|
37024
|
+
Parameters: {"id"=>"949717663"}
|
37025
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 201799169 LIMIT 1[0m
|
37026
|
+
[1m[35mAuthentication Load (0.1ms)[0m SELECT "authentications".* FROM "authentications" WHERE "authentications"."user_id" = 201799169 AND "authentications"."id" = ? LIMIT 1 [["id", "949717663"]]
|
37027
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
37028
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "authentications" WHERE "authentications"."id" = ? [["id", 949717663]]
|
37029
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37030
|
+
Redirected to http://test.host/authentications
|
37031
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
|
37032
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "authentications"
|
37033
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
37034
|
+
[1m[35m (0.0ms)[0m begin transaction
|
37035
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37036
|
+
[1m[35mAuthentication Load (0.0ms)[0m SELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1 [["id", 949717663]]
|
37037
|
+
Processing by Contour::AuthenticationsController#index as HTML
|
37038
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 201799169 LIMIT 1[0m
|
37039
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "authentications" WHERE "authentications"."user_id" = 201799169
|
37040
|
+
[1m[36mAuthentication Load (0.1ms)[0m [1mSELECT "authentications".* FROM "authentications" WHERE "authentications"."user_id" = 201799169[0m
|
37041
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/authentications/_index.html.erb (2.1ms)
|
37042
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_menu.html.erb (2.5ms)
|
37043
|
+
Completed 200 OK in 53ms (Views: 51.5ms | ActiveRecord: 0.3ms)
|
37044
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
37045
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
37046
|
+
Processing by Contour::PasswordsController#create as HTML
|
37047
|
+
Parameters: {"user"=>{"email"=>"valid@example.com"}}
|
37048
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'valid@example.com' LIMIT 1
|
37049
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'AyCz7xrzfse9MqvAxxRf' LIMIT 1[0m
|
37050
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37051
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "users" SET "reset_password_token" = 'AyCz7xrzfse9MqvAxxRf', "reset_password_sent_at" = '2012-05-29 19:27:52.908819', "updated_at" = '2012-05-29 19:27:52.909513' WHERE "users"."id" = 201799169[0m
|
37052
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37053
|
+
|
37054
|
+
Sent mail to valid@example.com (15ms)
|
37055
|
+
Date: Tue, 29 May 2012 15:27:52 -0400
|
37056
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
37057
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
37058
|
+
To: valid@example.com
|
37059
|
+
Message-ID: <4fc52338f14e3_11a0c3fc1f1834cd8225f9@edge.mail>
|
37060
|
+
Subject: Reset password instructions
|
37061
|
+
Mime-Version: 1.0
|
37062
|
+
Content-Type: text/html;
|
37063
|
+
charset=UTF-8
|
37064
|
+
Content-Transfer-Encoding: 7bit
|
37065
|
+
|
37066
|
+
<p>Hello valid@example.com!</p>
|
37067
|
+
|
37068
|
+
<p>Someone has requested a link to change your password, and you can do this through the link below.</p>
|
37069
|
+
|
37070
|
+
<p><a href="http://localhost:3000/users/password/edit?reset_password_token=AyCz7xrzfse9MqvAxxRf">Change my password</a></p>
|
37071
|
+
|
37072
|
+
<p>If you didn't request this, please ignore this email.</p>
|
37073
|
+
<p>Your password won't change until you access the link above and create a new one.</p>
|
37074
|
+
|
37075
|
+
Redirected to http://test.host/users/login
|
37076
|
+
Completed 302 Found in 99ms (ActiveRecord: 0.0ms)
|
37077
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
37078
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37079
|
+
Processing by Contour::PasswordsController#new as HTML
|
37080
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/_links.html.erb (1.6ms)
|
37081
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/authentications/_menu.html.erb (2.1ms)
|
37082
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_menu.html.erb (4.6ms)
|
37083
|
+
Completed 200 OK in 42ms (Views: 40.9ms | ActiveRecord: 0.0ms)
|
37084
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
37085
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37086
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
37087
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37088
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37089
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
|
37090
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 725306934]]
|
37091
|
+
|
37092
|
+
|
37093
|
+
Started GET "/logged_in_page" for 127.0.0.1 at 2012-05-29 15:27:53 -0400
|
37094
|
+
Processing by WelcomeController#logged_in_page as HTML
|
37095
|
+
Completed 401 Unauthorized in 1ms
|
37096
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
37097
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 FROM "users" WHERE "users"."email" = 'deleted-2@example.com' LIMIT 1[0m
|
37098
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
37099
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "deleted", "email", "encrypted_password", "first_name", "last_name", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "status", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 19:27:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["deleted", false], ["email", "deleted-2@example.com"], ["encrypted_password", "$2a$04$9ajw8d7lGmvUDpXbuJRQ..HhiBdcQH07TT/qmaCAbxg41N3UcYCZq"], ["first_name", "Deleted"], ["last_name", "User"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["status", "pending"], ["updated_at", Tue, 29 May 2012 19:27:53 UTC +00:00]]
|
37100
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37101
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37102
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "authentications" WHERE "authentications"."user_id" = 999914116[0m
|
37103
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37104
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
37105
|
+
[1m[35m (0.3ms)[0m UPDATE "users" SET "status" = 'active', "updated_at" = '2012-05-29 19:27:53.108988' WHERE "users"."id" = 999914116
|
37106
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37107
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37108
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "users" SET "deleted" = 't', "updated_at" = '2012-05-29 19:27:53.110199' WHERE "users"."id" = 999914116[0m
|
37109
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37110
|
+
|
37111
|
+
|
37112
|
+
Started POST "/users/login" for 127.0.0.1 at 2012-05-29 15:27:53 -0400
|
37113
|
+
Processing by Contour::SessionsController#create as HTML
|
37114
|
+
Parameters: {"user"=>{"email"=>"deleted-2@example.com", "password"=>"[FILTERED]"}}
|
37115
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'deleted-2@example.com' LIMIT 1[0m
|
37116
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
37117
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "users" SET "remember_created_at" = NULL, "updated_at" = '2012-05-29 19:27:53.121124' WHERE "users"."id" = 999914116[0m
|
37118
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37119
|
+
Completed 401 Unauthorized in 7ms
|
37120
|
+
|
37121
|
+
|
37122
|
+
Started GET "/users/login" for 127.0.0.1 at 2012-05-29 15:27:53 -0400
|
37123
|
+
Processing by Contour::SessionsController#new as HTML
|
37124
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/_links.html.erb (0.6ms)
|
37125
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_latest_news.html.erb (0.6ms)
|
37126
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/authentications/_menu.html.erb (29.2ms)
|
37127
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_menu.html.erb (31.0ms)
|
37128
|
+
Completed 200 OK in 42ms (Views: 40.9ms | ActiveRecord: 0.0ms)
|
37129
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
37130
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37131
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37132
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
|
37133
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 725306934]]
|
37134
|
+
|
37135
|
+
|
37136
|
+
Started GET "/logged_in_page" for 127.0.0.1 at 2012-05-29 15:27:53 -0400
|
37137
|
+
Processing by WelcomeController#logged_in_page as HTML
|
37138
|
+
Completed 401 Unauthorized in 0ms
|
37139
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
37140
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 FROM "users" WHERE "users"."email" = 'valid-2@example.com' LIMIT 1[0m
|
37141
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
37142
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "deleted", "email", "encrypted_password", "first_name", "last_name", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "status", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 19:27:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["deleted", false], ["email", "valid-2@example.com"], ["encrypted_password", "$2a$04$7tp9wUEIRaKfnxalfe.YIO3ts/uMTFAUXvm1TABSvxs4lYcSqiwLG"], ["first_name", "FirstName"], ["last_name", "LastName"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["status", "pending"], ["updated_at", Tue, 29 May 2012 19:27:53 UTC +00:00]]
|
37143
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37144
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37145
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "authentications" WHERE "authentications"."user_id" = 999914116[0m
|
37146
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37147
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
37148
|
+
[1m[35m (0.2ms)[0m UPDATE "users" SET "status" = 'active', "updated_at" = '2012-05-29 19:27:53.189706' WHERE "users"."id" = 999914116
|
37149
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37150
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37151
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37152
|
+
|
37153
|
+
|
37154
|
+
Started POST "/users/login" for 127.0.0.1 at 2012-05-29 15:27:53 -0400
|
37155
|
+
Processing by Contour::SessionsController#create as HTML
|
37156
|
+
Parameters: {"user"=>{"email"=>"valid-2@example.com", "password"=>"[FILTERED]"}}
|
37157
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'valid-2@example.com' LIMIT 1
|
37158
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
37159
|
+
[1m[35m (0.1ms)[0m UPDATE "users" SET "last_sign_in_at" = '2012-05-29 19:27:53.198344', "current_sign_in_at" = '2012-05-29 19:27:53.198344', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-05-29 19:27:53.198832' WHERE "users"."id" = 999914116
|
37160
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37161
|
+
Redirected to http://www.example.com/logged_in_page
|
37162
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
|
37163
|
+
|
37164
|
+
|
37165
|
+
Started GET "/logged_in_page" for 127.0.0.1 at 2012-05-29 15:27:53 -0400
|
37166
|
+
Processing by WelcomeController#logged_in_page as HTML
|
37167
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 999914116 LIMIT 1
|
37168
|
+
Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.1ms)
|
37169
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
37170
|
+
[1m[35m (0.0ms)[0m begin transaction
|
37171
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37172
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
|
37173
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 725306934]]
|
37174
|
+
|
37175
|
+
|
37176
|
+
Started GET "/logged_in_page" for 127.0.0.1 at 2012-05-29 15:27:53 -0400
|
37177
|
+
Processing by WelcomeController#logged_in_page as HTML
|
37178
|
+
Completed 401 Unauthorized in 0ms
|
37179
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
37180
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 FROM "users" WHERE "users"."email" = 'pending-2@example.com' LIMIT 1[0m
|
37181
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
37182
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "deleted", "email", "encrypted_password", "first_name", "last_name", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "status", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 19:27:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["deleted", false], ["email", "pending-2@example.com"], ["encrypted_password", "$2a$04$gwAWMNQdNfC.mHAQTfBda.sA951M3o8uhmRgOkONvgRvRFrHuNNrK"], ["first_name", "MyString"], ["last_name", "MyString"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["status", "pending"], ["updated_at", Tue, 29 May 2012 19:27:53 UTC +00:00]]
|
37183
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37184
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37185
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "authentications" WHERE "authentications"."user_id" = 999914116[0m
|
37186
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37187
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
37188
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37189
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
37190
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37191
|
+
|
37192
|
+
|
37193
|
+
Started POST "/users/login" for 127.0.0.1 at 2012-05-29 15:27:53 -0400
|
37194
|
+
Processing by Contour::SessionsController#create as HTML
|
37195
|
+
Parameters: {"user"=>{"email"=>"pending-2@example.com", "password"=>"[FILTERED]"}}
|
37196
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'pending-2@example.com' LIMIT 1[0m
|
37197
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37198
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "users" SET "remember_created_at" = NULL, "updated_at" = '2012-05-29 19:27:53.240878' WHERE "users"."id" = 999914116[0m
|
37199
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37200
|
+
Completed 401 Unauthorized in 5ms
|
37201
|
+
|
37202
|
+
|
37203
|
+
Started GET "/users/login" for 127.0.0.1 at 2012-05-29 15:27:53 -0400
|
37204
|
+
Processing by Contour::SessionsController#new as HTML
|
37205
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/_links.html.erb (0.5ms)
|
37206
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_latest_news.html.erb (0.2ms)
|
37207
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/authentications/_menu.html.erb (2.1ms)
|
37208
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_menu.html.erb (4.6ms)
|
37209
|
+
Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
|
37210
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
37211
|
+
[1m[35m (0.0ms)[0m begin transaction
|
37212
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37213
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
|
37214
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 725306934]]
|
37215
|
+
|
37216
|
+
|
37217
|
+
Started GET "/" for 127.0.0.1 at 2012-05-29 15:27:53 -0400
|
37218
|
+
Processing by WelcomeController#index as HTML
|
37219
|
+
Completed 401 Unauthorized in 1ms
|
37220
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
37221
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
37222
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
|
37223
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 349534908]]
|
37224
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 725306934]]
|
37225
|
+
|
37226
|
+
|
37227
|
+
Started GET "/logged_in_page.json" for 127.0.0.1 at 2012-05-29 15:27:53 -0400
|
37228
|
+
Processing by WelcomeController#logged_in_page as JSON
|
37229
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'valid@example.com' LIMIT 1[0m
|
37230
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
37231
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = '2012-05-29 19:27:53.353632', "current_sign_in_at" = '2012-05-29 19:27:53.353632', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-05-29 19:27:53.354292' WHERE "users"."id" = 201799169[0m
|
37232
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37233
|
+
Completed 200 OK in 80ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
37234
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
37235
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37236
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37237
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
|
37238
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 725306934]]
|
37239
|
+
|
37240
|
+
|
37241
|
+
Started GET "/logged_in_page.json" for 127.0.0.1 at 2012-05-29 15:27:53 -0400
|
37242
|
+
Processing by WelcomeController#logged_in_page as JSON
|
37243
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'valid@example.com' LIMIT 1
|
37244
|
+
Completed 401 Unauthorized in 77ms
|
37245
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
37246
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37247
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37248
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
37249
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
37250
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
|
37251
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
37252
|
+
Connecting to database specified by database.yml
|
37253
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
37254
|
+
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM "authentications"
|
37255
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "authentications" ("provider", "uid", "created_at", "updated_at", "id", "user_id") VALUES ('open_id', 'open_id@open_id.com', '2012-05-29 19:35:39', '2012-05-29 19:35:39', 949717663, 201799169)[0m
|
37256
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "authentications" ("provider", "uid", "created_at", "updated_at", "id", "user_id") VALUES ('google_apps', 'test@gmail.com', '2012-05-29 19:35:39', '2012-05-29 19:35:39', 876923740, 201799169)
|
37257
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "authentications" ("provider", "uid", "created_at", "updated_at", "id", "user_id") VALUES ('ldap', 'CN=ldapid,CN=Users,DC=example,DC=com', '2012-05-29 19:35:39', '2012-05-29 19:35:39', 864673665, 201799169)[0m
|
37258
|
+
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "users"
|
37259
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "users" ("first_name", "last_name", "status", "deleted", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "created_at", "updated_at", "id") VALUES ('FirstName', 'LastName', 'active', 'f', 'valid@example.com', '$2a$10$ZgXIxDCn.TjuCgsnS9iEp.Z1LlmQ71FGKgZe/kdCaVvgvnAAcUaz2', 'ResetTokenOne', 'MyDate', 'MyDate', 0, 'MyDate', 'MyDate', 'MyString', 'MyString', '2012-05-29 19:35:39', '2012-05-29 19:35:39', 201799169)[0m
|
37260
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "users" ("first_name", "last_name", "status", "deleted", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'inactive', 'f', 'EmailTwo', 'MyString', 'ResetTokenTwo', 'MyDate', 'MyDate', 0, 'MyDate', 'MyDate', 'MyString', 'MyString', '2012-05-29 19:35:39', '2012-05-29 19:35:39', 999914115)
|
37261
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "users" ("first_name", "last_name", "status", "deleted", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "created_at", "updated_at", "id") VALUES ('Deleted', 'User', 'active', 't', 'deleted@example.com', 'MyString', 'ResetTokenFive', 'MyDate', '2011-02-23', 0, '2011-02-23', '2011-02-23', 'MyString', 'MyString', '2012-05-29 19:35:39', '2012-05-29 19:35:39', 725306934)[0m
|
37262
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "users" ("first_name", "last_name", "status", "deleted", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'pending', 'f', 'pending@example.com', 'MyString', 'ResetTokenFour', 'MyDate', '2011-02-23', 0, '2011-02-23', '2011-02-23', 'MyString', 'MyString', '2012-05-29 19:35:39', '2012-05-29 19:35:39', 349534908)
|
37263
|
+
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
|
37264
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37265
|
+
[1m[36mAuthentication Load (0.4ms)[0m [1mSELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1[0m [["id", 876923740]]
|
37266
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
37267
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
37268
|
+
[1m[35mAuthentication Load (0.2ms)[0m SELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1 [["id", 949717663]]
|
37269
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
37270
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37271
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37272
|
+
[1m[35mAuthentication Load (0.1ms)[0m SELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1 [["id", 949717663]]
|
37273
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "authentications" [0m
|
37274
|
+
Processing by Contour::AuthenticationsController#create as HTML
|
37275
|
+
Parameters: {"authentication"=>{"id"=>"949717663", "user_id"=>"201799169", "provider"=>"open_id", "uid"=>"open_id@open_id.com", "created_at"=>"2012-05-29 19:35:39 UTC", "updated_at"=>"2012-05-29 19:35:39 UTC"}}
|
37276
|
+
[1m[35mAuthentication Load (0.1ms)[0m SELECT "authentications".* FROM "authentications" WHERE "authentications"."provider" = 'google_apps' AND "authentications"."uid" = 'test@example.com' LIMIT 1
|
37277
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 201799169 LIMIT 1[0m
|
37278
|
+
Logged in user found, creating associated authentication.
|
37279
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
37280
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "authentications" ("created_at", "provider", "uid", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 29 May 2012 19:35:39 UTC +00:00], ["provider", "google_apps"], ["uid", "test@example.com"], ["updated_at", Tue, 29 May 2012 19:35:39 UTC +00:00], ["user_id", 201799169]]
|
37281
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
37282
|
+
Redirected to http://test.host/authentications
|
37283
|
+
Completed 302 Found in 54ms (ActiveRecord: 0.9ms)
|
37284
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "authentications" [0m
|
37285
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
37286
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
37287
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
|
37288
|
+
[1m[36mAuthentication Load (0.0ms)[0m [1mSELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1[0m [["id", 949717663]]
|
37289
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "authentications"
|
37290
|
+
Processing by Contour::AuthenticationsController#destroy as HTML
|
37291
|
+
Parameters: {"id"=>"949717663"}
|
37292
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 201799169 LIMIT 1[0m
|
37293
|
+
[1m[35mAuthentication Load (0.1ms)[0m SELECT "authentications".* FROM "authentications" WHERE "authentications"."user_id" = 201799169 AND "authentications"."id" = ? LIMIT 1 [["id", "949717663"]]
|
37294
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
37295
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "authentications" WHERE "authentications"."id" = ? [["id", 949717663]]
|
37296
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37297
|
+
Redirected to http://test.host/authentications
|
37298
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
|
37299
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "authentications"
|
37300
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
37301
|
+
[1m[35m (0.0ms)[0m begin transaction
|
37302
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37303
|
+
[1m[35mAuthentication Load (0.0ms)[0m SELECT "authentications".* FROM "authentications" WHERE "authentications"."id" = ? LIMIT 1 [["id", 949717663]]
|
37304
|
+
Processing by Contour::AuthenticationsController#index as HTML
|
37305
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 201799169 LIMIT 1[0m
|
37306
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "authentications" WHERE "authentications"."user_id" = 201799169
|
37307
|
+
[1m[36mAuthentication Load (0.1ms)[0m [1mSELECT "authentications".* FROM "authentications" WHERE "authentications"."user_id" = 201799169[0m
|
37308
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/authentications/_index.html.erb (2.1ms)
|
37309
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_menu.html.erb (2.9ms)
|
37310
|
+
Completed 200 OK in 28ms (Views: 25.9ms | ActiveRecord: 0.3ms)
|
37311
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
37312
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
37313
|
+
Processing by Contour::PasswordsController#create as HTML
|
37314
|
+
Parameters: {"user"=>{"email"=>"valid@example.com"}}
|
37315
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'valid@example.com' LIMIT 1
|
37316
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'LoepoixPNWvzBCxi5y4T' LIMIT 1[0m
|
37317
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37318
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "users" SET "reset_password_token" = 'LoepoixPNWvzBCxi5y4T', "reset_password_sent_at" = '2012-05-29 19:35:39.472711', "updated_at" = '2012-05-29 19:35:39.473528' WHERE "users"."id" = 201799169[0m
|
37319
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37320
|
+
|
37321
|
+
Sent mail to valid@example.com (43ms)
|
37322
|
+
Date: Tue, 29 May 2012 15:35:39 -0400
|
37323
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
37324
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
37325
|
+
To: valid@example.com
|
37326
|
+
Message-ID: <4fc5250b84fea_11a8c3fdefa034cd877448@edge.mail>
|
37327
|
+
Subject: Reset password instructions
|
37328
|
+
Mime-Version: 1.0
|
37329
|
+
Content-Type: text/html;
|
37330
|
+
charset=UTF-8
|
37331
|
+
Content-Transfer-Encoding: 7bit
|
37332
|
+
|
37333
|
+
<p>Hello valid@example.com!</p>
|
37334
|
+
|
37335
|
+
<p>Someone has requested a link to change your password, and you can do this through the link below.</p>
|
37336
|
+
|
37337
|
+
<p><a href="http://localhost:3000/users/password/edit?reset_password_token=LoepoixPNWvzBCxi5y4T">Change my password</a></p>
|
37338
|
+
|
37339
|
+
<p>If you didn't request this, please ignore this email.</p>
|
37340
|
+
<p>Your password won't change until you access the link above and create a new one.</p>
|
37341
|
+
|
37342
|
+
Redirected to http://test.host/users/login
|
37343
|
+
Completed 302 Found in 118ms (ActiveRecord: 0.0ms)
|
37344
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
37345
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37346
|
+
Processing by Contour::PasswordsController#new as HTML
|
37347
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/_links.html.erb (1.7ms)
|
37348
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/authentications/_menu.html.erb (2.0ms)
|
37349
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_menu.html.erb (4.4ms)
|
37350
|
+
Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.0ms)
|
37351
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
37352
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37353
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
37354
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37355
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37356
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
|
37357
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 725306934]]
|
37358
|
+
|
37359
|
+
|
37360
|
+
Started GET "/logged_in_page" for 127.0.0.1 at 2012-05-29 15:35:39 -0400
|
37361
|
+
Processing by WelcomeController#logged_in_page as HTML
|
37362
|
+
Completed 401 Unauthorized in 1ms
|
37363
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
37364
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 FROM "users" WHERE "users"."email" = 'deleted-2@example.com' LIMIT 1[0m
|
37365
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
37366
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "deleted", "email", "encrypted_password", "first_name", "last_name", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "status", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 19:35:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["deleted", false], ["email", "deleted-2@example.com"], ["encrypted_password", "$2a$04$2.RBc5WnvPRFFxzsmQqvt.y4IgidQO0X26KvvlKyrdxWPgt7YW4eq"], ["first_name", "Deleted"], ["last_name", "User"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["status", "pending"], ["updated_at", Tue, 29 May 2012 19:35:39 UTC +00:00]]
|
37367
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37368
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37369
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "authentications" WHERE "authentications"."user_id" = 999914116[0m
|
37370
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37371
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
37372
|
+
[1m[35m (0.4ms)[0m UPDATE "users" SET "status" = 'active', "updated_at" = '2012-05-29 19:35:39.677286' WHERE "users"."id" = 999914116
|
37373
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37374
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37375
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "users" SET "deleted" = 't', "updated_at" = '2012-05-29 19:35:39.679113' WHERE "users"."id" = 999914116[0m
|
37376
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37377
|
+
|
37378
|
+
|
37379
|
+
Started POST "/users/login" for 127.0.0.1 at 2012-05-29 15:35:39 -0400
|
37380
|
+
Processing by Contour::SessionsController#create as HTML
|
37381
|
+
Parameters: {"user"=>{"email"=>"deleted-2@example.com", "password"=>"[FILTERED]"}}
|
37382
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'deleted-2@example.com' LIMIT 1[0m
|
37383
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
37384
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "users" SET "remember_created_at" = NULL, "updated_at" = '2012-05-29 19:35:39.693518' WHERE "users"."id" = 999914116[0m
|
37385
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37386
|
+
Completed 401 Unauthorized in 10ms
|
37387
|
+
|
37388
|
+
|
37389
|
+
Started GET "/users/login" for 127.0.0.1 at 2012-05-29 15:35:39 -0400
|
37390
|
+
Processing by Contour::SessionsController#new as HTML
|
37391
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/_links.html.erb (0.7ms)
|
37392
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_latest_news.html.erb (0.8ms)
|
37393
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/authentications/_menu.html.erb (2.1ms)
|
37394
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_menu.html.erb (4.5ms)
|
37395
|
+
Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.0ms)
|
37396
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
37397
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37398
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37399
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
|
37400
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 725306934]]
|
37401
|
+
|
37402
|
+
|
37403
|
+
Started GET "/logged_in_page" for 127.0.0.1 at 2012-05-29 15:35:39 -0400
|
37404
|
+
Processing by WelcomeController#logged_in_page as HTML
|
37405
|
+
Completed 401 Unauthorized in 1ms
|
37406
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
37407
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 FROM "users" WHERE "users"."email" = 'valid-2@example.com' LIMIT 1[0m
|
37408
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
37409
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "deleted", "email", "encrypted_password", "first_name", "last_name", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "status", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 19:35:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["deleted", false], ["email", "valid-2@example.com"], ["encrypted_password", "$2a$04$RycSWHLc0X3fDNV0J2GEjeOaz2VKuFBGIEDN4AocFqHPLmJ.E5YkC"], ["first_name", "FirstName"], ["last_name", "LastName"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["status", "pending"], ["updated_at", Tue, 29 May 2012 19:35:39 UTC +00:00]]
|
37410
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37411
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37412
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "authentications" WHERE "authentications"."user_id" = 999914116[0m
|
37413
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37414
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
37415
|
+
[1m[35m (0.3ms)[0m UPDATE "users" SET "status" = 'active', "updated_at" = '2012-05-29 19:35:39.747343' WHERE "users"."id" = 999914116
|
37416
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37417
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37418
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37419
|
+
|
37420
|
+
|
37421
|
+
Started POST "/users/login" for 127.0.0.1 at 2012-05-29 15:35:39 -0400
|
37422
|
+
Processing by Contour::SessionsController#create as HTML
|
37423
|
+
Parameters: {"user"=>{"email"=>"valid-2@example.com", "password"=>"[FILTERED]"}}
|
37424
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'valid-2@example.com' LIMIT 1
|
37425
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
37426
|
+
[1m[35m (0.1ms)[0m UPDATE "users" SET "last_sign_in_at" = '2012-05-29 19:35:39.757756', "current_sign_in_at" = '2012-05-29 19:35:39.757756', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-05-29 19:35:39.758275' WHERE "users"."id" = 999914116
|
37427
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37428
|
+
Redirected to http://www.example.com/logged_in_page
|
37429
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
|
37430
|
+
|
37431
|
+
|
37432
|
+
Started GET "/logged_in_page" for 127.0.0.1 at 2012-05-29 15:35:39 -0400
|
37433
|
+
Processing by WelcomeController#logged_in_page as HTML
|
37434
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 999914116 LIMIT 1
|
37435
|
+
Completed 200 OK in 5ms (Views: 3.4ms | ActiveRecord: 0.2ms)
|
37436
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
37437
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37438
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37439
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
|
37440
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 725306934]]
|
37441
|
+
|
37442
|
+
|
37443
|
+
Started GET "/logged_in_page" for 127.0.0.1 at 2012-05-29 15:35:39 -0400
|
37444
|
+
Processing by WelcomeController#logged_in_page as HTML
|
37445
|
+
Completed 401 Unauthorized in 1ms
|
37446
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
37447
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 FROM "users" WHERE "users"."email" = 'pending-2@example.com' LIMIT 1[0m
|
37448
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
37449
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "deleted", "email", "encrypted_password", "first_name", "last_name", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "status", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 19:35:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["deleted", false], ["email", "pending-2@example.com"], ["encrypted_password", "$2a$04$QpM4Eu14WXrcTFB5MAX1zO4tfoGgCY44kW3/SKoExb4WcJeeLnXGe"], ["first_name", "MyString"], ["last_name", "MyString"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["status", "pending"], ["updated_at", Tue, 29 May 2012 19:35:39 UTC +00:00]]
|
37450
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
37451
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37452
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "authentications" WHERE "authentications"."user_id" = 999914116[0m
|
37453
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
37454
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
37455
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37456
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
37457
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37458
|
+
|
37459
|
+
|
37460
|
+
Started POST "/users/login" for 127.0.0.1 at 2012-05-29 15:35:39 -0400
|
37461
|
+
Processing by Contour::SessionsController#create as HTML
|
37462
|
+
Parameters: {"user"=>{"email"=>"pending-2@example.com", "password"=>"[FILTERED]"}}
|
37463
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'pending-2@example.com' LIMIT 1[0m
|
37464
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
37465
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "users" SET "remember_created_at" = NULL, "updated_at" = '2012-05-29 19:35:39.813618' WHERE "users"."id" = 999914116[0m
|
37466
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
37467
|
+
Completed 401 Unauthorized in 9ms
|
37468
|
+
|
37469
|
+
|
37470
|
+
Started GET "/users/login" for 127.0.0.1 at 2012-05-29 15:35:39 -0400
|
37471
|
+
Processing by Contour::SessionsController#new as HTML
|
37472
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/_links.html.erb (0.6ms)
|
37473
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_latest_news.html.erb (0.1ms)
|
37474
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/authentications/_menu.html.erb (2.4ms)
|
37475
|
+
Rendered /Users/remo/code/ruby/gems/contour/app/views/contour/layouts/_menu.html.erb (4.9ms)
|
37476
|
+
Completed 200 OK in 58ms (Views: 56.8ms | ActiveRecord: 0.0ms)
|
37477
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
37478
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37479
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37480
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
|
37481
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 725306934]]
|
37482
|
+
|
37483
|
+
|
37484
|
+
Started GET "/" for 127.0.0.1 at 2012-05-29 15:35:39 -0400
|
37485
|
+
Processing by WelcomeController#index as HTML
|
37486
|
+
Completed 401 Unauthorized in 1ms
|
37487
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
37488
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
37489
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
|
37490
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 349534908]]
|
37491
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 725306934]]
|
37492
|
+
|
37493
|
+
|
37494
|
+
Started GET "/logged_in_page.json" for 127.0.0.1 at 2012-05-29 15:35:39 -0400
|
37495
|
+
Processing by WelcomeController#logged_in_page as JSON
|
37496
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'valid@example.com' LIMIT 1[0m
|
37497
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
37498
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = '2012-05-29 19:35:39.991767', "current_sign_in_at" = '2012-05-29 19:35:39.991767', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-05-29 19:35:39.992621' WHERE "users"."id" = 201799169[0m
|
37499
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
37500
|
+
Completed 200 OK in 91ms (Views: 0.2ms | ActiveRecord: 0.6ms)
|
37501
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
37502
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37503
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37504
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 349534908]]
|
37505
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 725306934]]
|
37506
|
+
|
37507
|
+
|
37508
|
+
Started GET "/logged_in_page.json" for 127.0.0.1 at 2012-05-29 15:35:40 -0400
|
37509
|
+
Processing by WelcomeController#logged_in_page as JSON
|
37510
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'valid@example.com' LIMIT 1
|
37511
|
+
Completed 401 Unauthorized in 83ms
|
37512
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
37513
|
+
[1m[35m (0.1ms)[0m begin transaction
|
37514
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 201799169]]
|
37515
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
37516
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
37517
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 201799169]]
|
37518
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: contour
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc2
|
5
5
|
prerelease: 6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,22 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-05-
|
12
|
+
date: 2012-05-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
|
-
requirement: &
|
16
|
+
requirement: &70126687862820 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.2.
|
21
|
+
version: 3.2.4.rc1
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70126687862820
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: jquery-rails
|
27
|
-
requirement: &
|
27
|
+
requirement: &70126687862300 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 2.0.2
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70126687862300
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: devise
|
38
|
-
requirement: &
|
38
|
+
requirement: &70126687861640 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ~>
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: 2.1.0
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *70126687861640
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: omniauth
|
49
|
-
requirement: &
|
49
|
+
requirement: &70126687861040 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ~>
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: 1.1.0
|
55
55
|
type: :runtime
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *70126687861040
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: omniauth-cas
|
60
|
-
requirement: &
|
60
|
+
requirement: &70126687860220 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ~>
|
@@ -65,10 +65,10 @@ dependencies:
|
|
65
65
|
version: 0.0.7
|
66
66
|
type: :runtime
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *70126687860220
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: omniauth-facebook
|
71
|
-
requirement: &
|
71
|
+
requirement: &70126687859720 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
74
|
- - ~>
|
@@ -76,10 +76,10 @@ dependencies:
|
|
76
76
|
version: 1.3.0
|
77
77
|
type: :runtime
|
78
78
|
prerelease: false
|
79
|
-
version_requirements: *
|
79
|
+
version_requirements: *70126687859720
|
80
80
|
- !ruby/object:Gem::Dependency
|
81
81
|
name: omniauth-ldap
|
82
|
-
requirement: &
|
82
|
+
requirement: &70126687859260 !ruby/object:Gem::Requirement
|
83
83
|
none: false
|
84
84
|
requirements:
|
85
85
|
- - ~>
|
@@ -87,10 +87,10 @@ dependencies:
|
|
87
87
|
version: 1.0.2
|
88
88
|
type: :runtime
|
89
89
|
prerelease: false
|
90
|
-
version_requirements: *
|
90
|
+
version_requirements: *70126687859260
|
91
91
|
- !ruby/object:Gem::Dependency
|
92
92
|
name: omniauth-linkedin
|
93
|
-
requirement: &
|
93
|
+
requirement: &70126687785220 !ruby/object:Gem::Requirement
|
94
94
|
none: false
|
95
95
|
requirements:
|
96
96
|
- - ~>
|
@@ -98,10 +98,10 @@ dependencies:
|
|
98
98
|
version: 0.0.6
|
99
99
|
type: :runtime
|
100
100
|
prerelease: false
|
101
|
-
version_requirements: *
|
101
|
+
version_requirements: *70126687785220
|
102
102
|
- !ruby/object:Gem::Dependency
|
103
103
|
name: omniauth-openid
|
104
|
-
requirement: &
|
104
|
+
requirement: &70126687784760 !ruby/object:Gem::Requirement
|
105
105
|
none: false
|
106
106
|
requirements:
|
107
107
|
- - ~>
|
@@ -109,10 +109,10 @@ dependencies:
|
|
109
109
|
version: 1.0.1
|
110
110
|
type: :runtime
|
111
111
|
prerelease: false
|
112
|
-
version_requirements: *
|
112
|
+
version_requirements: *70126687784760
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: omniauth-twitter
|
115
|
-
requirement: &
|
115
|
+
requirement: &70126687784240 !ruby/object:Gem::Requirement
|
116
116
|
none: false
|
117
117
|
requirements:
|
118
118
|
- - ~>
|
@@ -120,10 +120,10 @@ dependencies:
|
|
120
120
|
version: 0.0.11
|
121
121
|
type: :runtime
|
122
122
|
prerelease: false
|
123
|
-
version_requirements: *
|
123
|
+
version_requirements: *70126687784240
|
124
124
|
- !ruby/object:Gem::Dependency
|
125
125
|
name: sqlite3
|
126
|
-
requirement: &
|
126
|
+
requirement: &70126687783860 !ruby/object:Gem::Requirement
|
127
127
|
none: false
|
128
128
|
requirements:
|
129
129
|
- - ! '>='
|
@@ -131,7 +131,7 @@ dependencies:
|
|
131
131
|
version: '0'
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
|
-
version_requirements: *
|
134
|
+
version_requirements: *70126687783860
|
135
135
|
description: Basic Rails Framework files and assets for layout and authentication
|
136
136
|
email: remosm@gmail.com
|
137
137
|
executables: []
|