clearance_http_auth 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -1,17 +1,16 @@
1
1
  # encoding: UTF-8
2
2
  require 'rubygems'
3
3
  begin
4
- require 'bundler/setup'
4
+ require 'bundler'
5
+ Bundler::GemHelper.install_tasks
5
6
  rescue LoadError
6
7
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
7
8
  end
8
9
 
9
10
  require 'rake'
10
- require 'rake/rdoctask'
11
+ require 'rdoc/task'
11
12
  require 'rake/testtask'
12
13
 
13
- Bundler::GemHelper.install_tasks
14
-
15
14
  task :default => :test
16
15
 
17
16
  Rake::TestTask.new(:test) do |test|
@@ -1,5 +1,5 @@
1
1
  module Clearance
2
2
  module HttpAuth
3
- VERSION = "0.2.0"
3
+ VERSION = "0.3.0"
4
4
  end
5
5
  end
@@ -1,5 +1,5 @@
1
1
  class EntrancesController < ApplicationController
2
- before_filter :authenticate
2
+ before_filter :authorize
3
3
 
4
4
  respond_to :html, :json, :xml
5
5
 
@@ -7,6 +7,7 @@ require "action_view/railtie"
7
7
  require "action_mailer/railtie"
8
8
 
9
9
  Bundler.require
10
+ require "clearance"
10
11
  require "clearance_http_auth"
11
12
 
12
13
  module Dummy
@@ -9684,3 +9684,770 @@ Started GET "/" for 127.0.0.1 at Sat Mar 12 17:15:58 +0100 2011
9684
9684
  #<User id: 1, email: "test@example.com", encrypted_password: "635719ac8aef01b7f2975ebf8e7cbe01bcd64c35", salt: "d7fa5f49879eb03db571b62149ade081fd819291", confirmation_token: "f65ab6f86d7fc232a3f8eb60b1cd893eace3e814", remember_token: "a8439016de823df2c74412dcb5233c4914bc2cc6", email_confirmed: true, created_at: "2011-03-12 16:15:58", updated_at: "2011-03-12 16:15:58">
9685
9685
  Rendered text template (0.0ms)
9686
9686
  Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.9ms)
9687
+ SQL (0.8ms)  SELECT name
9688
+ FROM sqlite_master
9689
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
9690
+ 
9691
+ SQL (0.1ms) SELECT name
9692
+ FROM sqlite_master
9693
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
9694
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
9695
+ Migrating to ClearanceCreateUsers (20101221153914)
9696
+ User Load (0.5ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9697
+ AREL (1.6ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:32:08.353174', '2baec79d7a2d654ab24c71a817a9d4b749d29241', 't', 'b9f5529c7a897076277189cd678909423db3bf63', 'a1a5b6532ccb2f15812a7ecce0694f58f793e902', '2011-06-07 14:32:08.353174', 'test@example.com', '25c9f6663bf578594f4c77f5f10ef84465341de9')
9698
+
9699
+
9700
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9701
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9702
+ User Load (0.1ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9703
+ AREL (0.3ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:32:08.385896', 'ed32c33a64ce2762e419960c162e06b4038bfe01', 't', '11ca3af4981f34895cb9f05c6ec81080ed78a9ad', '9b4ddd1606764d37efb33c0a7459d6c3491d0199', '2011-06-07 14:32:08.385896', 'test@example.com', '7cdbc9d8450e19b88120f9dfb682ab202ba8127e')
9704
+
9705
+
9706
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9707
+ User Load (0.1ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9708
+ AREL (0.3ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:32:08.391093', '3498f4cfc68cdbdc4d829e72be1ac18217e2a25a', 't', 'd999bef89215e079758d842aaa91831972432838', '1bdb72284ed673aa2627cafebf7a5b0e853c5ec0', '2011-06-07 14:32:08.391093', 'test@example.com', 'ff267a6b0af6a0511caf5e52aa1a0e6d333c62dc')
9709
+
9710
+
9711
+ Started POST "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9712
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9713
+ Processing by EntrancesController#create as JSON
9714
+ Completed 201 Created in 10ms (Views: 9.2ms | ActiveRecord: 4.4ms)
9715
+ User Load (0.1ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9716
+ AREL (0.5ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:32:08.418001', '19d3d3dd89bbfbd0a768db28d071214228971e40', 't', '7cf05e525a8093271f082f5587ae4e25cd193636', 'd4f37d638c379f268ac0d97179b284eafe99ba04', '2011-06-07 14:32:08.418001', 'test@example.com', 'a556b1e70e011d48cb70e05b926b5c86f6ec6dc2')
9717
+
9718
+
9719
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9720
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9721
+ Processing by EntrancesController#index as JSON
9722
+ #<User id: 1, email: "test@example.com", encrypted_password: "d4f37d638c379f268ac0d97179b284eafe99ba04", salt: "a556b1e70e011d48cb70e05b926b5c86f6ec6dc2", confirmation_token: "19d3d3dd89bbfbd0a768db28d071214228971e40", remember_token: "7cf05e525a8093271f082f5587ae4e25cd193636", email_confirmed: true, created_at: "2011-06-07 14:32:08", updated_at: "2011-06-07 14:32:08">
9723
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.9ms)
9724
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9725
+ AREL (0.3ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:32:08.431792', '53e90c6daff92139aa0526a90a15f79f97262c8b', 't', '4bcdfbae3b42b7682778c46786fe1038c24bf19c', '26fb77c87b38f42c290e6e6ba29cfe2c81e94f7f', '2011-06-07 14:32:08.431792', 'test@example.com', '9e86554f2cda009c6466a9ece511485e21dc203c')
9726
+
9727
+
9728
+ Started GET "/entrances.csv" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9729
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9730
+ Processing by EntrancesController#index as CSV
9731
+ #<User id: 1, email: "test@example.com", encrypted_password: "26fb77c87b38f42c290e6e6ba29cfe2c81e94f7f", salt: "9e86554f2cda009c6466a9ece511485e21dc203c", confirmation_token: "53e90c6daff92139aa0526a90a15f79f97262c8b", remember_token: "4bcdfbae3b42b7682778c46786fe1038c24bf19c", email_confirmed: true, created_at: "2011-06-07 14:32:08", updated_at: "2011-06-07 14:32:08">
9732
+ Rendered text template (0.0ms)
9733
+ Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.7ms)
9734
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9735
+ AREL (0.4ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:32:08.445678', '40aafc22b690b8c1446d1e9600cdeb922285f410', 't', '62d5632b3005d3413e9c1b92f0dd9b97f031db0b', '0dbc827b672065ae3d875f2cad135d9b25773bbc', '2011-06-07 14:32:08.445678', 'test@example.com', 'fdd1712de0b9b37e7a480eb898c8d54d258611f9')
9736
+
9737
+
9738
+ Started GET "/entrances.santa" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9739
+ Processing by EntrancesController#index as
9740
+ Redirected to http://example.org/sign_in
9741
+ Completed 302 Found in 1ms
9742
+
9743
+
9744
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9745
+ Processing by Clearance::SessionsController#new as HTML
9746
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (98.9ms)
9747
+ Completed 200 OK in 112ms (Views: 111.7ms | ActiveRecord: 0.5ms)
9748
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9749
+ AREL (0.4ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:32:08.572367', 'bf4df61d09695ceeea99fb3525d161e508b40bc0', 't', 'd1c317ede677a8e74bbf41076b83c7d80b4a2899', '91f1de64711d6887c17d689f679565d7ee13265f', '2011-06-07 14:32:08.572367', 'test@example.com', '5c5e919d9015db36ee1281c460112cd716044f3f')
9750
+
9751
+
9752
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9753
+ Processing by EntrancesController#index as HTML
9754
+ Redirected to http://www.example.com/sign_in
9755
+ Completed 302 Found in 1ms
9756
+
9757
+
9758
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9759
+ Processing by Clearance::SessionsController#new as HTML
9760
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (3.5ms)
9761
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.5ms)
9762
+
9763
+
9764
+ Started POST "/session" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9765
+ Processing by Clearance::SessionsController#create as HTML
9766
+ Parameters: {"commit"=>"Sign in", "session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "utf8"=>"✓"}
9767
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9768
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (3.7ms)
9769
+ Completed 401 Unauthorized in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)
9770
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9771
+ AREL (0.4ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:32:08.635648', '1ee4eff0c8a7ca65e09f73a92971dd255d48599c', 't', '0d15d56c04bf7b8a8389c4049ab5e41086634524', '55e77f784ff75fb1a5ed59522f5fe42cd97e0615', '2011-06-07 14:32:08.635648', 'test@example.com', 'bc16f9e4829ca279585e5f13e2602573d88055f2')
9772
+
9773
+
9774
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9775
+ Processing by EntrancesController#index as HTML
9776
+ Redirected to http://www.example.com/sign_in
9777
+ Completed 302 Found in 1ms
9778
+
9779
+
9780
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9781
+ Processing by Clearance::SessionsController#new as HTML
9782
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (3.4ms)
9783
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.6ms)
9784
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9785
+ AREL (0.3ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:32:08.653936', 'f3e06e3233317c3bf317bb9e7ff749865a282f7e', 't', '2187777e3663851bcc0817184eeb3c05a7cbe1c9', 'd2cfb55f29ab30ee8406fcb039f09c9f67897d15', '2011-06-07 14:32:08.653936', 'test@example.com', '2eb1c215a21ab752b990b2b1f95003468256d8ac')
9786
+
9787
+
9788
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9789
+ Processing by EntrancesController#index as HTML
9790
+ Redirected to http://www.example.com/sign_in
9791
+ Completed 302 Found in 1ms
9792
+
9793
+
9794
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9795
+ Processing by Clearance::SessionsController#new as HTML
9796
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (3.6ms)
9797
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.5ms)
9798
+
9799
+
9800
+ Started POST "/session" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9801
+ Processing by Clearance::SessionsController#create as HTML
9802
+ Parameters: {"commit"=>"Sign in", "session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "utf8"=>"✓"}
9803
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9804
+ Redirected to http://www.example.com/
9805
+ Completed 302 Found in 5ms
9806
+
9807
+
9808
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:32:08 +0200 2011
9809
+ Processing by EntrancesController#index as HTML
9810
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = '2187777e3663851bcc0817184eeb3c05a7cbe1c9') LIMIT 1
9811
+ #<User id: 1, email: "test@example.com", encrypted_password: "d2cfb55f29ab30ee8406fcb039f09c9f67897d15", salt: "2eb1c215a21ab752b990b2b1f95003468256d8ac", confirmation_token: "f3e06e3233317c3bf317bb9e7ff749865a282f7e", remember_token: "2187777e3663851bcc0817184eeb3c05a7cbe1c9", email_confirmed: true, created_at: "2011-06-07 14:32:08", updated_at: "2011-06-07 14:32:08">
9812
+ Rendered text template (0.0ms)
9813
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.5ms)
9814
+ SQL (0.5ms)  SELECT name
9815
+ FROM sqlite_master
9816
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
9817
+ 
9818
+ SQL (0.1ms) SELECT name
9819
+ FROM sqlite_master
9820
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
9821
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
9822
+ Migrating to ClearanceCreateUsers (20101221153914)
9823
+ User Load (0.7ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9824
+ AREL (1.7ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:33:32.923443', 'ff39ddd8f07b2dc38682ab24c9fb9ad6601dde68', 't', '4e7f01969db19e144602a2f17da69e1a2ae1bfc0', '205badb5f277b587b663263292d68b74dcf38a93', '2011-06-07 14:33:32.923443', 'test@example.com', 'ecb021074697c74d726bf49e5c302362e04e6e5b')
9825
+
9826
+
9827
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:33:32 +0200 2011
9828
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9829
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9830
+ AREL (0.4ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:33:32.990268', '8afd4c4fe52a672b6d869892310f937e7b0a1082', 't', 'f75c68e3bac7f858a0d4869d0e49e63e5fd4c343', '7e51740ca74bc7d12e0d3c90afd954a7f63daf9d', '2011-06-07 14:33:32.990268', 'test@example.com', '34d7a9212f7ffcf601f8865aac9ab4d6165816be')
9831
+
9832
+
9833
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:33:32 +0200 2011
9834
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9835
+ AREL (0.4ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:33:32.996767', 'c993bb0dc26f5feb9710c189e08dc018a28dd4d3', 't', '1487cee8a497197d543955118be0343b9c42e199', 'b53e4d24ff04ef882d06adcc223b3c79d0019b33', '2011-06-07 14:33:32.996767', 'test@example.com', '4efb989b6ca431e58b086cc60afd0f882c20d713')
9836
+
9837
+
9838
+ Started POST "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:33:32 +0200 2011
9839
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9840
+ Processing by EntrancesController#create as JSON
9841
+ Completed 201 Created in 11ms (Views: 9.5ms | ActiveRecord: 4.8ms)
9842
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9843
+ AREL (0.4ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:33:33.033516', '23d3e840876f9f67475014ba4a6543cfd96c7add', 't', '9592a17bb573224163b0d5b7f4e2626d981f6493', '8e9470365a447c6549041d3d855514359643cc14', '2011-06-07 14:33:33.033516', 'test@example.com', 'd8832928254a3beae1970dd4df133358d9e873c3')
9844
+
9845
+
9846
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:33:33 +0200 2011
9847
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9848
+ Processing by EntrancesController#index as JSON
9849
+ #<User id: 1, email: "test@example.com", encrypted_password: "8e9470365a447c6549041d3d855514359643cc14", salt: "d8832928254a3beae1970dd4df133358d9e873c3", confirmation_token: "23d3e840876f9f67475014ba4a6543cfd96c7add", remember_token: "9592a17bb573224163b0d5b7f4e2626d981f6493", email_confirmed: true, created_at: "2011-06-07 14:33:33", updated_at: "2011-06-07 14:33:33">
9850
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.7ms)
9851
+ User Load (0.1ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9852
+ AREL (0.4ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:33:33.044676', '9c2c9988870e0640f64d9b49a3a2d7bb11ddfd34', 't', '3bd0f7eab3da8ba3cebeb7059f0fcb2a835524bf', 'bdfe3f3137165ea3d385b47707ce3c9e927c8dce', '2011-06-07 14:33:33.044676', 'test@example.com', '68511f464b689e25e079d8f56fb481e5855ec2ee')
9853
+
9854
+
9855
+ Started GET "/entrances.csv" for 127.0.0.1 at Tue Jun 07 16:33:33 +0200 2011
9856
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9857
+ Processing by EntrancesController#index as CSV
9858
+ #<User id: 1, email: "test@example.com", encrypted_password: "bdfe3f3137165ea3d385b47707ce3c9e927c8dce", salt: "68511f464b689e25e079d8f56fb481e5855ec2ee", confirmation_token: "9c2c9988870e0640f64d9b49a3a2d7bb11ddfd34", remember_token: "3bd0f7eab3da8ba3cebeb7059f0fcb2a835524bf", email_confirmed: true, created_at: "2011-06-07 14:33:33", updated_at: "2011-06-07 14:33:33">
9859
+ Rendered text template (0.0ms)
9860
+ Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.7ms)
9861
+ User Load (0.1ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9862
+ AREL (0.3ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:33:33.058945', '0ef737a1af86ecbc4418d5b4fa03f869d03a7fc0', 't', '02bdfb1f55c60a568f714f204361d016f61afb54', '6a6b620ac653d066a7e0b324112c1e070f23da87', '2011-06-07 14:33:33.058945', 'test@example.com', 'b4084347b13c2028ef154ff8948467dc6720bab9')
9863
+
9864
+
9865
+ Started GET "/entrances.santa" for 127.0.0.1 at Tue Jun 07 16:33:33 +0200 2011
9866
+ Processing by EntrancesController#index as
9867
+ Redirected to http://example.org/sign_in
9868
+ Completed 302 Found in 1ms
9869
+
9870
+
9871
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 16:33:33 +0200 2011
9872
+ Processing by Clearance::SessionsController#new as HTML
9873
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (98.6ms)
9874
+ Completed 200 OK in 112ms (Views: 111.7ms | ActiveRecord: 0.5ms)
9875
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9876
+ AREL (0.3ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:33:33.185155', '5bb1393b53a5a9eabaa2de05b91434f0a430eee5', 't', '2cc8a4476afab09223352f0ebfc10355ce3b106c', '483e64ad8dd9ae0eec27bd3e54e08e5e9d0b1082', '2011-06-07 14:33:33.185155', 'test@example.com', '2d7df7ed1e9292768f341b6e37eb65c108144406')
9877
+
9878
+
9879
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:33:33 +0200 2011
9880
+ Processing by EntrancesController#index as HTML
9881
+ Redirected to http://www.example.com/sign_in
9882
+ Completed 302 Found in 1ms
9883
+
9884
+
9885
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 16:33:33 +0200 2011
9886
+ Processing by Clearance::SessionsController#new as HTML
9887
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (3.6ms)
9888
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.5ms)
9889
+
9890
+
9891
+ Started POST "/session" for 127.0.0.1 at Tue Jun 07 16:33:33 +0200 2011
9892
+ Processing by Clearance::SessionsController#create as HTML
9893
+ Parameters: {"commit"=>"Sign in", "session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "utf8"=>"✓"}
9894
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9895
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (3.5ms)
9896
+ Completed 401 Unauthorized in 6ms (Views: 4.3ms | ActiveRecord: 0.2ms)
9897
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9898
+ AREL (0.4ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:33:33.244155', 'a6463be5996d64209a6be8a3d5c315ff8f74b383', 't', 'dfb61fdf9afaf8b75f4928bbf75c7487062d4c49', '04ee97d93b5b9bb29c6945562489c49a29e9b032', '2011-06-07 14:33:33.244155', 'test@example.com', '2e635714a6145c0148b933ff430a0e5063a7fc42')
9899
+
9900
+
9901
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:33:33 +0200 2011
9902
+ Processing by EntrancesController#index as HTML
9903
+ Redirected to http://www.example.com/sign_in
9904
+ Completed 302 Found in 1ms
9905
+
9906
+
9907
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 16:33:33 +0200 2011
9908
+ Processing by Clearance::SessionsController#new as HTML
9909
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (3.4ms)
9910
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.5ms)
9911
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9912
+ AREL (0.3ms) INSERT INTO "users" ("updated_at", "confirmation_token", "email_confirmed", "remember_token", "encrypted_password", "created_at", "email", "salt") VALUES ('2011-06-07 14:33:33.262022', 'a6a179bb2b9de5c3a5df722c094fde1061be3b54', 't', 'cd7c7d8792d6aaf81960515ace8791e253f79e94', 'e5094a01ba19b80e79a85b23ec43f5f39960bfb6', '2011-06-07 14:33:33.262022', 'test@example.com', '033ff53e9f95b2350ef91d8f19f1d6f7e7d8bf59')
9913
+
9914
+
9915
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:33:33 +0200 2011
9916
+ Processing by EntrancesController#index as HTML
9917
+ Redirected to http://www.example.com/sign_in
9918
+ Completed 302 Found in 1ms
9919
+
9920
+
9921
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 16:33:33 +0200 2011
9922
+ Processing by Clearance::SessionsController#new as HTML
9923
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (3.6ms)
9924
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.5ms)
9925
+
9926
+
9927
+ Started POST "/session" for 127.0.0.1 at Tue Jun 07 16:33:33 +0200 2011
9928
+ Processing by Clearance::SessionsController#create as HTML
9929
+ Parameters: {"commit"=>"Sign in", "session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "utf8"=>"✓"}
9930
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9931
+ Redirected to http://www.example.com/
9932
+ Completed 302 Found in 385ms
9933
+
9934
+
9935
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:33:33 +0200 2011
9936
+ Processing by EntrancesController#index as HTML
9937
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'cd7c7d8792d6aaf81960515ace8791e253f79e94') LIMIT 1
9938
+ #<User id: 1, email: "test@example.com", encrypted_password: "e5094a01ba19b80e79a85b23ec43f5f39960bfb6", salt: "033ff53e9f95b2350ef91d8f19f1d6f7e7d8bf59", confirmation_token: "a6a179bb2b9de5c3a5df722c094fde1061be3b54", remember_token: "cd7c7d8792d6aaf81960515ace8791e253f79e94", email_confirmed: true, created_at: "2011-06-07 14:33:33", updated_at: "2011-06-07 14:33:33">
9939
+ Rendered text template (0.0ms)
9940
+ Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 0.7ms)
9941
+ SQL (0.6ms)  SELECT name
9942
+ FROM sqlite_master
9943
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
9944
+ 
9945
+ SQL (0.2ms) SELECT name
9946
+ FROM sqlite_master
9947
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
9948
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
9949
+ Migrating to ClearanceCreateUsers (20101221153914)
9950
+ User Load (0.7ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9951
+ AREL (1.4ms) INSERT INTO "users" ("email_confirmed", "created_at", "salt", "email", "updated_at", "confirmation_token", "remember_token", "encrypted_password") VALUES ('t', '2011-06-07 14:33:47.600498', 'ca028a22b7de289e172f1302c6da61e9f9e36f1d', 'test@example.com', '2011-06-07 14:33:47.600498', '82684dc477c8ef55ff7c5e17ce632cc48f7447c3', '05be2e9278efcee57ac670e69a0479e4b4f2eacf', '3d8f5e5f6eb9d905d749812961f9f7bde5543d11')
9952
+
9953
+
9954
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
9955
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9956
+ User Load (0.3ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9957
+ AREL (0.4ms) INSERT INTO "users" ("email_confirmed", "created_at", "salt", "email", "updated_at", "confirmation_token", "remember_token", "encrypted_password") VALUES ('t', '2011-06-07 14:33:47.644668', '5fc74b19e0cde76c0c3395a38cc8cf75da6d5c5c', 'test@example.com', '2011-06-07 14:33:47.644668', '1915138be6ad6966c83aba3bd857e2fc2f31def1', '385b329c644c0461afc0110077dc9b9726dc983f', 'c8b372fc962f8d5e1afacf58032a80101bb461f6')
9958
+
9959
+
9960
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
9961
+ User Load (0.1ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9962
+ AREL (0.3ms) INSERT INTO "users" ("email_confirmed", "created_at", "salt", "email", "updated_at", "confirmation_token", "remember_token", "encrypted_password") VALUES ('t', '2011-06-07 14:33:47.650838', '46dfc2cce2f1e6b96907947ca5832aa4a836755a', 'test@example.com', '2011-06-07 14:33:47.650838', '40f01ea6c2a34483a8269f68054f2c9a6d4626d7', '3dacaa667d1f5cc5ecb57d23b016f143436be5fa', '6d19ab476781dbc0a06be1c3b31b62189185b3bb')
9963
+
9964
+
9965
+ Started POST "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
9966
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9967
+ Processing by EntrancesController#create as JSON
9968
+ Completed 201 Created in 14ms (Views: 12.0ms | ActiveRecord: 4.6ms)
9969
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9970
+ AREL (0.4ms) INSERT INTO "users" ("email_confirmed", "created_at", "salt", "email", "updated_at", "confirmation_token", "remember_token", "encrypted_password") VALUES ('t', '2011-06-07 14:33:47.690856', '58ce6dc5dcda96dbb0f031cd71572afb80059e84', 'test@example.com', '2011-06-07 14:33:47.690856', 'd58d9f3e1b64f02f87215983e03ba64b9d62c6f9', '375a136c8caf50be61b5223c648397adc16635e8', 'bbadd4fc7dfd04d33ba327f9222de9d89d41b609')
9971
+
9972
+
9973
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
9974
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9975
+ Processing by EntrancesController#index as JSON
9976
+ #<User id: 1, email: "test@example.com", encrypted_password: "bbadd4fc7dfd04d33ba327f9222de9d89d41b609", salt: "58ce6dc5dcda96dbb0f031cd71572afb80059e84", confirmation_token: "d58d9f3e1b64f02f87215983e03ba64b9d62c6f9", remember_token: "375a136c8caf50be61b5223c648397adc16635e8", email_confirmed: true, created_at: "2011-06-07 14:33:47", updated_at: "2011-06-07 14:33:47">
9977
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.7ms)
9978
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9979
+ AREL (0.3ms) INSERT INTO "users" ("email_confirmed", "created_at", "salt", "email", "updated_at", "confirmation_token", "remember_token", "encrypted_password") VALUES ('t', '2011-06-07 14:33:47.702886', '270e894d026e9cf83dc80fb0e6be68c50919ebe2', 'test@example.com', '2011-06-07 14:33:47.702886', '1fd23dd25b6d3ce3fe8f810be548d06b5eacdc79', '440760f7b0246f0b75e06b58f10f54ae9bd9fa0e', '00a155375bd25f263e61b07241c75917829f856b')
9980
+
9981
+
9982
+ Started GET "/entrances.csv" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
9983
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
9984
+ Processing by EntrancesController#index as CSV
9985
+ #<User id: 1, email: "test@example.com", encrypted_password: "00a155375bd25f263e61b07241c75917829f856b", salt: "270e894d026e9cf83dc80fb0e6be68c50919ebe2", confirmation_token: "1fd23dd25b6d3ce3fe8f810be548d06b5eacdc79", remember_token: "440760f7b0246f0b75e06b58f10f54ae9bd9fa0e", email_confirmed: true, created_at: "2011-06-07 14:33:47", updated_at: "2011-06-07 14:33:47">
9986
+ Rendered text template (0.0ms)
9987
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.7ms)
9988
+ User Load (0.1ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
9989
+ AREL (0.3ms) INSERT INTO "users" ("email_confirmed", "created_at", "salt", "email", "updated_at", "confirmation_token", "remember_token", "encrypted_password") VALUES ('t', '2011-06-07 14:33:47.716522', '58937ad7145e144e23f58d7c1410e05031d4fbce', 'test@example.com', '2011-06-07 14:33:47.716522', 'b70756106dcecfa5a8629c5768bf3787592e3035', '6e832d2b183541ea8f7117da35629331f17380e0', '61244bb2de3e30e2fc5c3262ed12ccbbe5f4904d')
9990
+
9991
+
9992
+ Started GET "/entrances.santa" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
9993
+ Processing by EntrancesController#index as
9994
+ Redirected to http://example.org/sign_in
9995
+ Completed 302 Found in 2ms
9996
+
9997
+
9998
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
9999
+ Processing by Clearance::SessionsController#new as HTML
10000
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (21.4ms)
10001
+ Completed 200 OK in 34ms (Views: 34.0ms | ActiveRecord: 0.5ms)
10002
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
10003
+ AREL (0.3ms) INSERT INTO "users" ("email_confirmed", "created_at", "salt", "email", "updated_at", "confirmation_token", "remember_token", "encrypted_password") VALUES ('t', '2011-06-07 14:33:47.766531', 'cebe700a25d3e9f6d221047735a44c5a78b1a798', 'test@example.com', '2011-06-07 14:33:47.766531', '6d35a320efc018ee46613396d9e3f8d556509f36', '0a19501e99dc1953dffae71c9e568cfc3d548dfd', '2922bded0c50f6a640261d71e04a27fe59757835')
10004
+
10005
+
10006
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
10007
+ Processing by EntrancesController#index as HTML
10008
+ Redirected to http://www.example.com/sign_in
10009
+ Completed 302 Found in 1ms
10010
+
10011
+
10012
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
10013
+ Processing by Clearance::SessionsController#new as HTML
10014
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (4.0ms)
10015
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.5ms)
10016
+
10017
+
10018
+ Started POST "/session" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
10019
+ Processing by Clearance::SessionsController#create as HTML
10020
+ Parameters: {"commit"=>"Sign in", "session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "utf8"=>"✓"}
10021
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10022
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (3.5ms)
10023
+ Completed 401 Unauthorized in 6ms (Views: 4.3ms | ActiveRecord: 0.2ms)
10024
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
10025
+ AREL (0.3ms) INSERT INTO "users" ("email_confirmed", "created_at", "salt", "email", "updated_at", "confirmation_token", "remember_token", "encrypted_password") VALUES ('t', '2011-06-07 14:33:47.827280', 'eac849c9974f97b139d22b6a504308837237b8e4', 'test@example.com', '2011-06-07 14:33:47.827280', '6bbc0ea27feb16984ef6406d76b16b9ab0850efa', 'f649f5262f994dd0850cfdfa8c57a0a7b8e9126f', '6aaa8b4dd6b93912a64dd8e068a28a5c5dd4c58e')
10026
+
10027
+
10028
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
10029
+ Processing by EntrancesController#index as HTML
10030
+ Redirected to http://www.example.com/sign_in
10031
+ Completed 302 Found in 1ms
10032
+
10033
+
10034
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
10035
+ Processing by Clearance::SessionsController#new as HTML
10036
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (3.6ms)
10037
+ Completed 200 OK in 106ms (Views: 4.5ms | ActiveRecord: 0.5ms)
10038
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
10039
+ AREL (0.3ms) INSERT INTO "users" ("email_confirmed", "created_at", "salt", "email", "updated_at", "confirmation_token", "remember_token", "encrypted_password") VALUES ('t', '2011-06-07 14:33:47.945763', '04c324ac26805f43fb47d9a0aa1bf1996274f80d', 'test@example.com', '2011-06-07 14:33:47.945763', '50ed54c698fdb5bf086d60de5ae1bfca39eb4b2f', 'f84afc9a942665e4a24b4f03502da8d6c8473b29', 'fc293682bf8ffaf7b81b485bff4c27bd0321a97f')
10040
+
10041
+
10042
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
10043
+ Processing by EntrancesController#index as HTML
10044
+ Redirected to http://www.example.com/sign_in
10045
+ Completed 302 Found in 1ms
10046
+
10047
+
10048
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
10049
+ Processing by Clearance::SessionsController#new as HTML
10050
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (3.8ms)
10051
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.5ms)
10052
+
10053
+
10054
+ Started POST "/session" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
10055
+ Processing by Clearance::SessionsController#create as HTML
10056
+ Parameters: {"commit"=>"Sign in", "session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "utf8"=>"✓"}
10057
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10058
+ Redirected to http://www.example.com/
10059
+ Completed 302 Found in 5ms
10060
+
10061
+
10062
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:33:47 +0200 2011
10063
+ Processing by EntrancesController#index as HTML
10064
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'f84afc9a942665e4a24b4f03502da8d6c8473b29') LIMIT 1
10065
+ #<User id: 1, email: "test@example.com", encrypted_password: "fc293682bf8ffaf7b81b485bff4c27bd0321a97f", salt: "04c324ac26805f43fb47d9a0aa1bf1996274f80d", confirmation_token: "50ed54c698fdb5bf086d60de5ae1bfca39eb4b2f", remember_token: "f84afc9a942665e4a24b4f03502da8d6c8473b29", email_confirmed: true, created_at: "2011-06-07 14:33:47", updated_at: "2011-06-07 14:33:47">
10066
+ Rendered text template (0.0ms)
10067
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.4ms)
10068
+ SQL (0.5ms)  SELECT name
10069
+ FROM sqlite_master
10070
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
10071
+ 
10072
+ SQL (0.1ms) SELECT name
10073
+ FROM sqlite_master
10074
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
10075
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
10076
+ Migrating to ClearanceCreateUsers (20101221153914)
10077
+ SQL (0.6ms)  SELECT name
10078
+ FROM sqlite_master
10079
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
10080
+ 
10081
+ SQL (0.2ms) SELECT name
10082
+ FROM sqlite_master
10083
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
10084
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
10085
+ Migrating to ClearanceCreateUsers (20101221153914)
10086
+ User Load (0.5ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10087
+ AREL (1.0ms) INSERT INTO "users" ("salt", "email", "remember_token", "created_at", "confirmation_token", "updated_at", "email_confirmed", "encrypted_password") VALUES ('0022c4e66bc26d2d8823c9731143764a9937d739', 'test@example.com', 'ea1755e88408093a50996b5679c624c1f6018b3f', '2011-06-07 14:45:53.012075', NULL, '2011-06-07 14:45:53.012075', 't', '54f26bc9ee8678438284323841b46de4615db3ba')
10088
+
10089
+
10090
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:45:53 +0200 2011
10091
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10092
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10093
+ AREL (0.4ms) INSERT INTO "users" ("salt", "email", "remember_token", "created_at", "confirmation_token", "updated_at", "email_confirmed", "encrypted_password") VALUES ('f2d8e82302d591cb6755cc579680d19540c7f551', 'test@example.com', 'd89e791cbd711400a52fbb1f25c8e4909831370d', '2011-06-07 14:45:53.050819', NULL, '2011-06-07 14:45:53.050819', 't', 'cd40b98d7afcbc8184a579367ccbf04bda9f9ac8')
10094
+
10095
+
10096
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:45:53 +0200 2011
10097
+ User Load (0.1ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10098
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "remember_token", "created_at", "confirmation_token", "updated_at", "email_confirmed", "encrypted_password") VALUES ('dc11dffbd4bbbe1b0cb60da3d0c5f06b45b262db', 'test@example.com', '23a76b5fc58825afeeeb61b6844fb1dd97afe104', '2011-06-07 14:45:53.056815', NULL, '2011-06-07 14:45:53.056815', 't', '9350f8dfda26d66f85e7a0c10693ba68552d3046')
10099
+
10100
+
10101
+ Started POST "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:45:53 +0200 2011
10102
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10103
+ Processing by EntrancesController#create as JSON
10104
+ Completed in 0ms
10105
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10106
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "remember_token", "created_at", "confirmation_token", "updated_at", "email_confirmed", "encrypted_password") VALUES ('61849f6d4a87d0a7eafa9a3708bba70e1634a5d6', 'test@example.com', 'b200a6e0befbc0ca3798f066141a7d20abe53b4e', '2011-06-07 14:45:53.090404', NULL, '2011-06-07 14:45:53.090404', 't', '3a7d6dfdef7abf0c6f6a130561a6ae69f8e2ed23')
10107
+
10108
+
10109
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:45:53 +0200 2011
10110
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10111
+ Processing by EntrancesController#index as JSON
10112
+ Completed in 0ms
10113
+ User Load (0.1ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10114
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "remember_token", "created_at", "confirmation_token", "updated_at", "email_confirmed", "encrypted_password") VALUES ('0801d1a8d841aa52ccc0a6e71be26c641c429852', 'test@example.com', '610d82750084e3520d3be5b4b906a734963b32c2', '2011-06-07 14:45:53.108067', NULL, '2011-06-07 14:45:53.108067', 't', '99e1c793f3c8cc999e84c21576b07cc4eec96c84')
10115
+
10116
+
10117
+ Started GET "/entrances.csv" for 127.0.0.1 at Tue Jun 07 16:45:53 +0200 2011
10118
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10119
+ Processing by EntrancesController#index as CSV
10120
+ Completed in 0ms
10121
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10122
+ AREL (0.4ms) INSERT INTO "users" ("salt", "email", "remember_token", "created_at", "confirmation_token", "updated_at", "email_confirmed", "encrypted_password") VALUES ('0cbb7e0bfbe320aa8799ddfe35f5c332d4bd6305', 'test@example.com', '86b17036534a36e7eec246c4bc98ad8daefd73fd', '2011-06-07 14:45:53.143854', NULL, '2011-06-07 14:45:53.143854', 't', '161d8f2214f17c3fbf4ba010b4331247043fbdd7')
10123
+
10124
+
10125
+ Started GET "/entrances.santa" for 127.0.0.1 at Tue Jun 07 16:45:53 +0200 2011
10126
+ Processing by EntrancesController#index as
10127
+ Completed in 0ms
10128
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10129
+ AREL (0.4ms) INSERT INTO "users" ("salt", "email", "remember_token", "created_at", "confirmation_token", "updated_at", "email_confirmed", "encrypted_password") VALUES ('ccecbd4c50f72d7031b2b255653b6be7d740d17d', 'test@example.com', '86ce2337795d0ecdbc1da7793943cabada8c7654', '2011-06-07 14:45:53.161575', NULL, '2011-06-07 14:45:53.161575', 't', 'cf487ab1013735c655ac46e581ab7b311842a601')
10130
+
10131
+
10132
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:45:53 +0200 2011
10133
+ Processing by EntrancesController#index as HTML
10134
+ Completed in 0ms
10135
+ User Load (0.1ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10136
+ AREL (0.5ms) INSERT INTO "users" ("salt", "email", "remember_token", "created_at", "confirmation_token", "updated_at", "email_confirmed", "encrypted_password") VALUES ('5a548cd10fdfe1d215fb21cd72a86f377c8e9ec6', 'test@example.com', 'cfc2f786a8060ae51b3cdb58cc84d0f6cbdf9652', '2011-06-07 14:45:53.201702', NULL, '2011-06-07 14:45:53.201702', 't', 'ebe4bab34c49e173d0ae137e584d156940ae0601')
10137
+
10138
+
10139
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:45:53 +0200 2011
10140
+ Processing by EntrancesController#index as HTML
10141
+ Completed in 0ms
10142
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10143
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "remember_token", "created_at", "confirmation_token", "updated_at", "email_confirmed", "encrypted_password") VALUES ('23da4f8ffc6f1474bb1ac5ab6f398db1dce28395', 'test@example.com', '495c307c6919e690fa27f8611630e4cf6c7fe925', '2011-06-07 14:45:53.217152', NULL, '2011-06-07 14:45:53.217152', 't', 'fc8547e93591799dbdf73b7f82610645c8581f6d')
10144
+
10145
+
10146
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 16:45:53 +0200 2011
10147
+ Processing by EntrancesController#index as HTML
10148
+ Completed in 0ms
10149
+ SQL (0.5ms)  SELECT name
10150
+ FROM sqlite_master
10151
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
10152
+ 
10153
+ SQL (0.1ms) SELECT name
10154
+ FROM sqlite_master
10155
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
10156
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
10157
+ Migrating to ClearanceCreateUsers (20101221153914)
10158
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10159
+ AREL (0.5ms) INSERT INTO "users" ("confirmation_token", "encrypted_password", "remember_token", "created_at", "updated_at", "email", "email_confirmed", "salt") VALUES (NULL, '45989ddde0d0eb9ec7b582bc6182811728090be8', '4e9d9d93e590661e3e1d1f6d760331bf0f291b4d', '2011-06-07 14:47:39.909399', '2011-06-07 14:47:39.909399', 'test@example.com', 't', '830e29cbbe9822a8b423c63ecfbe1ae3a5d5246c')
10160
+
10161
+
10162
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:47:39 +0200 2011
10163
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10164
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10165
+ AREL (0.4ms) INSERT INTO "users" ("confirmation_token", "encrypted_password", "remember_token", "created_at", "updated_at", "email", "email_confirmed", "salt") VALUES (NULL, '33ded76859c118f92f988f760259fd09db3aec27', '52845d47117d11ffeadb3a3ae9f884deb3c82572', '2011-06-07 14:47:39.933373', '2011-06-07 14:47:39.933373', 'test@example.com', 't', '51e04f2e3c920f06bf34236a89583a2c06330b06')
10166
+
10167
+
10168
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:47:39 +0200 2011
10169
+ User Load (0.1ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10170
+ AREL (0.4ms) INSERT INTO "users" ("confirmation_token", "encrypted_password", "remember_token", "created_at", "updated_at", "email", "email_confirmed", "salt") VALUES (NULL, '797cc9f85e706ae40a3c97fcb28647390ca3fd02', 'ca80fd4f8ab7819817c7527b43d649d732645974', '2011-06-07 14:47:39.939148', '2011-06-07 14:47:39.939148', 'test@example.com', 't', '76198cc49646964df48e3e760342eccf8b2a062a')
10171
+
10172
+
10173
+ Started POST "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:47:39 +0200 2011
10174
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10175
+ Processing by EntrancesController#create as JSON
10176
+ Completed in 0ms
10177
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10178
+ AREL (0.4ms) INSERT INTO "users" ("confirmation_token", "encrypted_password", "remember_token", "created_at", "updated_at", "email", "email_confirmed", "salt") VALUES (NULL, '4be0fe254df0bf6679ee88011d4006bc07fa4d1d', '77bd65b64a71552070e581ce2b8042c80aa7047e', '2011-06-07 14:47:39.960591', '2011-06-07 14:47:39.960591', 'test@example.com', 't', 'a3c0ebaefd8ecfa2576af375b648a00bf734baaa')
10179
+
10180
+
10181
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 16:47:39 +0200 2011
10182
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10183
+ Processing by EntrancesController#index as JSON
10184
+ Completed in 1ms
10185
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10186
+ AREL (0.4ms) INSERT INTO "users" ("confirmation_token", "encrypted_password", "remember_token", "created_at", "updated_at", "email", "email_confirmed", "salt") VALUES (NULL, '326c5c7a04e3686e72f7fecde91ddbb61a47e21e', '3aa64562606fee4cad238d3843b7e86f7aa9db23', '2011-06-07 14:47:39.978408', '2011-06-07 14:47:39.978408', 'test@example.com', 't', '7d1636315a3f50927ddf3cea15c5cf6c28bd01f6')
10187
+
10188
+
10189
+ Started GET "/entrances.csv" for 127.0.0.1 at Tue Jun 07 16:47:39 +0200 2011
10190
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10191
+ Processing by EntrancesController#index as CSV
10192
+ Completed in 0ms
10193
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10194
+ AREL (0.4ms) INSERT INTO "users" ("confirmation_token", "encrypted_password", "remember_token", "created_at", "updated_at", "email", "email_confirmed", "salt") VALUES (NULL, '74d8edf78c234ba7a8a30f39fa52728068eedaac', 'd08ef6369bf27c1f903e027e648fad9286c4182b', '2011-06-07 14:47:39.997575', '2011-06-07 14:47:39.997575', 'test@example.com', 't', 'df07a4b5b1f832206275245278984e93ce2663fa')
10195
+
10196
+
10197
+ Started GET "/entrances.santa" for 127.0.0.1 at Tue Jun 07 16:47:39 +0200 2011
10198
+ Processing by EntrancesController#index as
10199
+ Completed in 0ms
10200
+ SQL (0.5ms)  SELECT name
10201
+ FROM sqlite_master
10202
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
10203
+ 
10204
+ SQL (0.1ms) SELECT name
10205
+ FROM sqlite_master
10206
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
10207
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
10208
+ Migrating to ClearanceCreateUsers (20101221153914)
10209
+ SQL (0.5ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10210
+ AREL (1.4ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('51147079367788466e538639d1a9f164d0dda578', 'test@example.com', '2011-06-07 15:03:43.599278', NULL, 't', '1be3d26f61a14566cb804344e775f7c108083b3a', '2011-06-07 15:03:43.599278', '4cf5023d812d5a158f968ea5f434e6d40113335e')
10211
+
10212
+
10213
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10214
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@example.com' LIMIT 1
10215
+ SQL (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10216
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('44ffe0881a0751c665fadd35a3d6c1026a7dd5ac', 'test@example.com', '2011-06-07 15:03:43.631843', NULL, 't', '96733b02cc7fdc16ba1b69181b8ec3c68d5cdc88', '2011-06-07 15:03:43.631843', '220a1f603ebbc72f797dc0a0fc079c90d54980ad')
10217
+
10218
+
10219
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10220
+ SQL (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10221
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('9c28e471925e88d0b384d9fbb90f3b7bddf4b46f', 'test@example.com', '2011-06-07 15:03:43.638425', NULL, 't', '7ce39480d1827b1f28be6cc171d83faae1416ce8', '2011-06-07 15:03:43.638425', 'b4d0ad601b644c2c707205830108948f8dfacc54')
10222
+
10223
+
10224
+ Started POST "/entrances.json" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10225
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@example.com' LIMIT 1
10226
+ Processing by EntrancesController#create as JSON
10227
+ Completed 201 Created in 11ms (Views: 10.2ms | ActiveRecord: 3.9ms)
10228
+ SQL (0.2ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10229
+ AREL (0.4ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('b26d4f7ffff090c2f7202d5cbdeca73860c2336a', 'test@example.com', '2011-06-07 15:03:43.668695', NULL, 't', '9d26d9e5794d7b6d327a57ccb2909bce7b686b99', '2011-06-07 15:03:43.668695', '7e6a0e34fbbc7d4f3a99ce0d541f20f78c3607c8')
10230
+
10231
+
10232
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10233
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@example.com' LIMIT 1
10234
+ Processing by EntrancesController#index as JSON
10235
+ #<User id: 1, email: "test@example.com", encrypted_password: "7e6a0e34fbbc7d4f3a99ce0d541f20f78c3607c8", salt: "b26d4f7ffff090c2f7202d5cbdeca73860c2336a", confirmation_token: nil, remember_token: "9d26d9e5794d7b6d327a57ccb2909bce7b686b99", email_confirmed: true, created_at: "2011-06-07 15:03:43", updated_at: "2011-06-07 15:03:43">
10236
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.7ms)
10237
+ SQL (0.2ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10238
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('1d872d5505f55c6ccd23e11ee08e111ed34a5ca6', 'test@example.com', '2011-06-07 15:03:43.755873', NULL, 't', '483b6f926db1dbe307c1fd738164613a21bca0ea', '2011-06-07 15:03:43.755873', '85934fc5038ed54f48630a80e4e0cf33244891c7')
10239
+
10240
+
10241
+ Started GET "/entrances.csv" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10242
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@example.com' LIMIT 1
10243
+ Processing by EntrancesController#index as CSV
10244
+ #<User id: 1, email: "test@example.com", encrypted_password: "85934fc5038ed54f48630a80e4e0cf33244891c7", salt: "1d872d5505f55c6ccd23e11ee08e111ed34a5ca6", confirmation_token: nil, remember_token: "483b6f926db1dbe307c1fd738164613a21bca0ea", email_confirmed: true, created_at: "2011-06-07 15:03:43", updated_at: "2011-06-07 15:03:43">
10245
+ Rendered text template (0.0ms)
10246
+ Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.7ms)
10247
+ SQL (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10248
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('42c34477fd18adfa5a672ea64969faf8f60ba96a', 'test@example.com', '2011-06-07 15:03:43.770620', NULL, 't', '65f0909c0cba7eefdcedecc3b39004ced0c85e5b', '2011-06-07 15:03:43.770620', 'faa97e49f4bc924e5c5cef0d089799211964545c')
10249
+
10250
+
10251
+ Started GET "/entrances.santa" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10252
+ Processing by EntrancesController#index as
10253
+ Redirected to http://example.org/sign_in
10254
+ Completed 302 Found in 1ms
10255
+
10256
+
10257
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10258
+ Processing by Clearance::SessionsController#new as HTML
10259
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.11.1/app/views/sessions/new.html.erb within layouts/application (9.8ms)
10260
+ Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.5ms)
10261
+ SQL (0.2ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10262
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('db092adc3dc2b316396e6070233ca8e87b4aba14', 'test@example.com', '2011-06-07 15:03:43.807951', NULL, 't', 'a48db9e13429393d9ee0419a3232a5ff6dd64d77', '2011-06-07 15:03:43.807951', '445f2416a89e8c13f441197e9b886b4e498007b9')
10263
+
10264
+
10265
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10266
+ Processing by EntrancesController#index as HTML
10267
+ Redirected to http://www.example.com/sign_in
10268
+ Completed 302 Found in 1ms
10269
+
10270
+
10271
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10272
+ Processing by Clearance::SessionsController#new as HTML
10273
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.11.1/app/views/sessions/new.html.erb within layouts/application (3.5ms)
10274
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.5ms)
10275
+
10276
+
10277
+ Started POST "/session" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10278
+ Processing by Clearance::SessionsController#create as HTML
10279
+ Parameters: {"commit"=>"Sign in", "session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "utf8"=>"✓"}
10280
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@example.com' LIMIT 1
10281
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.11.1/app/views/sessions/new.html.erb within layouts/application (3.5ms)
10282
+ Completed 401 Unauthorized in 6ms (Views: 4.3ms | ActiveRecord: 0.2ms)
10283
+ SQL (0.2ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10284
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('5457c31f93ba0d8ff4b5019f009875515c3cc091', 'test@example.com', '2011-06-07 15:03:43.859522', NULL, 't', '995afc029c5e41cb378f0b08535c1288bfef0a4c', '2011-06-07 15:03:43.859522', '09aac4b0566b22f234ef72cd5e1967c855aab3e2')
10285
+
10286
+
10287
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10288
+ Processing by EntrancesController#index as HTML
10289
+ Redirected to http://www.example.com/sign_in
10290
+ Completed 302 Found in 1ms
10291
+
10292
+
10293
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10294
+ Processing by Clearance::SessionsController#new as HTML
10295
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.11.1/app/views/sessions/new.html.erb within layouts/application (3.4ms)
10296
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.5ms)
10297
+ SQL (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10298
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('30a6f7ee84d91e3d06b22fabfdd3b2346a0bf606', 'test@example.com', '2011-06-07 15:03:43.877795', NULL, 't', '3eeb9fa5d020d4f325434baaf00acb51477872c6', '2011-06-07 15:03:43.877795', 'df538ec41b621cc8ddc219fad85ce8d800279412')
10299
+
10300
+
10301
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10302
+ Processing by EntrancesController#index as HTML
10303
+ Redirected to http://www.example.com/sign_in
10304
+ Completed 302 Found in 1ms
10305
+
10306
+
10307
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10308
+ Processing by Clearance::SessionsController#new as HTML
10309
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.11.1/app/views/sessions/new.html.erb within layouts/application (3.4ms)
10310
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.5ms)
10311
+
10312
+
10313
+ Started POST "/session" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10314
+ Processing by Clearance::SessionsController#create as HTML
10315
+ Parameters: {"commit"=>"Sign in", "session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "utf8"=>"✓"}
10316
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@example.com' LIMIT 1
10317
+ Redirected to http://www.example.com/
10318
+ Completed 302 Found in 2ms
10319
+
10320
+
10321
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 17:03:43 +0200 2011
10322
+ Processing by EntrancesController#index as HTML
10323
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = '3eeb9fa5d020d4f325434baaf00acb51477872c6' LIMIT 1
10324
+ #<User id: 1, email: "test@example.com", encrypted_password: "df538ec41b621cc8ddc219fad85ce8d800279412", salt: "30a6f7ee84d91e3d06b22fabfdd3b2346a0bf606", confirmation_token: nil, remember_token: "3eeb9fa5d020d4f325434baaf00acb51477872c6", email_confirmed: true, created_at: "2011-06-07 15:03:43", updated_at: "2011-06-07 15:03:43">
10325
+ Rendered text template (0.0ms)
10326
+ Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.4ms)
10327
+ SQL (0.5ms)  SELECT name
10328
+ FROM sqlite_master
10329
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
10330
+ 
10331
+ SQL (0.1ms) SELECT name
10332
+ FROM sqlite_master
10333
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
10334
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
10335
+ Migrating to ClearanceCreateUsers (20101221153914)
10336
+ SQL (0.2ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10337
+ AREL (0.8ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('cd424ffff2e5227c55f31fd6c54f14f9f04dc978', 'test@example.com', '2011-06-07 15:04:16.477403', NULL, 't', '7ab42f175eb0fd4746aa26df6322f32a83c4ba51', '2011-06-07 15:04:16.477403', '36e3e87fd89f7129e85808d0b8b02915754180a7')
10338
+
10339
+
10340
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10341
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@example.com' LIMIT 1
10342
+ SQL (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10343
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('1752e7534a645df1ff3f5f9d23b788cac38b6a47', 'test@example.com', '2011-06-07 15:04:16.504039', NULL, 't', '3100a8a933adf505bc575c5044e8d86411ee13d4', '2011-06-07 15:04:16.504039', '7eb0dbe19e1ca33857caa0a982d3b666ac2b6e94')
10344
+
10345
+
10346
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10347
+ SQL (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10348
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('bc60338a6b10a1526a2b21031091a3873f2ad075', 'test@example.com', '2011-06-07 15:04:16.510701', NULL, 't', 'bdef41b7f807cf7486aef332fddcdb991a751c32', '2011-06-07 15:04:16.510701', 'e5946c16bf6417673f62d82a4c35f899b90a6881')
10349
+
10350
+
10351
+ Started POST "/entrances.json" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10352
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@example.com' LIMIT 1
10353
+ Processing by EntrancesController#create as JSON
10354
+ Completed 201 Created in 10ms (Views: 9.7ms | ActiveRecord: 3.0ms)
10355
+ SQL (0.2ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10356
+ AREL (0.4ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('94ee18b273ef93d63341a00ade4cdd3f116cda5c', 'test@example.com', '2011-06-07 15:04:16.537263', NULL, 't', '2f0b7eb9e6603e4a6fa483f8ee4eed20c130dcb6', '2011-06-07 15:04:16.537263', 'b0a305ef484e6b522d7926c3b78dd9b61020c0e8')
10357
+
10358
+
10359
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10360
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@example.com' LIMIT 1
10361
+ Processing by EntrancesController#index as JSON
10362
+ #<User id: 1, email: "test@example.com", encrypted_password: "b0a305ef484e6b522d7926c3b78dd9b61020c0e8", salt: "94ee18b273ef93d63341a00ade4cdd3f116cda5c", confirmation_token: nil, remember_token: "2f0b7eb9e6603e4a6fa483f8ee4eed20c130dcb6", email_confirmed: true, created_at: "2011-06-07 15:04:16", updated_at: "2011-06-07 15:04:16">
10363
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.7ms)
10364
+ SQL (0.2ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10365
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('0467bd80db976025dec67269cc3d2b4f3260867f', 'test@example.com', '2011-06-07 15:04:16.622873', NULL, 't', 'b33d14f1ab50bfdf840dc30aa896c80d1340e6ac', '2011-06-07 15:04:16.622873', '01ffa35c2c652cfff781777c3e5cb54988b53f00')
10366
+
10367
+
10368
+ Started GET "/entrances.csv" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10369
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@example.com' LIMIT 1
10370
+ Processing by EntrancesController#index as CSV
10371
+ #<User id: 1, email: "test@example.com", encrypted_password: "01ffa35c2c652cfff781777c3e5cb54988b53f00", salt: "0467bd80db976025dec67269cc3d2b4f3260867f", confirmation_token: nil, remember_token: "b33d14f1ab50bfdf840dc30aa896c80d1340e6ac", email_confirmed: true, created_at: "2011-06-07 15:04:16", updated_at: "2011-06-07 15:04:16">
10372
+ Rendered text template (0.0ms)
10373
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.7ms)
10374
+ SQL (0.2ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10375
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('53fbd81c819dded667bcb9f36f1b4fdae5017cc0', 'test@example.com', '2011-06-07 15:04:16.637064', NULL, 't', '0869fa2eb053ca74006bc053d1f72c56f51ec5cc', '2011-06-07 15:04:16.637064', 'a04683f7b970633fe2e5c8ff4a32f2eacdeab990')
10376
+
10377
+
10378
+ Started GET "/entrances.santa" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10379
+ Processing by EntrancesController#index as
10380
+ Redirected to http://example.org/sign_in
10381
+ Completed 302 Found in 1ms
10382
+
10383
+
10384
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10385
+ Processing by Clearance::SessionsController#new as HTML
10386
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.11.1/app/views/sessions/new.html.erb within layouts/application (7.3ms)
10387
+ Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.5ms)
10388
+ SQL (0.2ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10389
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('e8f1966b10297e6afe7cbbd5bc669138913bf689', 'test@example.com', '2011-06-07 15:04:16.671342', NULL, 't', '5bfdf1a98edea29f868e669c678419189187b2c9', '2011-06-07 15:04:16.671342', '52b03b9a8c09d98b74dc0ef48888f21dab11192d')
10390
+
10391
+
10392
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10393
+ Processing by EntrancesController#index as HTML
10394
+ Redirected to http://www.example.com/sign_in
10395
+ Completed 302 Found in 1ms
10396
+
10397
+
10398
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10399
+ Processing by Clearance::SessionsController#new as HTML
10400
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.11.1/app/views/sessions/new.html.erb within layouts/application (3.6ms)
10401
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.5ms)
10402
+
10403
+
10404
+ Started POST "/session" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10405
+ Processing by Clearance::SessionsController#create as HTML
10406
+ Parameters: {"commit"=>"Sign in", "session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "utf8"=>"✓"}
10407
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@example.com' LIMIT 1
10408
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.11.1/app/views/sessions/new.html.erb within layouts/application (3.5ms)
10409
+ Completed 401 Unauthorized in 6ms (Views: 4.3ms | ActiveRecord: 0.2ms)
10410
+ SQL (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10411
+ AREL (0.3ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('b548ac9b10f9a3b13578b22da3b4d9da1ef87fbc', 'test@example.com', '2011-06-07 15:04:16.723038', NULL, 't', '08c33c2ec3fd6df5f069861b3c42bd1bac1cfb01', '2011-06-07 15:04:16.723038', '107eca5de55e76e7ca17cc60c1d1a37768ae5e52')
10412
+
10413
+
10414
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10415
+ Processing by EntrancesController#index as HTML
10416
+ Redirected to http://www.example.com/sign_in
10417
+ Completed 302 Found in 1ms
10418
+
10419
+
10420
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10421
+ Processing by Clearance::SessionsController#new as HTML
10422
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.11.1/app/views/sessions/new.html.erb within layouts/application (3.4ms)
10423
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.5ms)
10424
+ SQL (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
10425
+ AREL (0.4ms) INSERT INTO "users" ("salt", "email", "created_at", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "encrypted_password") VALUES ('053e3e9834fd0ba3d8832eec98a11c9308fbd44c', 'test@example.com', '2011-06-07 15:04:16.741165', NULL, 't', 'b2c89166432d39211342438dc02aae2aad739afe', '2011-06-07 15:04:16.741165', '6deb1e73a0fbe30bc8f5eb6337a98f37abf5a8b3')
10426
+
10427
+
10428
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10429
+ Processing by EntrancesController#index as HTML
10430
+ Redirected to http://www.example.com/sign_in
10431
+ Completed 302 Found in 1ms
10432
+
10433
+
10434
+ Started GET "/sign_in" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10435
+ Processing by Clearance::SessionsController#new as HTML
10436
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.11.1/app/views/sessions/new.html.erb within layouts/application (3.4ms)
10437
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.5ms)
10438
+
10439
+
10440
+ Started POST "/session" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10441
+ Processing by Clearance::SessionsController#create as HTML
10442
+ Parameters: {"commit"=>"Sign in", "session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "utf8"=>"✓"}
10443
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@example.com' LIMIT 1
10444
+ Redirected to http://www.example.com/
10445
+ Completed 302 Found in 2ms
10446
+
10447
+
10448
+ Started GET "/" for 127.0.0.1 at Tue Jun 07 17:04:16 +0200 2011
10449
+ Processing by EntrancesController#index as HTML
10450
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = 'b2c89166432d39211342438dc02aae2aad739afe' LIMIT 1
10451
+ #<User id: 1, email: "test@example.com", encrypted_password: "6deb1e73a0fbe30bc8f5eb6337a98f37abf5a8b3", salt: "053e3e9834fd0ba3d8832eec98a11c9308fbd44c", confirmation_token: nil, remember_token: "b2c89166432d39211342438dc02aae2aad739afe", email_confirmed: true, created_at: "2011-06-07 15:04:16", updated_at: "2011-06-07 15:04:16">
10452
+ Rendered text template (0.0ms)
10453
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.4ms)
@@ -5,7 +5,6 @@ end
5
5
  Factory.define :user do |user|
6
6
  user.email { Factory.next :email }
7
7
  user.password { "password" }
8
- user.password_confirmation { "password" }
9
8
  end
10
9
 
11
10
  Factory.define :email_confirmed_user, :parent => :user do |user|
@@ -12,8 +12,7 @@ class APITest < ActiveSupport::TestCase
12
12
  def setup
13
13
  Factory.create(:email_confirmed_user,
14
14
  :email => 'test@example.com',
15
- :password => 'password',
16
- :password_confirmation => 'password')
15
+ :password => 'password')
17
16
  end
18
17
 
19
18
  context "When navigating the API, it" do
@@ -6,8 +6,7 @@ class NavigationTest < ActiveSupport::IntegrationCase
6
6
  setup do
7
7
  Factory.create(:email_confirmed_user,
8
8
  :email => 'test@example.com',
9
- :password => 'password',
10
- :password_confirmation => 'password')
9
+ :password => 'password')
11
10
  end
12
11
 
13
12
  context "When navigating the application, it" do
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clearance_http_auth
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 2
8
+ - 3
9
9
  - 0
10
- version: 0.2.0
10
+ version: 0.3.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Karel Minarik
@@ -15,44 +15,28 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-03-12 00:00:00 +01:00
18
+ date: 2011-06-07 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
+ name: clearance
22
23
  prerelease: false
23
- type: :runtime
24
24
  requirement: &id001 !ruby/object:Gem::Requirement
25
25
  none: false
26
26
  requirements:
27
- - - ~>
27
+ - - ">"
28
28
  - !ruby/object:Gem::Version
29
- hash: 23
29
+ hash: 29
30
30
  segments:
31
- - 1
32
- - 0
33
31
  - 0
34
- version: 1.0.0
35
- name: bundler
32
+ - 11
33
+ version: "0.11"
34
+ type: :runtime
36
35
  version_requirements: *id001
37
36
  - !ruby/object:Gem::Dependency
37
+ name: rack
38
38
  prerelease: false
39
- type: :runtime
40
39
  requirement: &id002 !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ">"
44
- - !ruby/object:Gem::Version
45
- hash: 25
46
- segments:
47
- - 0
48
- - 9
49
- version: "0.9"
50
- name: clearance
51
- version_requirements: *id002
52
- - !ruby/object:Gem::Dependency
53
- prerelease: false
54
- type: :runtime
55
- requirement: &id003 !ruby/object:Gem::Requirement
56
40
  none: false
57
41
  requirements:
58
42
  - - ">"
@@ -62,50 +46,24 @@ dependencies:
62
46
  - 1
63
47
  - 2
64
48
  version: "1.2"
65
- name: rack
66
- version_requirements: *id003
49
+ type: :runtime
50
+ version_requirements: *id002
67
51
  - !ruby/object:Gem::Dependency
52
+ name: bundler
68
53
  prerelease: false
69
- type: :development
70
- requirement: &id004 !ruby/object:Gem::Requirement
54
+ requirement: &id003 !ruby/object:Gem::Requirement
71
55
  none: false
72
56
  requirements:
73
- - - ">="
57
+ - - ~>
74
58
  - !ruby/object:Gem::Version
75
- hash: 3
59
+ hash: 23
76
60
  segments:
61
+ - 1
77
62
  - 0
78
- version: "0"
79
- name: thin
80
- version_requirements: *id004
81
- - !ruby/object:Gem::Dependency
82
- prerelease: false
83
- type: :development
84
- requirement: &id005 !ruby/object:Gem::Requirement
85
- none: false
86
- requirements:
87
- - - ">="
88
- - !ruby/object:Gem::Version
89
- hash: 3
90
- segments:
91
63
  - 0
92
- version: "0"
93
- name: turn
94
- version_requirements: *id005
95
- - !ruby/object:Gem::Dependency
96
- prerelease: false
64
+ version: 1.0.0
97
65
  type: :development
98
- requirement: &id006 !ruby/object:Gem::Requirement
99
- none: false
100
- requirements:
101
- - - ">="
102
- - !ruby/object:Gem::Version
103
- hash: 3
104
- segments:
105
- - 0
106
- version: "0"
107
- name: shoulda
108
- version_requirements: *id006
66
+ version_requirements: *id003
109
67
  description: " Simple, instant HTTP Basic Authentication for applications using Clearance.\n"
110
68
  email: karmi@karmi.cz
111
69
  executables: []