statify_model 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.
- checksums.yaml +7 -0
 - data/MIT-LICENSE +20 -0
 - data/README.rdoc +52 -0
 - data/Rakefile +34 -0
 - data/lib/statify_model/has_status.rb +14 -0
 - data/lib/statify_model/status_manager.rb +28 -0
 - data/lib/statify_model/version.rb +3 -0
 - data/lib/statify_model.rb +5 -0
 - data/lib/tasks/statify_model_tasks.rake +4 -0
 - data/test/dummy/README.rdoc +28 -0
 - data/test/dummy/Rakefile +6 -0
 - data/test/dummy/app/assets/javascripts/application.js +13 -0
 - data/test/dummy/app/assets/stylesheets/application.css +15 -0
 - data/test/dummy/app/controllers/application_controller.rb +5 -0
 - data/test/dummy/app/helpers/application_helper.rb +2 -0
 - data/test/dummy/app/models/talk.rb +3 -0
 - data/test/dummy/app/views/layouts/application.html.erb +14 -0
 - data/test/dummy/bin/bundle +3 -0
 - data/test/dummy/bin/rails +4 -0
 - data/test/dummy/bin/rake +4 -0
 - data/test/dummy/bin/setup +29 -0
 - data/test/dummy/config/application.rb +26 -0
 - data/test/dummy/config/boot.rb +5 -0
 - data/test/dummy/config/database.yml +25 -0
 - data/test/dummy/config/environment.rb +5 -0
 - data/test/dummy/config/environments/development.rb +41 -0
 - data/test/dummy/config/environments/production.rb +79 -0
 - data/test/dummy/config/environments/test.rb +42 -0
 - data/test/dummy/config/initializers/assets.rb +11 -0
 - data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
 - data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
 - data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
 - data/test/dummy/config/initializers/inflections.rb +16 -0
 - data/test/dummy/config/initializers/mime_types.rb +4 -0
 - data/test/dummy/config/initializers/session_store.rb +3 -0
 - data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
 - data/test/dummy/config/locales/en.yml +23 -0
 - data/test/dummy/config/routes.rb +56 -0
 - data/test/dummy/config/secrets.yml +22 -0
 - data/test/dummy/config.ru +4 -0
 - data/test/dummy/db/migrate/20151010104407_create_talks.rb +9 -0
 - data/test/dummy/db/schema.rb +22 -0
 - data/test/dummy/log/development.log +19 -0
 - data/test/dummy/log/test.log +381 -0
 - data/test/dummy/public/404.html +67 -0
 - data/test/dummy/public/422.html +67 -0
 - data/test/dummy/public/500.html +66 -0
 - data/test/dummy/public/favicon.ico +0 -0
 - data/test/dummy/test/fixtures/talks.yml +7 -0
 - data/test/dummy/test/models/talk_test.rb +59 -0
 - data/test/has_status_test.rb +0 -0
 - data/test/statify_model_test.rb +7 -0
 - data/test/test_helper.rb +21 -0
 - metadata +176 -0
 
| 
         @@ -0,0 +1,56 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Rails.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,22 @@ 
     | 
|
| 
      
 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 the secrets in this file are kept private
         
     | 
| 
      
 11 
     | 
    
         
            +
            # if you're sharing your code publicly.
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            development:
         
     | 
| 
      
 14 
     | 
    
         
            +
              secret_key_base: dd45a2793d87498cd88db6063dcbc3888ae86f3bfe61505c9a943ae1eefef93adcd5f7dddceed088968725dd17fb0175d1c1c639c0f01c4d0e0136e50fe77bb6
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            test:
         
     | 
| 
      
 17 
     | 
    
         
            +
              secret_key_base: bd450b6be187858dc91a7cd37616161c9a253cb098ee78d652d7fad0bf39874af774cfb02b9e6673767ac4c231f1fb299bde1a88024872aaa98228ec54f813dc
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            # Do not keep production secrets in the repository,
         
     | 
| 
      
 20 
     | 
    
         
            +
            # instead read values from the environment.
         
     | 
| 
      
 21 
     | 
    
         
            +
            production:
         
     | 
| 
      
 22 
     | 
    
         
            +
              secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
         
     | 
| 
         @@ -0,0 +1,22 @@ 
     | 
|
| 
      
 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: 20151010104407) do
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
              create_table "talks", force: :cascade do |t|
         
     | 
| 
      
 17 
     | 
    
         
            +
                t.boolean  "enabled"
         
     | 
| 
      
 18 
     | 
    
         
            +
                t.datetime "created_at", null: false
         
     | 
| 
      
 19 
     | 
    
         
            +
                t.datetime "updated_at", null: false
         
     | 
| 
      
 20 
     | 
    
         
            +
              end
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,19 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
              [1m[36m (33.3ms)[0m  [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
         
     | 
| 
      
 2 
     | 
    
         
            +
              [1m[35m (20.0ms)[0m  CREATE UNIQUE INDEX `unique_schema_migrations`  ON `schema_migrations` (`version`) 
         
     | 
| 
      
 3 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 4 
     | 
    
         
            +
            Migrating to CreateTalks (20151010104407)
         
     | 
| 
      
 5 
     | 
    
         
            +
              [1m[35m (25.7ms)[0m  CREATE TABLE `talks` (`id` int(11) auto_increment PRIMARY KEY, `enabled` tinyint(1), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
         
     | 
| 
      
 6 
     | 
    
         
            +
              [1m[36m (0.2ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 7 
     | 
    
         
            +
              [1m[35mSQL (12.5ms)[0m  INSERT INTO `schema_migrations` (`version`) VALUES ('20151010104407')
         
     | 
| 
      
 8 
     | 
    
         
            +
              [1m[36m (6.1ms)[0m  [1mCOMMIT[0m
         
     | 
| 
      
 9 
     | 
    
         
            +
              [1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m  SELECT `schema_migrations`.* FROM `schema_migrations`
         
     | 
| 
      
 10 
     | 
    
         
            +
              [1m[36m (0.4ms)[0m  [1mSELECT fk.referenced_table_name as 'to_table'
         
     | 
| 
      
 11 
     | 
    
         
            +
                  ,fk.referenced_column_name as 'primary_key'
         
     | 
| 
      
 12 
     | 
    
         
            +
                  ,fk.column_name as 'column'
         
     | 
| 
      
 13 
     | 
    
         
            +
                  ,fk.constraint_name as 'name'
         
     | 
| 
      
 14 
     | 
    
         
            +
            FROM information_schema.key_column_usage fk
         
     | 
| 
      
 15 
     | 
    
         
            +
            WHERE fk.referenced_column_name is not null
         
     | 
| 
      
 16 
     | 
    
         
            +
              AND fk.table_schema = 'statify_development'
         
     | 
| 
      
 17 
     | 
    
         
            +
              AND fk.table_name = 'talks'
         
     | 
| 
      
 18 
     | 
    
         
            +
            [0m
         
     | 
| 
      
 19 
     | 
    
         
            +
              [1m[35m (0.2ms)[0m  SHOW CREATE TABLE `talks`
         
     | 
| 
         @@ -0,0 +1,381 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
              [1m[36m (8.9ms)[0m  [1mDROP DATABASE IF EXISTS `statify_test`[0m
         
     | 
| 
      
 2 
     | 
    
         
            +
              [1m[35m (0.5ms)[0m  CREATE DATABASE `statify_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
         
     | 
| 
      
 3 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 4 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 5 
     | 
    
         
            +
            StatifyModelTest: test_truth
         
     | 
| 
      
 6 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 7 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  ROLLBACK
         
     | 
| 
      
 8 
     | 
    
         
            +
              [1m[36m (0.5ms)[0m  [1mDROP DATABASE IF EXISTS `statify_test`[0m
         
     | 
| 
      
 9 
     | 
    
         
            +
              [1m[35m (0.3ms)[0m  CREATE DATABASE `statify_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
         
     | 
| 
      
 10 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 11 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 12 
     | 
    
         
            +
            StatifyModelTest: test_truth
         
     | 
| 
      
 13 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 14 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  ROLLBACK
         
     | 
| 
      
 15 
     | 
    
         
            +
              [1m[36m (0.5ms)[0m  [1mDROP DATABASE IF EXISTS `statify_test`[0m
         
     | 
| 
      
 16 
     | 
    
         
            +
              [1m[35m (0.4ms)[0m  CREATE DATABASE `statify_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
         
     | 
| 
      
 17 
     | 
    
         
            +
              [1m[36m (26.5ms)[0m  [1mCREATE TABLE `talks` (`id` int(11) auto_increment PRIMARY KEY, `enabled` tinyint(1), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
         
     | 
| 
      
 18 
     | 
    
         
            +
              [1m[35m (13.4ms)[0m  CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
         
     | 
| 
      
 19 
     | 
    
         
            +
              [1m[36m (16.0ms)[0m  [1mCREATE UNIQUE INDEX `unique_schema_migrations`  ON `schema_migrations` (`version`) [0m
         
     | 
| 
      
 20 
     | 
    
         
            +
              [1m[35m (0.2ms)[0m  SELECT version FROM `schema_migrations`
         
     | 
| 
      
 21 
     | 
    
         
            +
              [1m[36m (0.4ms)[0m  [1mINSERT INTO `schema_migrations` (version) VALUES ('20151010104407')[0m
         
     | 
| 
      
 22 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 23 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 24 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 25 
     | 
    
         
            +
            TalkTest: test_the_truth
         
     | 
| 
      
 26 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 27 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 28 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 29 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 30 
     | 
    
         
            +
            StatifyModelTest: test_truth
         
     | 
| 
      
 31 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 32 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 33 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 34 
     | 
    
         
            +
              [1m[35m (0.2ms)[0m  BEGIN
         
     | 
| 
      
 35 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 36 
     | 
    
         
            +
            TalkTest: test_the_truth
         
     | 
| 
      
 37 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 38 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 39 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 40 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 41 
     | 
    
         
            +
            StatifyModelTest: test_truth
         
     | 
| 
      
 42 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 43 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 44 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 45 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 46 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 47 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 48 
     | 
    
         
            +
              [1m[35m (0.2ms)[0m  BEGIN
         
     | 
| 
      
 49 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 50 
     | 
    
         
            +
            StatifyModelTest: test_truth
         
     | 
| 
      
 51 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 52 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 53 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 54 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 55 
     | 
    
         
            +
            TalkTest: test_the_truth
         
     | 
| 
      
 56 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 57 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 58 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 59 
     | 
    
         
            +
              [1m[35m (0.2ms)[0m  BEGIN
         
     | 
| 
      
 60 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 61 
     | 
    
         
            +
            TalkTest: test_the_truth
         
     | 
| 
      
 62 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 63 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 64 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 65 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 66 
     | 
    
         
            +
            StatifyModelTest: test_truth
         
     | 
| 
      
 67 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 68 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 69 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 70 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 71 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 72 
     | 
    
         
            +
            StatifyModelTest: test_truth
         
     | 
| 
      
 73 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 74 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 75 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 76 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 77 
     | 
    
         
            +
            TalkTest: test_the_truth
         
     | 
| 
      
 78 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 79 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 80 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 81 
     | 
    
         
            +
              [1m[35m (0.2ms)[0m  BEGIN
         
     | 
| 
      
 82 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 83 
     | 
    
         
            +
            TalkTest: test_the_truth
         
     | 
| 
      
 84 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 85 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 86 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 87 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 88 
     | 
    
         
            +
            StatifyModelTest: test_truth
         
     | 
| 
      
 89 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 90 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 91 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 92 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 93 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 94 
     | 
    
         
            +
            StatifyModelTest: test_truth
         
     | 
| 
      
 95 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 96 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 97 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 98 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 99 
     | 
    
         
            +
            TalkTest: test_the_truth
         
     | 
| 
      
 100 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 101 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 102 
     | 
    
         
            +
              [1m[35mSQL (0.3ms)[0m  INSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (1, '2015-10-10 11:05:57', '2015-10-10 11:05:57')
         
     | 
| 
      
 103 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 104 
     | 
    
         
            +
              [1m[35m (12.1ms)[0m  ROLLBACK
         
     | 
| 
      
 105 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 106 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 107 
     | 
    
         
            +
              [1m[35m (0.2ms)[0m  BEGIN
         
     | 
| 
      
 108 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 109 
     | 
    
         
            +
            StatifyModelTest: test_truth
         
     | 
| 
      
 110 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 111 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 112 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 113 
     | 
    
         
            +
            --------------------------
         
     | 
| 
      
 114 
     | 
    
         
            +
            TalkTest: test_the_disable
         
     | 
| 
      
 115 
     | 
    
         
            +
            --------------------------
         
     | 
| 
      
 116 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 117 
     | 
    
         
            +
              [1m[35mSQL (0.2ms)[0m  INSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (0, '2015-10-10 11:06:49', '2015-10-10 11:06:49')
         
     | 
| 
      
 118 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 119 
     | 
    
         
            +
              [1m[35m (0.4ms)[0m  ROLLBACK
         
     | 
| 
      
 120 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 121 
     | 
    
         
            +
            -------------------------
         
     | 
| 
      
 122 
     | 
    
         
            +
            TalkTest: test_the_enable
         
     | 
| 
      
 123 
     | 
    
         
            +
            -------------------------
         
     | 
| 
      
 124 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 125 
     | 
    
         
            +
              [1m[36mSQL (0.2ms)[0m  [1mINSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (1, '2015-10-10 11:06:49', '2015-10-10 11:06:49')[0m
         
     | 
| 
      
 126 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 127 
     | 
    
         
            +
              [1m[36m (0.3ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 128 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 129 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 130 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 131 
     | 
    
         
            +
            StatifyModelTest: test_truth
         
     | 
| 
      
 132 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 133 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 134 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 135 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 136 
     | 
    
         
            +
            TalkTest: test_.disabled
         
     | 
| 
      
 137 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 138 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 139 
     | 
    
         
            +
              [1m[35mSQL (0.4ms)[0m  INSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (1, '2015-10-10 11:19:31', '2015-10-10 11:19:31')
         
     | 
| 
      
 140 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 141 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 142 
     | 
    
         
            +
              [1m[36mSQL (0.1ms)[0m  [1mINSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (1, '2015-10-10 11:19:31', '2015-10-10 11:19:31')[0m
         
     | 
| 
      
 143 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 144 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 145 
     | 
    
         
            +
              [1m[35mSQL (0.1ms)[0m  INSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (0, '2015-10-10 11:19:31', '2015-10-10 11:19:31')
         
     | 
| 
      
 146 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 147 
     | 
    
         
            +
              [1m[35m (0.2ms)[0m  SELECT `talks`.`id` FROM `talks` WHERE `talks`.`enabled` = 0
         
     | 
| 
      
 148 
     | 
    
         
            +
              [1m[36m (6.0ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 149 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 150 
     | 
    
         
            +
            ---------------------
         
     | 
| 
      
 151 
     | 
    
         
            +
            TalkTest: test_enable
         
     | 
| 
      
 152 
     | 
    
         
            +
            ---------------------
         
     | 
| 
      
 153 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 154 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 155 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 156 
     | 
    
         
            +
              [1m[35m (0.2ms)[0m  BEGIN
         
     | 
| 
      
 157 
     | 
    
         
            +
            ----------------------
         
     | 
| 
      
 158 
     | 
    
         
            +
            TalkTest: test_disable
         
     | 
| 
      
 159 
     | 
    
         
            +
            ----------------------
         
     | 
| 
      
 160 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 161 
     | 
    
         
            +
              [1m[35mSQL (0.2ms)[0m  UPDATE `talks` SET `enabled` = 0, `updated_at` = '2015-10-10 11:19:31' WHERE `talks`.`id` = 4
         
     | 
| 
      
 162 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 163 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  ROLLBACK
         
     | 
| 
      
 164 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 165 
     | 
    
         
            +
            -----------------------------
         
     | 
| 
      
 166 
     | 
    
         
            +
            TalkTest: test_disabled?_true
         
     | 
| 
      
 167 
     | 
    
         
            +
            -----------------------------
         
     | 
| 
      
 168 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 169 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 170 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  ROLLBACK
         
     | 
| 
      
 171 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 172 
     | 
    
         
            +
            -----------------------
         
     | 
| 
      
 173 
     | 
    
         
            +
            TalkTest: test_.enabled
         
     | 
| 
      
 174 
     | 
    
         
            +
            -----------------------
         
     | 
| 
      
 175 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 176 
     | 
    
         
            +
              [1m[36mSQL (0.1ms)[0m  [1mUPDATE `talks` SET `enabled` = 1, `updated_at` = '2015-10-10 11:19:31' WHERE `talks`.`id` = 4[0m
         
     | 
| 
      
 177 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 178 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 179 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 180 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 181 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 182 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSELECT `talks`.`id` FROM `talks` WHERE `talks`.`enabled` = 1[0m
         
     | 
| 
      
 183 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  ROLLBACK
         
     | 
| 
      
 184 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 185 
     | 
    
         
            +
            ------------------------------
         
     | 
| 
      
 186 
     | 
    
         
            +
            TalkTest: test_disabled?_false
         
     | 
| 
      
 187 
     | 
    
         
            +
            ------------------------------
         
     | 
| 
      
 188 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 189 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 190 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  ROLLBACK
         
     | 
| 
      
 191 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 192 
     | 
    
         
            +
            -----------------------------------------
         
     | 
| 
      
 193 
     | 
    
         
            +
            TalkTest: test_toggle_status_when_enabled
         
     | 
| 
      
 194 
     | 
    
         
            +
            -----------------------------------------
         
     | 
| 
      
 195 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 196 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 197 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 198 
     | 
    
         
            +
              [1m[36mSQL (0.1ms)[0m  [1mUPDATE `talks` SET `enabled` = 0, `updated_at` = '2015-10-10 11:19:31' WHERE `talks`.`id` = 4[0m
         
     | 
| 
      
 199 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 200 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 201 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 202 
     | 
    
         
            +
            ------------------------------------------
         
     | 
| 
      
 203 
     | 
    
         
            +
            TalkTest: test_toggle_status_when_disabled
         
     | 
| 
      
 204 
     | 
    
         
            +
            ------------------------------------------
         
     | 
| 
      
 205 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 206 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 207 
     | 
    
         
            +
              [1m[36m (0.0ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 208 
     | 
    
         
            +
              [1m[35mSQL (0.1ms)[0m  UPDATE `talks` SET `enabled` = 1, `updated_at` = '2015-10-10 11:19:31' WHERE `talks`.`id` = 4
         
     | 
| 
      
 209 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 210 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  ROLLBACK
         
     | 
| 
      
 211 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 212 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 213 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 214 
     | 
    
         
            +
            StatifyModelTest: test_truth
         
     | 
| 
      
 215 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 216 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 217 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 218 
     | 
    
         
            +
            -----------------------
         
     | 
| 
      
 219 
     | 
    
         
            +
            TalkTest: test_.enabled
         
     | 
| 
      
 220 
     | 
    
         
            +
            -----------------------
         
     | 
| 
      
 221 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 222 
     | 
    
         
            +
              [1m[35mSQL (0.2ms)[0m  INSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (1, '2015-10-10 11:21:32', '2015-10-10 11:21:32')
         
     | 
| 
      
 223 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 224 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 225 
     | 
    
         
            +
              [1m[36mSQL (0.1ms)[0m  [1mINSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (1, '2015-10-10 11:21:32', '2015-10-10 11:21:32')[0m
         
     | 
| 
      
 226 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 227 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 228 
     | 
    
         
            +
              [1m[35mSQL (0.1ms)[0m  INSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (0, '2015-10-10 11:21:32', '2015-10-10 11:21:32')
         
     | 
| 
      
 229 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 230 
     | 
    
         
            +
              [1m[35m (0.2ms)[0m  SELECT `talks`.`id` FROM `talks` WHERE `talks`.`enabled` = 0
         
     | 
| 
      
 231 
     | 
    
         
            +
              [1m[36m (0.3ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 232 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 233 
     | 
    
         
            +
            ---------------------
         
     | 
| 
      
 234 
     | 
    
         
            +
            TalkTest: test_enable
         
     | 
| 
      
 235 
     | 
    
         
            +
            ---------------------
         
     | 
| 
      
 236 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 237 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 238 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 239 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 240 
     | 
    
         
            +
            ----------------------
         
     | 
| 
      
 241 
     | 
    
         
            +
            TalkTest: test_disable
         
     | 
| 
      
 242 
     | 
    
         
            +
            ----------------------
         
     | 
| 
      
 243 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 244 
     | 
    
         
            +
              [1m[35mSQL (0.2ms)[0m  UPDATE `talks` SET `enabled` = 0, `updated_at` = '2015-10-10 11:21:32' WHERE `talks`.`id` = 7
         
     | 
| 
      
 245 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 246 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  ROLLBACK
         
     | 
| 
      
 247 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 248 
     | 
    
         
            +
            ------------------------------------------
         
     | 
| 
      
 249 
     | 
    
         
            +
            TalkTest: test_toggle_status_when_disabled
         
     | 
| 
      
 250 
     | 
    
         
            +
            ------------------------------------------
         
     | 
| 
      
 251 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 252 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 253 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 254 
     | 
    
         
            +
              [1m[36mSQL (0.1ms)[0m  [1mUPDATE `talks` SET `enabled` = 1, `updated_at` = '2015-10-10 11:21:32' WHERE `talks`.`id` = 7[0m
         
     | 
| 
      
 255 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 256 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 257 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 258 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 259 
     | 
    
         
            +
            TalkTest: test_.disabled
         
     | 
| 
      
 260 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 261 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 262 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 263 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 264 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 265 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 266 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 267 
     | 
    
         
            +
              [1m[36m (0.2ms)[0m  [1mSELECT `talks`.`id` FROM `talks` WHERE `talks`.`enabled` = 0[0m
         
     | 
| 
      
 268 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  ROLLBACK
         
     | 
| 
      
 269 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 270 
     | 
    
         
            +
            -----------------------------------------
         
     | 
| 
      
 271 
     | 
    
         
            +
            TalkTest: test_toggle_status_when_enabled
         
     | 
| 
      
 272 
     | 
    
         
            +
            -----------------------------------------
         
     | 
| 
      
 273 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 274 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 275 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 276 
     | 
    
         
            +
              [1m[36mSQL (0.1ms)[0m  [1mUPDATE `talks` SET `enabled` = 0, `updated_at` = '2015-10-10 11:21:32' WHERE `talks`.`id` = 7[0m
         
     | 
| 
      
 277 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 278 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 279 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 280 
     | 
    
         
            +
            ------------------------------
         
     | 
| 
      
 281 
     | 
    
         
            +
            TalkTest: test_disabled?_false
         
     | 
| 
      
 282 
     | 
    
         
            +
            ------------------------------
         
     | 
| 
      
 283 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 284 
     | 
    
         
            +
              [1m[35mSQL (0.1ms)[0m  UPDATE `talks` SET `enabled` = 1, `updated_at` = '2015-10-10 11:21:32' WHERE `talks`.`id` = 7
         
     | 
| 
      
 285 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 286 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  ROLLBACK
         
     | 
| 
      
 287 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 288 
     | 
    
         
            +
            -----------------------------
         
     | 
| 
      
 289 
     | 
    
         
            +
            TalkTest: test_disabled?_true
         
     | 
| 
      
 290 
     | 
    
         
            +
            -----------------------------
         
     | 
| 
      
 291 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 292 
     | 
    
         
            +
              [1m[36mSQL (0.1ms)[0m  [1mUPDATE `talks` SET `enabled` = 0, `updated_at` = '2015-10-10 11:21:32' WHERE `talks`.`id` = 7[0m
         
     | 
| 
      
 293 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 294 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 295 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 296 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 297 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 298 
     | 
    
         
            +
            StatifyModelTest: test_truth
         
     | 
| 
      
 299 
     | 
    
         
            +
            ----------------------------
         
     | 
| 
      
 300 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 301 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 302 
     | 
    
         
            +
            -----------------------------------------
         
     | 
| 
      
 303 
     | 
    
         
            +
            TalkTest: test_toggle_status_when_enabled
         
     | 
| 
      
 304 
     | 
    
         
            +
            -----------------------------------------
         
     | 
| 
      
 305 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 306 
     | 
    
         
            +
              [1m[35mSQL (0.2ms)[0m  INSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (1, '2015-10-10 11:22:38', '2015-10-10 11:22:38')
         
     | 
| 
      
 307 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 308 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 309 
     | 
    
         
            +
              [1m[36mSQL (0.2ms)[0m  [1mUPDATE `talks` SET `enabled` = 0, `updated_at` = '2015-10-10 11:22:38' WHERE `talks`.`id` = 10[0m
         
     | 
| 
      
 310 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 311 
     | 
    
         
            +
              [1m[36m (0.4ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 312 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 313 
     | 
    
         
            +
            -----------------------------
         
     | 
| 
      
 314 
     | 
    
         
            +
            TalkTest: test_disabled?_true
         
     | 
| 
      
 315 
     | 
    
         
            +
            -----------------------------
         
     | 
| 
      
 316 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 317 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 318 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 319 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 320 
     | 
    
         
            +
            ------------------------------------------
         
     | 
| 
      
 321 
     | 
    
         
            +
            TalkTest: test_toggle_status_when_disabled
         
     | 
| 
      
 322 
     | 
    
         
            +
            ------------------------------------------
         
     | 
| 
      
 323 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 324 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 325 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 326 
     | 
    
         
            +
              [1m[35mSQL (0.2ms)[0m  UPDATE `talks` SET `enabled` = 1, `updated_at` = '2015-10-10 11:22:38' WHERE `talks`.`id` = 10
         
     | 
| 
      
 327 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 328 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  ROLLBACK
         
     | 
| 
      
 329 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 330 
     | 
    
         
            +
            ----------------------
         
     | 
| 
      
 331 
     | 
    
         
            +
            TalkTest: test_disable
         
     | 
| 
      
 332 
     | 
    
         
            +
            ----------------------
         
     | 
| 
      
 333 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 334 
     | 
    
         
            +
              [1m[36mSQL (0.2ms)[0m  [1mUPDATE `talks` SET `enabled` = 0, `updated_at` = '2015-10-10 11:22:38' WHERE `talks`.`id` = 10[0m
         
     | 
| 
      
 335 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 336 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mROLLBACK[0m
         
     | 
| 
      
 337 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  BEGIN
         
     | 
| 
      
 338 
     | 
    
         
            +
            ------------------------------
         
     | 
| 
      
 339 
     | 
    
         
            +
            TalkTest: test_disabled?_false
         
     | 
| 
      
 340 
     | 
    
         
            +
            ------------------------------
         
     | 
| 
      
 341 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 342 
     | 
    
         
            +
              [1m[35mSQL (0.1ms)[0m  UPDATE `talks` SET `enabled` = 1, `updated_at` = '2015-10-10 11:22:38' WHERE `talks`.`id` = 10
         
     | 
| 
      
 343 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 344 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  ROLLBACK
         
     | 
| 
      
 345 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 346 
     | 
    
         
            +
            ---------------------
         
     | 
| 
      
 347 
     | 
    
         
            +
            TalkTest: test_enable
         
     | 
| 
      
 348 
     | 
    
         
            +
            ---------------------
         
     | 
| 
      
 349 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 350 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 351 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  ROLLBACK
         
     | 
| 
      
 352 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 353 
     | 
    
         
            +
            -----------------------
         
     | 
| 
      
 354 
     | 
    
         
            +
            TalkTest: test_.enabled
         
     | 
| 
      
 355 
     | 
    
         
            +
            -----------------------
         
     | 
| 
      
 356 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 357 
     | 
    
         
            +
              [1m[36mSQL (0.2ms)[0m  [1mINSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (1, '2015-10-10 11:22:38', '2015-10-10 11:22:38')[0m
         
     | 
| 
      
 358 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 359 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 360 
     | 
    
         
            +
              [1m[35mSQL (0.1ms)[0m  INSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (1, '2015-10-10 11:22:38', '2015-10-10 11:22:38')
         
     | 
| 
      
 361 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 362 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 363 
     | 
    
         
            +
              [1m[36mSQL (0.1ms)[0m  [1mINSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (0, '2015-10-10 11:22:38', '2015-10-10 11:22:38')[0m
         
     | 
| 
      
 364 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 365 
     | 
    
         
            +
              [1m[36m (0.2ms)[0m  [1mSELECT `talks`.`id` FROM `talks` WHERE `talks`.`enabled` = 1[0m
         
     | 
| 
      
 366 
     | 
    
         
            +
              [1m[35m (0.3ms)[0m  ROLLBACK
         
     | 
| 
      
 367 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 368 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 369 
     | 
    
         
            +
            TalkTest: test_.disabled
         
     | 
| 
      
 370 
     | 
    
         
            +
            ------------------------
         
     | 
| 
      
 371 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 372 
     | 
    
         
            +
              [1m[36mSQL (0.1ms)[0m  [1mINSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (1, '2015-10-10 11:22:38', '2015-10-10 11:22:38')[0m
         
     | 
| 
      
 373 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 374 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSAVEPOINT active_record_1[0m
         
     | 
| 
      
 375 
     | 
    
         
            +
              [1m[35mSQL (0.1ms)[0m  INSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (1, '2015-10-10 11:22:38', '2015-10-10 11:22:38')
         
     | 
| 
      
 376 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mRELEASE SAVEPOINT active_record_1[0m
         
     | 
| 
      
 377 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  SAVEPOINT active_record_1
         
     | 
| 
      
 378 
     | 
    
         
            +
              [1m[36mSQL (0.1ms)[0m  [1mINSERT INTO `talks` (`enabled`, `created_at`, `updated_at`) VALUES (0, '2015-10-10 11:22:38', '2015-10-10 11:22:38')[0m
         
     | 
| 
      
 379 
     | 
    
         
            +
              [1m[35m (0.1ms)[0m  RELEASE SAVEPOINT active_record_1
         
     | 
| 
      
 380 
     | 
    
         
            +
              [1m[36m (0.1ms)[0m  [1mSELECT `talks`.`id` FROM `talks` WHERE `talks`.`enabled` = 0[0m
         
     | 
| 
      
 381 
     | 
    
         
            +
              [1m[35m (0.3ms)[0m  ROLLBACK
         
     | 
| 
         @@ -0,0 +1,67 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!DOCTYPE html>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <html>
         
     | 
| 
      
 3 
     | 
    
         
            +
            <head>
         
     | 
| 
      
 4 
     | 
    
         
            +
              <title>The page you were looking for doesn't exist (404)</title>
         
     | 
| 
      
 5 
     | 
    
         
            +
              <meta name="viewport" content="width=device-width,initial-scale=1">
         
     | 
| 
      
 6 
     | 
    
         
            +
              <style>
         
     | 
| 
      
 7 
     | 
    
         
            +
              body {
         
     | 
| 
      
 8 
     | 
    
         
            +
                background-color: #EFEFEF;
         
     | 
| 
      
 9 
     | 
    
         
            +
                color: #2E2F30;
         
     | 
| 
      
 10 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 11 
     | 
    
         
            +
                font-family: arial, sans-serif;
         
     | 
| 
      
 12 
     | 
    
         
            +
                margin: 0;
         
     | 
| 
      
 13 
     | 
    
         
            +
              }
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              div.dialog {
         
     | 
| 
      
 16 
     | 
    
         
            +
                width: 95%;
         
     | 
| 
      
 17 
     | 
    
         
            +
                max-width: 33em;
         
     | 
| 
      
 18 
     | 
    
         
            +
                margin: 4em auto 0;
         
     | 
| 
      
 19 
     | 
    
         
            +
              }
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
              div.dialog > div {
         
     | 
| 
      
 22 
     | 
    
         
            +
                border: 1px solid #CCC;
         
     | 
| 
      
 23 
     | 
    
         
            +
                border-right-color: #999;
         
     | 
| 
      
 24 
     | 
    
         
            +
                border-left-color: #999;
         
     | 
| 
      
 25 
     | 
    
         
            +
                border-bottom-color: #BBB;
         
     | 
| 
      
 26 
     | 
    
         
            +
                border-top: #B00100 solid 4px;
         
     | 
| 
      
 27 
     | 
    
         
            +
                border-top-left-radius: 9px;
         
     | 
| 
      
 28 
     | 
    
         
            +
                border-top-right-radius: 9px;
         
     | 
| 
      
 29 
     | 
    
         
            +
                background-color: white;
         
     | 
| 
      
 30 
     | 
    
         
            +
                padding: 7px 12% 0;
         
     | 
| 
      
 31 
     | 
    
         
            +
                box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
         
     | 
| 
      
 32 
     | 
    
         
            +
              }
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              h1 {
         
     | 
| 
      
 35 
     | 
    
         
            +
                font-size: 100%;
         
     | 
| 
      
 36 
     | 
    
         
            +
                color: #730E15;
         
     | 
| 
      
 37 
     | 
    
         
            +
                line-height: 1.5em;
         
     | 
| 
      
 38 
     | 
    
         
            +
              }
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
              div.dialog > p {
         
     | 
| 
      
 41 
     | 
    
         
            +
                margin: 0 0 1em;
         
     | 
| 
      
 42 
     | 
    
         
            +
                padding: 1em;
         
     | 
| 
      
 43 
     | 
    
         
            +
                background-color: #F7F7F7;
         
     | 
| 
      
 44 
     | 
    
         
            +
                border: 1px solid #CCC;
         
     | 
| 
      
 45 
     | 
    
         
            +
                border-right-color: #999;
         
     | 
| 
      
 46 
     | 
    
         
            +
                border-left-color: #999;
         
     | 
| 
      
 47 
     | 
    
         
            +
                border-bottom-color: #999;
         
     | 
| 
      
 48 
     | 
    
         
            +
                border-bottom-left-radius: 4px;
         
     | 
| 
      
 49 
     | 
    
         
            +
                border-bottom-right-radius: 4px;
         
     | 
| 
      
 50 
     | 
    
         
            +
                border-top-color: #DADADA;
         
     | 
| 
      
 51 
     | 
    
         
            +
                color: #666;
         
     | 
| 
      
 52 
     | 
    
         
            +
                box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
         
     | 
| 
      
 53 
     | 
    
         
            +
              }
         
     | 
| 
      
 54 
     | 
    
         
            +
              </style>
         
     | 
| 
      
 55 
     | 
    
         
            +
            </head>
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
            <body>
         
     | 
| 
      
 58 
     | 
    
         
            +
              <!-- This file lives in public/404.html -->
         
     | 
| 
      
 59 
     | 
    
         
            +
              <div class="dialog">
         
     | 
| 
      
 60 
     | 
    
         
            +
                <div>
         
     | 
| 
      
 61 
     | 
    
         
            +
                  <h1>The page you were looking for doesn't exist.</h1>
         
     | 
| 
      
 62 
     | 
    
         
            +
                  <p>You may have mistyped the address or the page may have moved.</p>
         
     | 
| 
      
 63 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 64 
     | 
    
         
            +
                <p>If you are the application owner check the logs for more information.</p>
         
     | 
| 
      
 65 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 66 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 67 
     | 
    
         
            +
            </html>
         
     | 
| 
         @@ -0,0 +1,67 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!DOCTYPE html>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <html>
         
     | 
| 
      
 3 
     | 
    
         
            +
            <head>
         
     | 
| 
      
 4 
     | 
    
         
            +
              <title>The change you wanted was rejected (422)</title>
         
     | 
| 
      
 5 
     | 
    
         
            +
              <meta name="viewport" content="width=device-width,initial-scale=1">
         
     | 
| 
      
 6 
     | 
    
         
            +
              <style>
         
     | 
| 
      
 7 
     | 
    
         
            +
              body {
         
     | 
| 
      
 8 
     | 
    
         
            +
                background-color: #EFEFEF;
         
     | 
| 
      
 9 
     | 
    
         
            +
                color: #2E2F30;
         
     | 
| 
      
 10 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 11 
     | 
    
         
            +
                font-family: arial, sans-serif;
         
     | 
| 
      
 12 
     | 
    
         
            +
                margin: 0;
         
     | 
| 
      
 13 
     | 
    
         
            +
              }
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              div.dialog {
         
     | 
| 
      
 16 
     | 
    
         
            +
                width: 95%;
         
     | 
| 
      
 17 
     | 
    
         
            +
                max-width: 33em;
         
     | 
| 
      
 18 
     | 
    
         
            +
                margin: 4em auto 0;
         
     | 
| 
      
 19 
     | 
    
         
            +
              }
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
              div.dialog > div {
         
     | 
| 
      
 22 
     | 
    
         
            +
                border: 1px solid #CCC;
         
     | 
| 
      
 23 
     | 
    
         
            +
                border-right-color: #999;
         
     | 
| 
      
 24 
     | 
    
         
            +
                border-left-color: #999;
         
     | 
| 
      
 25 
     | 
    
         
            +
                border-bottom-color: #BBB;
         
     | 
| 
      
 26 
     | 
    
         
            +
                border-top: #B00100 solid 4px;
         
     | 
| 
      
 27 
     | 
    
         
            +
                border-top-left-radius: 9px;
         
     | 
| 
      
 28 
     | 
    
         
            +
                border-top-right-radius: 9px;
         
     | 
| 
      
 29 
     | 
    
         
            +
                background-color: white;
         
     | 
| 
      
 30 
     | 
    
         
            +
                padding: 7px 12% 0;
         
     | 
| 
      
 31 
     | 
    
         
            +
                box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
         
     | 
| 
      
 32 
     | 
    
         
            +
              }
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              h1 {
         
     | 
| 
      
 35 
     | 
    
         
            +
                font-size: 100%;
         
     | 
| 
      
 36 
     | 
    
         
            +
                color: #730E15;
         
     | 
| 
      
 37 
     | 
    
         
            +
                line-height: 1.5em;
         
     | 
| 
      
 38 
     | 
    
         
            +
              }
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
              div.dialog > p {
         
     | 
| 
      
 41 
     | 
    
         
            +
                margin: 0 0 1em;
         
     | 
| 
      
 42 
     | 
    
         
            +
                padding: 1em;
         
     | 
| 
      
 43 
     | 
    
         
            +
                background-color: #F7F7F7;
         
     | 
| 
      
 44 
     | 
    
         
            +
                border: 1px solid #CCC;
         
     | 
| 
      
 45 
     | 
    
         
            +
                border-right-color: #999;
         
     | 
| 
      
 46 
     | 
    
         
            +
                border-left-color: #999;
         
     | 
| 
      
 47 
     | 
    
         
            +
                border-bottom-color: #999;
         
     | 
| 
      
 48 
     | 
    
         
            +
                border-bottom-left-radius: 4px;
         
     | 
| 
      
 49 
     | 
    
         
            +
                border-bottom-right-radius: 4px;
         
     | 
| 
      
 50 
     | 
    
         
            +
                border-top-color: #DADADA;
         
     | 
| 
      
 51 
     | 
    
         
            +
                color: #666;
         
     | 
| 
      
 52 
     | 
    
         
            +
                box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
         
     | 
| 
      
 53 
     | 
    
         
            +
              }
         
     | 
| 
      
 54 
     | 
    
         
            +
              </style>
         
     | 
| 
      
 55 
     | 
    
         
            +
            </head>
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
            <body>
         
     | 
| 
      
 58 
     | 
    
         
            +
              <!-- This file lives in public/422.html -->
         
     | 
| 
      
 59 
     | 
    
         
            +
              <div class="dialog">
         
     | 
| 
      
 60 
     | 
    
         
            +
                <div>
         
     | 
| 
      
 61 
     | 
    
         
            +
                  <h1>The change you wanted was rejected.</h1>
         
     | 
| 
      
 62 
     | 
    
         
            +
                  <p>Maybe you tried to change something you didn't have access to.</p>
         
     | 
| 
      
 63 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 64 
     | 
    
         
            +
                <p>If you are the application owner check the logs for more information.</p>
         
     | 
| 
      
 65 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 66 
     | 
    
         
            +
            </body>
         
     | 
| 
      
 67 
     | 
    
         
            +
            </html>
         
     |