authist 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 (64) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/lib/authist.rb +16 -0
  5. data/lib/authist/authism.rb +14 -0
  6. data/lib/authist/controller_helpers.rb +31 -0
  7. data/lib/authist/models.rb +6 -0
  8. data/lib/authist/models/role.rb +25 -0
  9. data/lib/authist/models/role_subscription.rb +8 -0
  10. data/lib/authist/version.rb +3 -0
  11. data/lib/generators/active_record/access_type_generator.rb +15 -0
  12. data/lib/generators/active_record/authist_generator.rb +21 -0
  13. data/lib/generators/active_record/install_generator.rb +17 -0
  14. data/lib/generators/active_record/templates/access_type_migration.rb +7 -0
  15. data/lib/generators/authist/access_type_generator.rb +11 -0
  16. data/lib/generators/authist/authist_generator.rb +11 -0
  17. data/lib/generators/authist/install_generator.rb +15 -0
  18. data/lib/generators/templates/authist.rb +4 -0
  19. data/lib/generators/templates/core_migration.rb +17 -0
  20. data/test/dummy/README.rdoc +28 -0
  21. data/test/dummy/Rakefile +6 -0
  22. data/test/dummy/app/assets/javascripts/application.js +13 -0
  23. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  24. data/test/dummy/app/controllers/application_controller.rb +5 -0
  25. data/test/dummy/app/helpers/application_helper.rb +2 -0
  26. data/test/dummy/app/models/user.rb +3 -0
  27. data/test/dummy/app/models/user_group.rb +3 -0
  28. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  29. data/test/dummy/bin/bundle +3 -0
  30. data/test/dummy/bin/rails +4 -0
  31. data/test/dummy/bin/rake +4 -0
  32. data/test/dummy/config.ru +4 -0
  33. data/test/dummy/config/application.rb +23 -0
  34. data/test/dummy/config/boot.rb +5 -0
  35. data/test/dummy/config/database.yml +25 -0
  36. data/test/dummy/config/environment.rb +5 -0
  37. data/test/dummy/config/environments/development.rb +29 -0
  38. data/test/dummy/config/environments/production.rb +80 -0
  39. data/test/dummy/config/environments/test.rb +36 -0
  40. data/test/dummy/config/initializers/authist.rb +4 -0
  41. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  42. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  43. data/test/dummy/config/initializers/inflections.rb +16 -0
  44. data/test/dummy/config/initializers/mime_types.rb +5 -0
  45. data/test/dummy/config/initializers/secret_token.rb +12 -0
  46. data/test/dummy/config/initializers/session_store.rb +3 -0
  47. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  48. data/test/dummy/config/locales/en.yml +23 -0
  49. data/test/dummy/config/routes.rb +56 -0
  50. data/test/dummy/db/development.sqlite3 +0 -0
  51. data/test/dummy/db/migrate/20140315092237_create_users.rb +7 -0
  52. data/test/dummy/db/migrate/20141021153614_create_authistic_behaviour.rb +17 -0
  53. data/test/dummy/db/migrate/20141021160014_add_access_type_shoe_lacing.rb +7 -0
  54. data/test/dummy/db/migrate/20141021200700_create_user_groups.rb +9 -0
  55. data/test/dummy/db/schema.rb +42 -0
  56. data/test/dummy/db/test.sqlite3 +0 -0
  57. data/test/dummy/log/development.log +420 -0
  58. data/test/dummy/log/test.log +10 -0
  59. data/test/dummy/public/404.html +58 -0
  60. data/test/dummy/public/422.html +58 -0
  61. data/test/dummy/public/500.html +57 -0
  62. data/test/dummy/public/favicon.ico +0 -0
  63. data/test/test_helper.rb +15 -0
  64. metadata +201 -0
@@ -0,0 +1,5 @@
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Dummy::Application.initialize!
@@ -0,0 +1,29 @@
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
+ # Do not eager load code on boot.
10
+ config.eager_load = false
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
+ # Raise an error on page load if there are pending migrations
23
+ config.active_record.migration_error = :page_load
24
+
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
28
+ config.assets.debug = true
29
+ end
@@ -0,0 +1,80 @@
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
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both thread web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
+ # config.action_dispatch.rack_cache = true
21
+
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
23
+ config.serve_static_assets = false
24
+
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
31
+
32
+ # Generate digests for assets URLs.
33
+ config.assets.digest = true
34
+
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
37
+
38
+ # Specifies the header that your server uses for sending files.
39
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
+
42
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
+ # config.force_ssl = true
44
+
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
47
+
48
+ # Prepend all log lines with the following tags.
49
+ # config.log_tags = [ :subdomain, :uuid ]
50
+
51
+ # Use a different logger for distributed setups.
52
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
+
54
+ # Use a different cache store in production.
55
+ # config.cache_store = :mem_cache_store
56
+
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
+ # config.action_controller.asset_host = "http://assets.example.com"
59
+
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
+ # config.assets.precompile += %w( search.js )
63
+
64
+ # Ignore bad email addresses and do not raise email delivery errors.
65
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
66
+ # config.action_mailer.raise_delivery_errors = false
67
+
68
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
+ # the I18n.default_locale when a translation can not be found).
70
+ config.i18n.fallbacks = true
71
+
72
+ # Send deprecation notices to registered listeners.
73
+ config.active_support.deprecation = :notify
74
+
75
+ # Disable automatic flushing of the log to improve performance.
76
+ # config.autoflush_log = false
77
+
78
+ # Use default logging formatter so that PID and timestamp are not suppressed.
79
+ config.log_formatter = ::Logger::Formatter.new
80
+ end
@@ -0,0 +1,36 @@
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
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = "public, max-age=3600"
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+ end
@@ -0,0 +1,4 @@
1
+ Authist.setup do |config|
2
+ # Uncomment this if you don't want the controller helpers.
3
+ # config.disable_controller_extensions
4
+ 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,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # 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,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = '42e27f09dc3d86a183322de08ff12086b98b8e6414bb2fccff853fe6888d6fa17a9ff5e99523989cf2929abbb26653363905605e83e21434a0023a1d0cf5cd3d'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -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] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,7 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :username
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,17 @@
1
+ class CreateAuthisticBehaviour < ActiveRecord::Migration
2
+ def change
3
+ create_table :roles do |t|
4
+ t.string :name
5
+ end
6
+
7
+ create_table :role_subscriptions do |t|
8
+ t.references :role, index: true
9
+ t.references :authorizable, index: { name: 'index_role_subs_on_auth_id_and_auth_type_authist' }, polymorphic: true
10
+ end
11
+
12
+ create_table :roles_roles do |t|
13
+ t.references :role, index: true
14
+ t.references :includer, index: true
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,7 @@
1
+ class AddAccessTypeShoeLacing < ActiveRecord::Migration
2
+ def change
3
+ change_table :roles do |t|
4
+ t.boolean :shoe_lacing
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,9 @@
1
+ class CreateUserGroups < ActiveRecord::Migration
2
+ def change
3
+ create_table :user_groups do |t|
4
+ t.string :name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,42 @@
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 that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20141021160014) do
15
+
16
+ create_table "role_subscriptions", force: true do |t|
17
+ t.integer "role_id"
18
+ t.integer "authorizable_id"
19
+ t.string "authorizable_type"
20
+ end
21
+
22
+ add_index "role_subscriptions", ["authorizable_id", "authorizable_type"], name: "index_role_subs_on_auth_id_and_auth_type_authist"
23
+ add_index "role_subscriptions", ["role_id"], name: "index_role_subscriptions_on_role_id"
24
+
25
+ create_table "roles", force: true do |t|
26
+ t.string "name"
27
+ t.boolean "shoe_lacing"
28
+ end
29
+
30
+ create_table "roles_roles", force: true do |t|
31
+ t.integer "role_id"
32
+ t.integer "includer_id"
33
+ end
34
+
35
+ add_index "roles_roles", ["includer_id"], name: "index_roles_roles_on_includer_id"
36
+ add_index "roles_roles", ["role_id"], name: "index_roles_roles_on_role_id"
37
+
38
+ create_table "users", force: true do |t|
39
+ t.string "username"
40
+ end
41
+
42
+ end
File without changes
@@ -0,0 +1,420 @@
1
+ User Load (0.5ms) SELECT "users".* FROM "users"
2
+ SQLite3::SQLException: no such table: users: SELECT "users".* FROM "users"
3
+  (22.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4
+  (22.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
6
+ Migrating to CreateUsersTable (20140315091739)
7
+  (0.3ms) begin transaction
8
+  (0.8ms) CREATE TABLE "users_tables" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255)) 
9
+ SQL (1.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140315091739"]]
10
+  (10.3ms) commit transaction
11
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+ User Load (0.7ms) SELECT "users".* FROM "users"
13
+ SQLite3::SQLException: no such table: users: SELECT "users".* FROM "users"
14
+  (5.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
15
+  (5.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
16
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
17
+ Migrating to CreateUsers (20140315092237)
18
+  (0.1ms) begin transaction
19
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255)) 
20
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140315092237"]]
21
+  (16.9ms) commit transaction
22
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
23
+ User Load (1.1ms) SELECT "users".* FROM "users"
24
+  (0.2ms) begin transaction
25
+ SQL (0.5ms) INSERT INTO "users" ("username") VALUES (?) [["username", "lolo"]]
26
+  (23.7ms) commit transaction
27
+
28
+
29
+ Started GET "/" for 127.0.0.1 at 2014-10-03 14:50:42 +0200
30
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
31
+ Processing by Rails::WelcomeController#index as HTML
32
+ Rendered /Users/rtytgat/.rvm/gems/ruby-2.1.3/gems/railties-4.1.6/lib/rails/templates/rails/welcome/index.html.erb (1.8ms)
33
+ Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
34
+ Authist::Models::Role Load (0.3ms) SELECT "roles".* FROM "roles" ORDER BY "roles"."id" ASC LIMIT 1
35
+ SQLite3::SQLException: no such table: roles: SELECT "roles".* FROM "roles" ORDER BY "roles"."id" ASC LIMIT 1
36
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_roles" ON "roles_roles"."includer_id" = "roles"."id" INNER JOIN "roles" "included_roles_roles" ON "included_roles_roles"."id" = "roles_roles"."role_id"
37
+ SQLite3::SQLException: no such table: roles: SELECT "roles".* FROM "roles" INNER JOIN "roles_roles" ON "roles_roles"."includer_id" = "roles"."id" INNER JOIN "roles" "included_roles_roles" ON "included_roles_roles"."id" = "roles_roles"."role_id"
38
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
39
+ Migrating to AuthistCoreMigration (20141021134029)
40
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
41
+ Migrating to CreateAuthisticBehaviour (20141021134206)
42
+  (0.1ms) begin transaction
43
+  (0.8ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
44
+  (0.1ms) CREATE TABLE "role_subscriptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "role_id" integer, "authorizable_id" integer)
45
+  (0.5ms) select sqlite_version(*)
46
+  (0.1ms) CREATE INDEX "index_role_subscriptions_on_role_id" ON "role_subscriptions" ("role_id")
47
+  (0.1ms)  SELECT sql
48
+ FROM sqlite_master
49
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
50
+ UNION ALL
51
+ SELECT sql
52
+ FROM sqlite_temp_master
53
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
54
+ 
55
+  (0.1ms) CREATE INDEX "index_role_subscriptions_on_authorizable_id" ON "role_subscriptions" ("authorizable_id")
56
+  (0.1ms) CREATE TABLE "roles_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "role_id" integer, "includer_id" integer) 
57
+  (0.1ms) CREATE INDEX "index_roles_roles_on_role_id" ON "roles_roles" ("role_id")
58
+  (0.1ms)  SELECT sql
59
+ FROM sqlite_master
60
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
61
+ UNION ALL
62
+ SELECT sql
63
+ FROM sqlite_temp_master
64
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
65
+ 
66
+  (0.1ms) CREATE INDEX "index_roles_roles_on_includer_id" ON "roles_roles" ("includer_id")
67
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141021134206"]]
68
+  (0.8ms) commit transaction
69
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
70
+  (0.1ms) SELECT sql
71
+ FROM sqlite_master
72
+ WHERE name='index_role_subscriptions_on_authorizable_id' AND type='index'
73
+ UNION ALL
74
+ SELECT sql
75
+ FROM sqlite_temp_master
76
+ WHERE name='index_role_subscriptions_on_authorizable_id' AND type='index'
77
+
78
+  (0.1ms)  SELECT sql
79
+ FROM sqlite_master
80
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
81
+ UNION ALL
82
+ SELECT sql
83
+ FROM sqlite_temp_master
84
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
85
+ 
86
+  (0.3ms) SELECT sql
87
+ FROM sqlite_master
88
+ WHERE name='index_roles_roles_on_includer_id' AND type='index'
89
+ UNION ALL
90
+ SELECT sql
91
+ FROM sqlite_temp_master
92
+ WHERE name='index_roles_roles_on_includer_id' AND type='index'
93
+
94
+  (0.1ms)  SELECT sql
95
+ FROM sqlite_master
96
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
97
+ UNION ALL
98
+ SELECT sql
99
+ FROM sqlite_temp_master
100
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
101
+ 
102
+ Authist::Models::Role Load (1.7ms) SELECT "roles".* FROM "roles"
103
+  (0.1ms) begin transaction
104
+ SQL (0.7ms) INSERT INTO "roles" ("name") VALUES (?) [["name", "Oho"]]
105
+  (0.9ms) commit transaction
106
+ Authist::Models::Role Load (0.5ms) SELECT "roles".* FROM "roles"
107
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" ORDER BY "roles"."id" ASC LIMIT 1
108
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" ORDER BY "roles"."id" ASC LIMIT 1
109
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_roles" ON "roles"."id" = "roles_roles"."role_id" WHERE "roles_roles"."includer_id" = ? [["includer_id", 1]]
110
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
111
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
112
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
113
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
114
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
115
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "role_subscriptions" ON "roles"."id" = "role_subscriptions"."role_id" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ? [["authorizable_id", 1], [nil, "User"]]
116
+ SQLite3::SQLException: no such column: role_subscriptions.authorizable_type: SELECT "roles".* FROM "roles" INNER JOIN "role_subscriptions" ON "roles"."id" = "role_subscriptions"."role_id" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ?
117
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
118
+  (0.1ms) select sqlite_version(*)
119
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
120
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
121
+ Migrating to CreateUsers (20140315092237)
122
+  (0.0ms) begin transaction
123
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255))
124
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140315092237"]]
125
+  (0.8ms) commit transaction
126
+ Migrating to CreateAuthisticBehaviour (20141021134206)
127
+  (0.0ms) begin transaction
128
+  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
129
+  (0.1ms) CREATE TABLE "role_subscriptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "role_id" integer, "authorizable_id" integer) 
130
+  (0.1ms) CREATE INDEX "index_role_subscriptions_on_role_id" ON "role_subscriptions" ("role_id")
131
+  (0.1ms)  SELECT sql
132
+ FROM sqlite_master
133
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
134
+ UNION ALL
135
+ SELECT sql
136
+ FROM sqlite_temp_master
137
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
138
+ 
139
+  (0.1ms) CREATE INDEX "index_role_subscriptions_on_authorizable_id" ON "role_subscriptions" ("authorizable_id")
140
+  (0.1ms) CREATE TABLE "roles_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "role_id" integer, "includer_id" integer) 
141
+  (0.1ms) CREATE INDEX "index_roles_roles_on_role_id" ON "roles_roles" ("role_id")
142
+  (0.1ms)  SELECT sql
143
+ FROM sqlite_master
144
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
145
+ UNION ALL
146
+ SELECT sql
147
+ FROM sqlite_temp_master
148
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
149
+ 
150
+  (0.1ms) CREATE INDEX "index_roles_roles_on_includer_id" ON "roles_roles" ("includer_id")
151
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141021134206"]]
152
+  (0.9ms) commit transaction
153
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
154
+  (0.1ms) SELECT sql
155
+ FROM sqlite_master
156
+ WHERE name='index_role_subscriptions_on_authorizable_id' AND type='index'
157
+ UNION ALL
158
+ SELECT sql
159
+ FROM sqlite_temp_master
160
+ WHERE name='index_role_subscriptions_on_authorizable_id' AND type='index'
161
+
162
+  (0.1ms)  SELECT sql
163
+ FROM sqlite_master
164
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
165
+ UNION ALL
166
+ SELECT sql
167
+ FROM sqlite_temp_master
168
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
169
+ 
170
+  (0.1ms) SELECT sql
171
+ FROM sqlite_master
172
+ WHERE name='index_roles_roles_on_includer_id' AND type='index'
173
+ UNION ALL
174
+ SELECT sql
175
+ FROM sqlite_temp_master
176
+ WHERE name='index_roles_roles_on_includer_id' AND type='index'
177
+
178
+  (0.1ms)  SELECT sql
179
+ FROM sqlite_master
180
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
181
+ UNION ALL
182
+ SELECT sql
183
+ FROM sqlite_temp_master
184
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
185
+ 
186
+  (0.1ms) begin transaction
187
+ SQL (0.5ms) INSERT INTO "users" ("username") VALUES (?) [["username", "wefwq"]]
188
+  (0.7ms) commit transaction
189
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
190
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "role_subscriptions" ON "roles"."id" = "role_subscriptions"."role_id" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ? [["authorizable_id", 1], [nil, "User"]]
191
+ SQLite3::SQLException: no such column: role_subscriptions.authorizable_type: SELECT "roles".* FROM "roles" INNER JOIN "role_subscriptions" ON "roles"."id" = "role_subscriptions"."role_id" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ?
192
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
193
+  (0.1ms) select sqlite_version(*)
194
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
195
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
196
+ Migrating to CreateUsers (20140315092237)
197
+  (0.0ms) begin transaction
198
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255))
199
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140315092237"]]
200
+  (0.8ms) commit transaction
201
+ Migrating to CreateAuthisticBehaviour (20141021152136)
202
+  (0.0ms) begin transaction
203
+  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
204
+  (0.1ms) CREATE TABLE "role_subscriptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "role_id" integer, "authorizable_id" integer, "authorizable_type" varchar(255)) 
205
+  (0.1ms) CREATE INDEX "index_role_subscriptions_on_role_id" ON "role_subscriptions" ("role_id")
206
+  (0.7ms) rollback transaction
207
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
208
+  (0.1ms) select sqlite_version(*)
209
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
210
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
211
+ Migrating to CreateUsers (20140315092237)
212
+  (0.0ms) begin transaction
213
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255))
214
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140315092237"]]
215
+  (0.7ms) commit transaction
216
+ Migrating to CreateAuthisticBehaviour (20141021152452)
217
+  (0.0ms) begin transaction
218
+  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
219
+  (0.1ms) CREATE TABLE "role_subscriptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "role_id" integer, "authorizable_id" integer, "authorizable_type" varchar(255)) 
220
+  (0.1ms) CREATE INDEX "index_role_subscriptions_on_role_id" ON "role_subscriptions" ("role_id")
221
+  (0.3ms) rollback transaction
222
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
223
+  (0.1ms) select sqlite_version(*)
224
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
225
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
226
+ Migrating to CreateUsers (20140315092237)
227
+  (0.0ms) begin transaction
228
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255))
229
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140315092237"]]
230
+  (1.4ms) commit transaction
231
+ Migrating to CreateAuthisticBehaviour (20141021152518)
232
+  (0.0ms) begin transaction
233
+  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
234
+  (0.1ms) CREATE TABLE "role_subscriptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "role_id" integer, "authorizable_id" integer, "authorizable_type" varchar(255)) 
235
+  (0.1ms) CREATE INDEX "index_role_subscriptions_on_role_id" ON "role_subscriptions" ("role_id")
236
+  (0.3ms) rollback transaction
237
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
238
+  (0.1ms) select sqlite_version(*)
239
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
240
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
241
+ Migrating to CreateUsers (20140315092237)
242
+  (0.0ms) begin transaction
243
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255))
244
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140315092237"]]
245
+  (0.7ms) commit transaction
246
+ Migrating to CreateAuthisticBehaviour (20141021152518)
247
+  (0.0ms) begin transaction
248
+  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
249
+  (0.1ms) CREATE TABLE "role_subscriptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "role_id" integer, "authorizable_id" integer, "authorizable_type" varchar(255)) 
250
+  (0.1ms) CREATE INDEX "index_role_subscriptions_on_role_id" ON "role_subscriptions" ("role_id")
251
+  (0.3ms) rollback transaction
252
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
253
+  (0.1ms) select sqlite_version(*)
254
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
255
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
256
+ Migrating to CreateUsers (20140315092237)
257
+  (0.0ms) begin transaction
258
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255))
259
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140315092237"]]
260
+  (0.9ms) commit transaction
261
+ Migrating to CreateAuthisticBehaviour (20141021152652)
262
+  (0.0ms) begin transaction
263
+  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
264
+  (0.1ms) CREATE TABLE "role_subscriptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "role_id" integer, "authorizable_id" integer, "authorizable_type" varchar(255)) 
265
+  (0.1ms) CREATE INDEX "index_role_subscriptions_on_role_id" ON "role_subscriptions" ("role_id")
266
+  (0.3ms) rollback transaction
267
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
268
+  (0.1ms) select sqlite_version(*)
269
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
270
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
271
+ Migrating to CreateUsers (20140315092237)
272
+  (0.0ms) begin transaction
273
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255))
274
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140315092237"]]
275
+  (0.7ms) commit transaction
276
+ Migrating to CreateAuthisticBehaviour (20141021153614)
277
+  (0.0ms) begin transaction
278
+  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
279
+  (0.1ms) CREATE TABLE "role_subscriptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "role_id" integer, "authorizable_id" integer, "authorizable_type" varchar(255)) 
280
+  (0.1ms) CREATE INDEX "index_role_subscriptions_on_role_id" ON "role_subscriptions" ("role_id")
281
+  (0.1ms)  SELECT sql
282
+ FROM sqlite_master
283
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
284
+ UNION ALL
285
+ SELECT sql
286
+ FROM sqlite_temp_master
287
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
288
+ 
289
+  (0.1ms) CREATE INDEX "index_role_subs_on_auth_id_and_auth_type_authist" ON "role_subscriptions" ("authorizable_id", "authorizable_type")
290
+  (0.2ms) CREATE TABLE "roles_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "role_id" integer, "includer_id" integer) 
291
+  (0.1ms) CREATE INDEX "index_roles_roles_on_role_id" ON "roles_roles" ("role_id")
292
+  (0.1ms)  SELECT sql
293
+ FROM sqlite_master
294
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
295
+ UNION ALL
296
+ SELECT sql
297
+ FROM sqlite_temp_master
298
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
299
+ 
300
+  (0.2ms) CREATE INDEX "index_roles_roles_on_includer_id" ON "roles_roles" ("includer_id")
301
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141021153614"]]
302
+  (0.9ms) commit transaction
303
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
304
+  (0.1ms) SELECT sql
305
+ FROM sqlite_master
306
+ WHERE name='index_role_subs_on_auth_id_and_auth_type_authist' AND type='index'
307
+ UNION ALL
308
+ SELECT sql
309
+ FROM sqlite_temp_master
310
+ WHERE name='index_role_subs_on_auth_id_and_auth_type_authist' AND type='index'
311
+
312
+  (0.1ms)  SELECT sql
313
+ FROM sqlite_master
314
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
315
+ UNION ALL
316
+ SELECT sql
317
+ FROM sqlite_temp_master
318
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
319
+ 
320
+  (0.1ms) SELECT sql
321
+ FROM sqlite_master
322
+ WHERE name='index_roles_roles_on_includer_id' AND type='index'
323
+ UNION ALL
324
+ SELECT sql
325
+ FROM sqlite_temp_master
326
+ WHERE name='index_roles_roles_on_includer_id' AND type='index'
327
+
328
+  (0.1ms)  SELECT sql
329
+ FROM sqlite_master
330
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
331
+ UNION ALL
332
+ SELECT sql
333
+ FROM sqlite_temp_master
334
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
335
+ 
336
+  (0.1ms) begin transaction
337
+ SQL (0.5ms) INSERT INTO "users" ("username") VALUES (?) [["username", "uhu"]]
338
+  (2.6ms) commit transaction
339
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
340
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "role_subscriptions" ON "roles"."id" = "role_subscriptions"."role_id" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ? [["authorizable_id", 1], ["authorizable_type", "User"]]
341
+ Authist::Models::RoleSubscription Load (0.2ms) SELECT "role_subscriptions".* FROM "role_subscriptions" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ? [["authorizable_id", 1], ["authorizable_type", "User"]]
342
+  (0.1ms) begin transaction
343
+ SQL (0.4ms) INSERT INTO "roles" ("name") VALUES (?) [["name", "aarshaarverzamelaar"]]
344
+  (3.1ms) commit transaction
345
+  (0.1ms) begin transaction
346
+ SQL (0.4ms) INSERT INTO "role_subscriptions" ("authorizable_id", "authorizable_type", "role_id") VALUES (?, ?, ?) [["authorizable_id", 1], ["authorizable_type", "User"], ["role_id", 1]]
347
+  (0.8ms) commit transaction
348
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
349
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "role_subscriptions" ON "roles"."id" = "role_subscriptions"."role_id" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ? [["authorizable_id", 1], ["authorizable_type", "User"]]
350
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
351
+ Migrating to AddAccessTypeShoeLacing (20141021160014)
352
+  (0.1ms) begin transaction
353
+  (0.9ms) ALTER TABLE "roles" ADD "shoe_lacing" boolean
354
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141021160014"]]
355
+  (0.7ms) commit transaction
356
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
357
+  (0.1ms)  SELECT sql
358
+ FROM sqlite_master
359
+ WHERE name='index_role_subs_on_auth_id_and_auth_type_authist' AND type='index'
360
+ UNION ALL
361
+ SELECT sql
362
+ FROM sqlite_temp_master
363
+ WHERE name='index_role_subs_on_auth_id_and_auth_type_authist' AND type='index'
364
+ 
365
+  (0.1ms) SELECT sql
366
+ FROM sqlite_master
367
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
368
+ UNION ALL
369
+ SELECT sql
370
+ FROM sqlite_temp_master
371
+ WHERE name='index_role_subscriptions_on_role_id' AND type='index'
372
+
373
+  (0.1ms)  SELECT sql
374
+ FROM sqlite_master
375
+ WHERE name='index_roles_roles_on_includer_id' AND type='index'
376
+ UNION ALL
377
+ SELECT sql
378
+ FROM sqlite_temp_master
379
+ WHERE name='index_roles_roles_on_includer_id' AND type='index'
380
+ 
381
+  (0.1ms) SELECT sql
382
+ FROM sqlite_master
383
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
384
+ UNION ALL
385
+ SELECT sql
386
+ FROM sqlite_temp_master
387
+ WHERE name='index_roles_roles_on_role_id' AND type='index'
388
+
389
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
390
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "role_subscriptions" ON "roles"."id" = "role_subscriptions"."role_id" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ? [["authorizable_id", 1], ["authorizable_type", "User"]]
391
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
392
+ Authist::Models::Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "role_subscriptions" ON "roles"."id" = "role_subscriptions"."role_id" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ? [["authorizable_id", 1], ["authorizable_type", "User"]]
393
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_roles" ON "roles"."id" = "roles_roles"."role_id" WHERE "roles_roles"."includer_id" = ? [["includer_id", 1]]
394
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" ORDER BY "roles"."id" ASC LIMIT 1
395
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" ORDER BY "roles"."id" ASC LIMIT 1
396
+  (0.1ms) begin transaction
397
+ SQL (0.4ms) UPDATE "roles" SET "shoe_lacing" = ? WHERE "roles"."id" = 1 [["shoe_lacing", "t"]]
398
+  (3.1ms) commit transaction
399
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
400
+ Authist::Models::Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "role_subscriptions" ON "roles"."id" = "role_subscriptions"."role_id" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ? [["authorizable_id", 1], ["authorizable_type", "User"]]
401
+  (0.1ms) begin transaction
402
+ SQL (0.3ms) UPDATE "roles" SET "shoe_lacing" = ? WHERE "roles"."id" = 1 [["shoe_lacing", "f"]]
403
+  (3.0ms) commit transaction
404
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
405
+ Authist::Models::Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "role_subscriptions" ON "roles"."id" = "role_subscriptions"."role_id" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ? [["authorizable_id", 1], ["authorizable_type", "User"]]
406
+ Authist::Models::Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_roles" ON "roles"."id" = "roles_roles"."role_id" WHERE "roles_roles"."includer_id" = ? [["includer_id", 1]]
407
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" ORDER BY "roles"."id" ASC LIMIT 1
408
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" ORDER BY "roles"."id" ASC LIMIT 1
409
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" ORDER BY "roles"."id" ASC LIMIT 1
410
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
411
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "role_subscriptions" ON "roles"."id" = "role_subscriptions"."role_id" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ? [["authorizable_id", 1], ["authorizable_type", "User"]]
412
+ Authist::Models::Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_roles" ON "roles"."id" = "roles_roles"."role_id" WHERE "roles_roles"."includer_id" = ? [["includer_id", 1]]
413
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
414
+ Authist::Models::Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "role_subscriptions" ON "roles"."id" = "role_subscriptions"."role_id" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ? [["authorizable_id", 1], ["authorizable_type", "User"]]
415
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
416
+ Authist::Models::Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_roles" ON "roles_roles"."includer_id" = "roles"."id" INNER JOIN "roles" "included_roles_roles" ON "included_roles_roles"."id" = "roles_roles"."role_id"
417
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
418
+ Authist::Models::Role Load (0.3ms) SELECT "roles".* FROM "roles" INNER JOIN "role_subscriptions" ON "roles"."id" = "role_subscriptions"."role_id" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ? [["authorizable_id", 1], ["authorizable_type", "User"]]
419
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
420
+ Authist::Models::RoleSubscription Load (0.1ms) SELECT "role_subscriptions".* FROM "role_subscriptions" WHERE "role_subscriptions"."authorizable_id" = ? AND "role_subscriptions"."authorizable_type" = ? [["authorizable_id", 1], ["authorizable_type", "User"]]