openid_ar_store 0.0.1

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.
Files changed (47) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +43 -0
  3. data/Rakefile +40 -0
  4. data/app/models/openid_ar_store/association.rb +15 -0
  5. data/app/models/openid_ar_store/nonce.rb +7 -0
  6. data/db/migrate/20131127045846_open_id_store.rb +23 -0
  7. data/lib/openid_ar_store/active_record_store.rb +56 -0
  8. data/lib/openid_ar_store/engine.rb +5 -0
  9. data/lib/openid_ar_store/version.rb +3 -0
  10. data/lib/openid_ar_store.rb +7 -0
  11. data/lib/tasks/openid_ar_store_tasks.rake +7 -0
  12. data/test/dummy/README.rdoc +261 -0
  13. data/test/dummy/Rakefile +7 -0
  14. data/test/dummy/app/assets/javascripts/application.js +15 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  16. data/test/dummy/app/controllers/application_controller.rb +3 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  19. data/test/dummy/config/application.rb +59 -0
  20. data/test/dummy/config/boot.rb +10 -0
  21. data/test/dummy/config/database.yml +25 -0
  22. data/test/dummy/config/environment.rb +5 -0
  23. data/test/dummy/config/environments/development.rb +37 -0
  24. data/test/dummy/config/environments/production.rb +67 -0
  25. data/test/dummy/config/environments/test.rb +37 -0
  26. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  27. data/test/dummy/config/initializers/inflections.rb +15 -0
  28. data/test/dummy/config/initializers/mime_types.rb +5 -0
  29. data/test/dummy/config/initializers/secret_token.rb +7 -0
  30. data/test/dummy/config/initializers/session_store.rb +8 -0
  31. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  32. data/test/dummy/config/locales/en.yml +5 -0
  33. data/test/dummy/config/routes.rb +4 -0
  34. data/test/dummy/config.ru +4 -0
  35. data/test/dummy/db/migrate/20131127050158_open_id_store.openid_ar_store.rb +24 -0
  36. data/test/dummy/db/schema.rb +31 -0
  37. data/test/dummy/db/test.sqlite3 +0 -0
  38. data/test/dummy/log/development.log +18 -0
  39. data/test/dummy/log/test.log +147 -0
  40. data/test/dummy/public/404.html +26 -0
  41. data/test/dummy/public/422.html +26 -0
  42. data/test/dummy/public/500.html +25 -0
  43. data/test/dummy/public/favicon.ico +0 -0
  44. data/test/dummy/script/rails +6 -0
  45. data/test/openid_ar_store_test.rb +206 -0
  46. data/test/test_helper.rb +15 -0
  47. metadata +196 -0
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Raise exception on mass assignment protection for Active Record models
26
+ config.active_record.mass_assignment_sanitizer = :strict
27
+
28
+ # Log the query plan for queries taking more than this (works
29
+ # with SQLite, MySQL, and PostgreSQL)
30
+ config.active_record.auto_explain_threshold_in_seconds = 0.5
31
+
32
+ # Do not compress assets
33
+ config.assets.compress = false
34
+
35
+ # Expands the lines which load the assets
36
+ config.assets.debug = true
37
+ end
@@ -0,0 +1,67 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to nil and saved in location specified by config.assets.prefix
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ # Log the query plan for queries taking more than this (works
65
+ # with SQLite, MySQL, and PostgreSQL)
66
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+ end
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 'fef29d1dd6a8d47613de619f8fe29e95bee34a19ad466ae2a3d2052781fee65c1bbe966b75bfeb68585242da13235953fccdf4447595d158495a103dda148b52'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount OpenidArStore::Engine => "/openid_ar_store"
4
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,24 @@
1
+ # This migration comes from openid_ar_store (originally 20131127045846)
2
+ class OpenIdStore < ActiveRecord::Migration
3
+ def self.up
4
+ create_table "open_id_associations", :force => true do |t|
5
+ t.column "server_url", :string, :null => false
6
+ t.column "handle", :string, :null => false
7
+ t.column "secret", :binary, :null => false
8
+ t.column "issued", :integer, :null => false
9
+ t.column "lifetime", :integer, :null => false
10
+ t.column "assoc_type", :string, :null => false
11
+ end
12
+
13
+ create_table "open_id_nonces", :force => true do |t|
14
+ t.column :server_url, :string, :null => false
15
+ t.column :timestamp, :integer, :null => false
16
+ t.column :salt, :string, :null => false
17
+ end
18
+ end
19
+
20
+ def self.down
21
+ drop_table "open_id_associations"
22
+ drop_table "open_id_nonces"
23
+ end
24
+ end
@@ -0,0 +1,31 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20131127050158) do
15
+
16
+ create_table "open_id_associations", :force => true do |t|
17
+ t.string "server_url", :null => false
18
+ t.string "handle", :null => false
19
+ t.binary "secret", :null => false
20
+ t.integer "issued", :null => false
21
+ t.integer "lifetime", :null => false
22
+ t.string "assoc_type", :null => false
23
+ end
24
+
25
+ create_table "open_id_nonces", :force => true do |t|
26
+ t.string "server_url", :null => false
27
+ t.integer "timestamp", :null => false
28
+ t.string "salt", :null => false
29
+ end
30
+
31
+ end
Binary file
@@ -0,0 +1,18 @@
1
+ Connecting to database specified by database.yml
2
+  (0.1ms) select sqlite_version(*)
3
+  (99.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
+  (100.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (3.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6
+ Migrating to OpenIdStore (20131127050158)
7
+  (0.1ms) begin transaction
8
+  (0.3ms) CREATE TABLE "open_id_associations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "server_url" varchar(255) NOT NULL, "handle" varchar(255) NOT NULL, "secret" blob NOT NULL, "issued" integer NOT NULL, "lifetime" integer NOT NULL, "assoc_type" varchar(255) NOT NULL)
9
+  (0.1ms) CREATE TABLE "open_id_nonces" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "server_url" varchar(255) NOT NULL, "timestamp" integer NOT NULL, "salt" varchar(255) NOT NULL) 
10
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131127050158')
11
+  (112.0ms) commit transaction
12
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
13
+ Connecting to database specified by database.yml
14
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15
+ Migrating to OpenIdStore (20131127050158)
16
+  (0.1ms) select sqlite_version(*)
17
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
18
+ Connecting to database specified by database.yml
@@ -0,0 +1,147 @@
1
+ Connecting to database specified by database.yml
2
+  (0.3ms) begin transaction
3
+  (0.0ms) rollback transaction
4
+  (0.0ms) begin transaction
5
+  (0.0ms) rollback transaction
6
+ Connecting to database specified by database.yml
7
+  (0.3ms) begin transaction
8
+  (0.1ms) rollback transaction
9
+  (0.0ms) begin transaction
10
+  (0.0ms) rollback transaction
11
+ Connecting to database specified by database.yml
12
+  (0.1ms) select sqlite_version(*)
13
+  (105.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
14
+  (100.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15
+  (2.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
16
+ Migrating to OpenIdStore (20131127050158)
17
+  (0.1ms) begin transaction
18
+  (0.8ms) CREATE TABLE "open_id_associations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "server_url" varchar(255) NOT NULL, "handle" varchar(255) NOT NULL, "secret" blob NOT NULL, "issued" integer NOT NULL, "lifetime" integer NOT NULL, "assoc_type" varchar(255) NOT NULL)
19
+  (0.4ms) CREATE TABLE "open_id_nonces" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "server_url" varchar(255) NOT NULL, "timestamp" integer NOT NULL, "salt" varchar(255) NOT NULL) 
20
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131127050158')
21
+  (133.2ms) commit transaction
22
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
23
+ Connecting to database specified by database.yml
24
+  (0.4ms) begin transaction
25
+ OpenIDArStore::Nonce Load (1.2ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385528915 AND "open_id_nonces"."salt" = 'g6JNKH' LIMIT 1
26
+  (0.1ms) rollback transaction
27
+  (0.0ms) begin transaction
28
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
29
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = ';)]*lkzy}%j9GaB}/I9|dzK=w=<\8[Kp70W+d{H''h&S8a[Wv<<`[5&6%.l*Tr,67<)L+"J_k/DcOgKf`G]X[nHHE"%P*xB?''~A:IwH}ke''x=wWu*1&>j,l0}8ZgpH\8v')
30
+  (0.0ms) rollback transaction
31
+ Connecting to database specified by database.yml
32
+  (0.4ms) begin transaction
33
+ OpenIDArStore::Nonce Load (1.3ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385528957 AND "open_id_nonces"."salt" = 'bm2bnl' LIMIT 1
34
+  (0.1ms) SAVEPOINT active_record_1
35
+ SQL (3.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "bm2bnl"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385528957]]
36
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385528957 AND "open_id_nonces"."salt" = 'bm2bnl' LIMIT 1
38
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385528957 AND "open_id_nonces"."salt" = 'bm2bnl' LIMIT 1
39
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 3600 AND "open_id_nonces"."salt" = 'xSUQE5' LIMIT 1
40
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385528957 AND "open_id_nonces"."salt" = 'oi6ONv' LIMIT 1
41
+  (0.0ms) SAVEPOINT active_record_1
42
+ SQL (0.2ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "oi6ONv"], ["server_url", ""], ["timestamp", 1385528957]]
43
+  (0.0ms) RELEASE SAVEPOINT active_record_1
44
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385528957 AND "open_id_nonces"."salt" = 'oi6ONv' LIMIT 1
45
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 1385528957 AND "open_id_nonces"."salt" = 'oi6ONv' LIMIT 1
46
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = '' AND "open_id_nonces"."timestamp" = 3600 AND "open_id_nonces"."salt" = 'bRht2O' LIMIT 1
47
+ SQL (0.1ms) DELETE FROM "open_id_nonces" WHERE (timestamp > 1385528957 OR timestamp < 1385528957)
48
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385508957 AND "open_id_nonces"."salt" = 'nScmuJ' LIMIT 1
49
+  (0.0ms) SAVEPOINT active_record_1
50
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "nScmuJ"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385508957]]
51
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385518957 AND "open_id_nonces"."salt" = 'uBZhNV' LIMIT 1
53
+  (0.0ms) SAVEPOINT active_record_1
54
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "uBZhNV"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385518957]]
55
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385528357 AND "open_id_nonces"."salt" = '01c74y' LIMIT 1
57
+  (0.0ms) SAVEPOINT active_record_1
58
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "01c74y"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385528357]]
59
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60
+ SQL (0.1ms) DELETE FROM "open_id_nonces" WHERE (timestamp > 1385529957 OR timestamp < 1385527957)
61
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385508957 AND "open_id_nonces"."salt" = 'nScmuJ' LIMIT 1
62
+  (0.0ms) SAVEPOINT active_record_1
63
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "nScmuJ"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385508957]]
64
+  (0.0ms) RELEASE SAVEPOINT active_record_1
65
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385518957 AND "open_id_nonces"."salt" = 'uBZhNV' LIMIT 1
66
+  (0.0ms) SAVEPOINT active_record_1
67
+ SQL (0.1ms) INSERT INTO "open_id_nonces" ("salt", "server_url", "timestamp") VALUES (?, ?, ?) [["salt", "uBZhNV"], ["server_url", "http://www.myopenid.com/openid"], ["timestamp", 1385518957]]
68
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69
+ OpenIDArStore::Nonce Load (0.1ms) SELECT "open_id_nonces".* FROM "open_id_nonces" WHERE "open_id_nonces"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_nonces"."timestamp" = 1385528357 AND "open_id_nonces"."salt" = '01c74y' LIMIT 1
70
+  (0.1ms) rollback transaction
71
+  (0.0ms) begin transaction
72
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
73
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
74
+  (0.1ms) SAVEPOINT active_record_1
75
+ SQL (0.3ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT'b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+'3+_+4qz.~`|syQ:Y>3q~;|*^#r'=P5%'O*.!m&\"K"], ["issued", 1385528957], ["lifetime", 600], ["secret", "\x1D\xD2\x9B\xF6\x1F\xC3\xB9\xEA\x917\x1D\xE7\xA3Q\xA9\xC2\xD0\xCF\xE5\x8A"], ["server_url", "http://www.myopenid.com/openid"]]
76
+  (0.0ms) RELEASE SAVEPOINT active_record_1
77
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
78
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
79
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
80
+  (0.0ms) SAVEPOINT active_record_1
81
+ SQL (0.2ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT'b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+'3+_+4qz.~`|syQ:Y>3q~;|*^#r'=P5%'O*.!m&\"K"], ["issued", 1385528957], ["lifetime", 600], ["secret", "\x1D\xD2\x9B\xF6\x1F\xC3\xB9\xEA\x917\x1D\xE7\xA3Q\xA9\xC2\xD0\xCF\xE5\x8A"], ["server_url", "http://www.myopenid.com/openid"]]
82
+  (0.0ms) RELEASE SAVEPOINT active_record_1
83
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
84
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"Kx')
85
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openidx' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
86
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
87
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
88
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
89
+  (0.0ms) SAVEPOINT active_record_1
90
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT'b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+'3+_+4qz.~`|syQ:Y>3q~;|*^#r'=P5%'O*.!m&\"K"], ["issued", 1385528957], ["lifetime", 600], ["secret", "\x1D\xD2\x9B\xF6\x1F\xC3\xB9\xEA\x917\x1D\xE7\xA3Q\xA9\xC2\xD0\xCF\xE5\x8A"], ["server_url", "http://www.myopenid.com/openid"]]
91
+  (0.0ms) RELEASE SAVEPOINT active_record_1
92
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l')
93
+  (0.0ms) SAVEPOINT active_record_1
94
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "*]{aEHG.&DdJ)L#rdx,|?A\\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\\Dwbov^K<'`wZLe)i4h&hEq<RQ_<k`l"], ["issued", 1385528958], ["lifetime", 600], ["secret", "\xEF\xFD\xC8\x1A\xB4\xDCQ\xF0\x19\x04~\xAA\xDD\xBC\x80r'@\xB4\xE8"], ["server_url", "http://www.myopenid.com/openid"]]
95
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
97
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K'
98
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l'
99
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs')
100
+  (0.0ms) SAVEPOINT active_record_1
101
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "N,XqPcie_r#_baT$>g}+br'HH=h@PiVc2WZd8\\@AueK!CwoT]t+Cg-?\\fKkd*'aqn?4<o{{p\\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U'<BB0Mvs"], ["issued", 1385528959], ["lifetime", 100], ["secret", "\x16{\xDC\xEE\xB2\x01\xB4\xF3\xA5}h\x01\xDE\xF2\"4\xC8>\e\xE4"], ["server_url", "http://www.myopenid.com/openid"]]
102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
104
+ OpenIDArStore::Association Load (0.2ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K'
105
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l'
106
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs'
107
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l')
108
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
109
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K'
110
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l'
111
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs'
112
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l')
113
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs')
114
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
115
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K'
116
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l'
117
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs'
118
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l')
119
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
120
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs')
121
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid'
122
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K'
123
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l'
124
+ OpenIDArStore::Association Load (0.1ms) SELECT "open_id_associations".* FROM "open_id_associations" WHERE "open_id_associations"."server_url" = 'http://www.myopenid.com/openid' AND "open_id_associations"."handle" = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs'
125
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '*]{aEHG.&DdJ)L#rdx,|?A\.xi{sl%aJR3tE(hC=lpUk.s(b[P^e1|ZxLxC[mb4${~U2Zgs7!i^ZW3CZhtM1?wb[Y<O$pq>xM\Dwbov^K<''`wZLe)i4h&hEq<RQ_<k`l')
126
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = '2r=D?y||96x)SROW+y95NLg6-Dc%9WTzteT''b!tY9OyYO:bu!2~s{JeZI%MCT0E/@!-bkqA/3mR^NdWX?IMhr5+''3+_+4qz.~`|syQ:Y>3q~;|*^#r''=P5%''O*.!m&"K')
127
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid' AND handle = 'N,XqPcie_r#_baT$>g}+br''HH=h@PiVc2WZd8\@AueK!CwoT]t+Cg-?\fKkd*''aqn?4<o{{p\8U+FGmL>6nC9gVJ,H}Snwd?3AY-r?_EwbOLBnOET^u5aH1U''<BB0Mvs')
128
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (issued + lifetime < 1385528958)
129
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid1' AND handle = 'FUX4\_VZ?X,%}1oUDnG#+]LR11bzv]W&X6%kuM#7o}a|-`C|]&3c33.#&\,5GnP25/"/1''u>Zk2<Q15pUb-ZHDE4(9WCosh>j0&\9-<SO#y=UR2`Oo"Iht@`c&__0_5I')
130
+  (0.0ms) SAVEPOINT active_record_1
131
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "FUX4\\_VZ?X,%}1oUDnG#+]LR11bzv]W&X6%kuM#7o}a|-`C|]&3c33.#&\\,5GnP25/\"/1'u>Zk2<Q15pUb-ZHDE4(9WCosh>j0&\\9-<SO#y=UR2`Oo\"Iht@`c&__0_5I"], ["issued", 1385525358], ["lifetime", 7200], ["secret", "\x1F47\x1D\x12G\xBF\xAAJ\xCDRa\xDE\xE4X\xF2,\xD0\xF6\xF2"], ["server_url", "http://www.myopenid.com/openid1"]]
132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
133
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid1' AND handle = 'E7b%*?|U;N;_Exq9?uZRz0ZU&J2H/<fCtb9C_h(.IC\r=VgWz~[/jjduo8b%`O:yZR(K4{3sw]J-+~c''/^GkiHGhp}1dqD[v=M!$7H5licv0niOTO=MA=+CVMU)tLs?I')
134
+  (0.0ms) SAVEPOINT active_record_1
135
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "E7b%*?|U;N;_Exq9?uZRz0ZU&J2H/<fCtb9C_h(.IC\\r=VgWz~[/jjduo8b%`O:yZR(K4{3sw]J-+~c'/^GkiHGhp}1dqD[v=M!$7H5licv0niOTO=MA=+CVMU)tLs?I"], ["issued", 1385521758], ["lifetime", 3600], ["secret", ";\xC5;\x86\f?#\xF0x,\xCF\xAA)\xD4\xFCR\x13\n\x8A\xEB"], ["server_url", "http://www.myopenid.com/openid1"]]
136
+  (0.0ms) RELEASE SAVEPOINT active_record_1
137
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid2' AND handle = '0B=YHFLnZ~U{`''UThQb&hEUL2YlzdI4C|cV*J~Y=Dmi/7M~+9HNI@rYNp<u9sV>Qa,DP5U!BJw=~^bj=QLjW6!Z=rAF~[7+cmgNIpHVfBwB+w?''Mv}kp#_nzM^S:F%5|')
138
+  (0.0ms) SAVEPOINT active_record_1
139
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "0B=YHFLnZ~U{`'UThQb&hEUL2YlzdI4C|cV*J~Y=Dmi/7M~+9HNI@rYNp<u9sV>Qa,DP5U!BJw=~^bj=QLjW6!Z=rAF~[7+cmgNIpHVfBwB+w?'Mv}kp#_nzM^S:F%5|"], ["issued", 1385521758], ["lifetime", 3600], ["secret", "\x90\x8909Q\x0F\xDFnp\x10\x97Y\xB8\x9C\xAEv\x9C\x04\xD3D"], ["server_url", "http://www.myopenid.com/openid2"]]
140
+  (0.0ms) RELEASE SAVEPOINT active_record_1
141
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (server_url = 'http://www.myopenid.com/openid3' AND handle = 'hB]D71UPi''"4ivJAnr8''zvgsUqJ3sxRLqSoG&}\|y3H6\$)AmBx1W6!;PE8F1/M}>~b6:''Z+T4|W69YU0Xb8Md?6G|ol5Q+MM(6f!7FQ/ATZjyKB/b.oBE^W6VC0bm(%')
142
+  (0.0ms) SAVEPOINT active_record_1
143
+ SQL (0.1ms) INSERT INTO "open_id_associations" ("assoc_type", "handle", "issued", "lifetime", "secret", "server_url") VALUES (?, ?, ?, ?, ?, ?) [["assoc_type", "HMAC-SHA1"], ["handle", "hB]D71UPi'\"4ivJAnr8'zvgsUqJ3sxRLqSoG&}\\|y3H6\\$)AmBx1W6!;PE8F1/M}>~b6:'Z+T4|W69YU0Xb8Md?6G|ol5Q+MM(6f!7FQ/ATZjyKB/b.oBE^W6VC0bm(%"], ["issued", 1385528953], ["lifetime", 600], ["secret", "\x1A\xB5\a\xE7\xE6^la\xB9\xE9\x80\xB3c:\xD4\xEE]\x8Br!"], ["server_url", "http://www.myopenid.com/openid3"]]
144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
145
+ SQL (0.1ms) DELETE FROM "open_id_associations" WHERE (issued + lifetime < 1385528958)
146
+  (0.1ms) rollback transaction
147
+ Connecting to database specified by database.yml
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'