hashie_rails 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +39 -0
- data/lib/hashie_rails.rb +3 -0
- data/lib/hashie_rails/hashie/mash.rb +18 -0
- data/lib/hashie_rails/version.rb +3 -0
- data/lib/tasks/hashie_rails_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/api/home_api.rb +8 -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/bird.rb +2 -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/config.ru +4 -0
- data/test/dummy/config/application.rb +14 -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 +37 -0
- data/test/dummy/config/environments/production.rb +83 -0
- data/test/dummy/config/environments/test.rb +39 -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 +3 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20140531031058_create_birds.rb +9 -0
- data/test/dummy/db/schema.rb +22 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +88 -0
- data/test/dummy/log/test.log +586 -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/hashie_rails_test.rb +16 -0
- data/test/integration/hashie_mash_with_active_record_test.rb +9 -0
- data/test/test_helper.rb +15 -0
- metadata +206 -0
@@ -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,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,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,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: 273622c9efda4594fa8677642ed08a19c029347489908095c58a196ab9e27e31b804f54238591cccc37c2bab974df200bcdbab6f91f8af2b32a2833f0716a4ed
|
15
|
+
|
16
|
+
test:
|
17
|
+
secret_key_base: a12bd583e267198d769d31f5d387e3b07c981ac8f29efce38ad60cfc5636053b7dac10b8e02764dace43138ab721230510f601931c3373ecee04d6b13b930224
|
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"] %>
|
Binary file
|
@@ -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: 20140531031058) do
|
15
|
+
|
16
|
+
create_table 'birds', force: true do |t|
|
17
|
+
t.string 'name'
|
18
|
+
t.datetime 'created_at'
|
19
|
+
t.datetime 'updated_at'
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
Binary file
|
@@ -0,0 +1,88 @@
|
|
1
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
3
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
5
|
+
Migrating to CreateBirds (20140531031058)
|
6
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
|
8
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140531031058"]]
|
9
|
+
[1m[35m (0.7ms)[0m commit transaction
|
10
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
11
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
12
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
13
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
14
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
15
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
16
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
|
17
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
19
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
20
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
21
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
22
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
23
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
24
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
|
25
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
26
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
27
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
28
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
29
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
30
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
31
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
32
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
|
33
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
34
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
35
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
36
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
37
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
38
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
39
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
40
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
|
41
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
42
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
43
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
44
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
45
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
46
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
47
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
48
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
|
49
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
50
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
51
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
52
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
53
|
+
Migrating to CreateBirds (20140531031058)
|
54
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
|
56
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140531031058"]]
|
57
|
+
[1m[35m (0.7ms)[0m commit transaction
|
58
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
59
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
|
60
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
61
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
62
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
63
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
64
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140531031058')[0m
|
65
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
66
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
67
|
+
[1m[36m (11.0ms)[0m [1mCREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
68
|
+
[1m[35m (1.6ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
69
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
70
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
71
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
72
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
|
73
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
74
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
75
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
76
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
77
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
78
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
79
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
80
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
|
81
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
82
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
83
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "birds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
84
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
85
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
86
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
87
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
88
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140531031058')
|
@@ -0,0 +1,586 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2
|
+
---------------------------
|
3
|
+
HashieRailsTest: test_truth
|
4
|
+
---------------------------
|
5
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7
|
+
---------------------------
|
8
|
+
HashieRailsTest: test_truth
|
9
|
+
---------------------------
|
10
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12
|
+
---------------------------------------------------------------
|
13
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
14
|
+
---------------------------------------------------------------
|
15
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17
|
+
---------------------------
|
18
|
+
HashieRailsTest: test_truth
|
19
|
+
---------------------------
|
20
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
21
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22
|
+
---------------------------------------------------------------
|
23
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
24
|
+
---------------------------------------------------------------
|
25
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
27
|
+
---------------------------
|
28
|
+
HashieRailsTest: test_truth
|
29
|
+
---------------------------
|
30
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
31
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
32
|
+
---------------------------------------------------------------
|
33
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
34
|
+
---------------------------------------------------------------
|
35
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
36
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
37
|
+
---------------------------
|
38
|
+
HashieRailsTest: test_truth
|
39
|
+
---------------------------
|
40
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
41
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
42
|
+
---------------------------------------------------------------
|
43
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
44
|
+
---------------------------------------------------------------
|
45
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
46
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
47
|
+
---------------------------------------------------------------
|
48
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
49
|
+
---------------------------------------------------------------
|
50
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
51
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
52
|
+
---------------------------------------------------------------
|
53
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
54
|
+
---------------------------------------------------------------
|
55
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
56
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
57
|
+
---------------------------------------------------------------
|
58
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
59
|
+
---------------------------------------------------------------
|
60
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
61
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
62
|
+
---------------------------------------------------------------
|
63
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
64
|
+
---------------------------------------------------------------
|
65
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
66
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
67
|
+
---------------------------------------------------------------
|
68
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
69
|
+
---------------------------------------------------------------
|
70
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
71
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
72
|
+
---------------------------------------------------------------
|
73
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
74
|
+
---------------------------------------------------------------
|
75
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
76
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
77
|
+
---------------------------------------------------------------
|
78
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
79
|
+
---------------------------------------------------------------
|
80
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
81
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
82
|
+
---------------------------------------------------------------
|
83
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
84
|
+
---------------------------------------------------------------
|
85
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
86
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
87
|
+
---------------------------------------------------------------
|
88
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
89
|
+
---------------------------------------------------------------
|
90
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
91
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
92
|
+
---------------------------------------------------------------
|
93
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
94
|
+
---------------------------------------------------------------
|
95
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
96
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
97
|
+
---------------------------------------------------------------
|
98
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
99
|
+
---------------------------------------------------------------
|
100
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
101
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
102
|
+
---------------------------------------------------------------
|
103
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
104
|
+
---------------------------------------------------------------
|
105
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
106
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
107
|
+
---------------------------------------------------------------
|
108
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
109
|
+
---------------------------------------------------------------
|
110
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
111
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
112
|
+
---------------------------------------------------------------
|
113
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
114
|
+
---------------------------------------------------------------
|
115
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
116
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
117
|
+
---------------------------------------------------------------
|
118
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
119
|
+
---------------------------------------------------------------
|
120
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
121
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
122
|
+
---------------------------------------------------------------
|
123
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
124
|
+
---------------------------------------------------------------
|
125
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
126
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
127
|
+
---------------------------------------------------------------
|
128
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
129
|
+
---------------------------------------------------------------
|
130
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
131
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
132
|
+
---------------------------------------------------------------
|
133
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
134
|
+
---------------------------------------------------------------
|
135
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
136
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
137
|
+
---------------------------------------------------------------
|
138
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
139
|
+
---------------------------------------------------------------
|
140
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
141
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
142
|
+
---------------------------------------------------------------
|
143
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
144
|
+
---------------------------------------------------------------
|
145
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
146
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
147
|
+
---------------------------------------------------------------
|
148
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
149
|
+
---------------------------------------------------------------
|
150
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
151
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
152
|
+
---------------------------------------------------------------
|
153
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
154
|
+
---------------------------------------------------------------
|
155
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
156
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
157
|
+
---------------------------------------------------------------
|
158
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
159
|
+
---------------------------------------------------------------
|
160
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
161
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
162
|
+
---------------------------------------------------------------
|
163
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
164
|
+
---------------------------------------------------------------
|
165
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
166
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
167
|
+
---------------------------------------------------------------
|
168
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
169
|
+
---------------------------------------------------------------
|
170
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
171
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
172
|
+
---------------------------------------------------------------
|
173
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
174
|
+
---------------------------------------------------------------
|
175
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
176
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
177
|
+
---------------------------------------------------------------
|
178
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
179
|
+
---------------------------------------------------------------
|
180
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
181
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
182
|
+
---------------------------------------------------------------
|
183
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
184
|
+
---------------------------------------------------------------
|
185
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
186
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
187
|
+
---------------------------------------------------------------
|
188
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
189
|
+
---------------------------------------------------------------
|
190
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
191
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
192
|
+
---------------------------------------------------------------
|
193
|
+
HashieRailsTest: test_makes_hashie_to_not_respond_to_permitted?
|
194
|
+
---------------------------------------------------------------
|
195
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
196
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
197
|
+
-----------------------------------------------------
|
198
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?
|
199
|
+
-----------------------------------------------------
|
200
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
201
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
202
|
+
---------------------------------------------------------
|
203
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
204
|
+
---------------------------------------------------------
|
205
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
206
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
207
|
+
-----------------------------------------------------
|
208
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?
|
209
|
+
-----------------------------------------------------
|
210
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
211
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
212
|
+
---------------------------------------------------------
|
213
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
214
|
+
---------------------------------------------------------
|
215
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
216
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
217
|
+
------------------------------------------------------------
|
218
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
219
|
+
------------------------------------------------------------
|
220
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
221
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
222
|
+
---------------------------------------------------------
|
223
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
224
|
+
---------------------------------------------------------
|
225
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
226
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
227
|
+
------------------------------------------------------------
|
228
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
229
|
+
------------------------------------------------------------
|
230
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
231
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
232
|
+
---------------------------------------------------------
|
233
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
234
|
+
---------------------------------------------------------
|
235
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
236
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
237
|
+
------------------------------------------------------------
|
238
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
239
|
+
------------------------------------------------------------
|
240
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
241
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
242
|
+
---------------------------------------------------------
|
243
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
244
|
+
---------------------------------------------------------
|
245
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
246
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
247
|
+
--------------------------------------------------------------
|
248
|
+
HashieMashWithActiveRecord: test_bird_can_be_created_with_mash
|
249
|
+
--------------------------------------------------------------
|
250
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
251
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
252
|
+
------------------------------------------------------------
|
253
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
254
|
+
------------------------------------------------------------
|
255
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
256
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
257
|
+
---------------------------------------------------------
|
258
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
259
|
+
---------------------------------------------------------
|
260
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
261
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
262
|
+
------------------------------------------------------------
|
263
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
264
|
+
------------------------------------------------------------
|
265
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
266
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
267
|
+
---------------------------------------------------------
|
268
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
269
|
+
---------------------------------------------------------
|
270
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
271
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
272
|
+
------------------------------------------------------------------
|
273
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
274
|
+
------------------------------------------------------------------
|
275
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
276
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
277
|
+
[1m[35m (0.1ms)[0m begin transaction
|
278
|
+
------------------------------------------------------------------
|
279
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
280
|
+
------------------------------------------------------------------
|
281
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
282
|
+
Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:19:53 +1000
|
283
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
284
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
285
|
+
------------------------------------------------------------
|
286
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
287
|
+
------------------------------------------------------------
|
288
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
289
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
290
|
+
---------------------------------------------------------
|
291
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
292
|
+
---------------------------------------------------------
|
293
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
294
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
295
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296
|
+
------------------------------------------------------------
|
297
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
298
|
+
------------------------------------------------------------
|
299
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
300
|
+
[1m[35m (0.0ms)[0m begin transaction
|
301
|
+
---------------------------------------------------------
|
302
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
303
|
+
---------------------------------------------------------
|
304
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
305
|
+
[1m[35m (0.0ms)[0m begin transaction
|
306
|
+
------------------------------------------------------------------
|
307
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
308
|
+
------------------------------------------------------------------
|
309
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
310
|
+
Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:20:23 +1000
|
311
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
312
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
313
|
+
[1m[35m (0.1ms)[0m begin transaction
|
314
|
+
------------------------------------------------------------
|
315
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
316
|
+
------------------------------------------------------------
|
317
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
318
|
+
[1m[35m (0.0ms)[0m begin transaction
|
319
|
+
---------------------------------------------------------
|
320
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
321
|
+
---------------------------------------------------------
|
322
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
323
|
+
[1m[35m (0.0ms)[0m begin transaction
|
324
|
+
------------------------------------------------------------------
|
325
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
326
|
+
------------------------------------------------------------------
|
327
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
328
|
+
Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:21:35 +1000
|
329
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
330
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-05-31 03:21:35.823798"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:21:35.823798"]]
|
331
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
332
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
333
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
334
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
335
|
+
[1m[35m (0.1ms)[0m begin transaction
|
336
|
+
------------------------------------------------------------
|
337
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
338
|
+
------------------------------------------------------------
|
339
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
340
|
+
[1m[35m (0.0ms)[0m begin transaction
|
341
|
+
---------------------------------------------------------
|
342
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
343
|
+
---------------------------------------------------------
|
344
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
345
|
+
[1m[35m (0.0ms)[0m begin transaction
|
346
|
+
------------------------------------------------------------------
|
347
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
348
|
+
------------------------------------------------------------------
|
349
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
350
|
+
Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:21:52 +1000
|
351
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
352
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
353
|
+
[1m[35m (0.1ms)[0m begin transaction
|
354
|
+
------------------------------------------------------------------
|
355
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
356
|
+
------------------------------------------------------------------
|
357
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
358
|
+
Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:22:01 +1000
|
359
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
360
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-05-31 03:22:01.529273"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:22:01.529273"]]
|
361
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
362
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
363
|
+
[1m[35m (1.6ms)[0m rollback transaction
|
364
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
365
|
+
------------------------------------------------------------
|
366
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
367
|
+
------------------------------------------------------------
|
368
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
369
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
370
|
+
---------------------------------------------------------
|
371
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
372
|
+
---------------------------------------------------------
|
373
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
374
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
375
|
+
[1m[35m (0.1ms)[0m begin transaction
|
376
|
+
------------------------------------------------------------
|
377
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
378
|
+
------------------------------------------------------------
|
379
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
380
|
+
[1m[35m (0.0ms)[0m begin transaction
|
381
|
+
---------------------------------------------------------
|
382
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
383
|
+
---------------------------------------------------------
|
384
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
385
|
+
[1m[35m (0.0ms)[0m begin transaction
|
386
|
+
------------------------------------------------------------------
|
387
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
388
|
+
------------------------------------------------------------------
|
389
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
390
|
+
Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:22:59 +1000
|
391
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
392
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-05-31 03:22:59.287102"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:22:59.287102"]]
|
393
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
394
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
395
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
396
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
397
|
+
[1m[35m (0.1ms)[0m begin transaction
|
398
|
+
------------------------------------------------------------
|
399
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
400
|
+
------------------------------------------------------------
|
401
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
402
|
+
[1m[35m (0.0ms)[0m begin transaction
|
403
|
+
---------------------------------------------------------
|
404
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
405
|
+
---------------------------------------------------------
|
406
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
407
|
+
[1m[35m (0.0ms)[0m begin transaction
|
408
|
+
------------------------------------------------------------------
|
409
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
410
|
+
------------------------------------------------------------------
|
411
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
412
|
+
Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:26:59 +1000
|
413
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
414
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-05-31 03:26:59.527998"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:26:59.527998"]]
|
415
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
416
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
417
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
418
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
419
|
+
[1m[35m (0.1ms)[0m begin transaction
|
420
|
+
------------------------------------------------------------------
|
421
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
422
|
+
------------------------------------------------------------------
|
423
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
424
|
+
Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:27:14 +1000
|
425
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
426
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-05-31 03:27:14.500410"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:27:14.500410"]]
|
427
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
428
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
429
|
+
[1m[35m (2.0ms)[0m rollback transaction
|
430
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
431
|
+
------------------------------------------------------------
|
432
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
433
|
+
------------------------------------------------------------
|
434
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
435
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
436
|
+
---------------------------------------------------------
|
437
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
438
|
+
---------------------------------------------------------
|
439
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
440
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
441
|
+
[1m[35m (0.1ms)[0m begin transaction
|
442
|
+
------------------------------------------------------------------
|
443
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
444
|
+
------------------------------------------------------------------
|
445
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
446
|
+
Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:27:18 +1000
|
447
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
448
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-05-31 03:27:18.245748"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:27:18.245748"]]
|
449
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
450
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
451
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
452
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
453
|
+
------------------------------------------------------------
|
454
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
455
|
+
------------------------------------------------------------
|
456
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
457
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
458
|
+
---------------------------------------------------------
|
459
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
460
|
+
---------------------------------------------------------
|
461
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
462
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
463
|
+
[1m[35m (0.1ms)[0m begin transaction
|
464
|
+
------------------------------------------------------------------
|
465
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
466
|
+
------------------------------------------------------------------
|
467
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
468
|
+
Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:27:47 +1000
|
469
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
470
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-05-31 03:27:47.800489"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:27:47.800489"]]
|
471
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
472
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
473
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
474
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
475
|
+
------------------------------------------------------------
|
476
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
477
|
+
------------------------------------------------------------
|
478
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
479
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
480
|
+
---------------------------------------------------------
|
481
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
482
|
+
---------------------------------------------------------
|
483
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
484
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
485
|
+
------------------------------------------------------------
|
486
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
487
|
+
------------------------------------------------------------
|
488
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
489
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
490
|
+
---------------------------------------------------------
|
491
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
492
|
+
---------------------------------------------------------
|
493
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
494
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
495
|
+
------------------------------------------------------------------
|
496
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
497
|
+
------------------------------------------------------------------
|
498
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
499
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
500
|
+
[1m[35m (0.1ms)[0m begin transaction
|
501
|
+
------------------------------------------------------------
|
502
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
503
|
+
------------------------------------------------------------
|
504
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
505
|
+
[1m[35m (0.0ms)[0m begin transaction
|
506
|
+
---------------------------------------------------------
|
507
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
508
|
+
---------------------------------------------------------
|
509
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
510
|
+
[1m[35m (0.0ms)[0m begin transaction
|
511
|
+
------------------------------------------------------------------
|
512
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
513
|
+
------------------------------------------------------------------
|
514
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
515
|
+
Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:28:29 +1000
|
516
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
517
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-05-31 03:28:29.322493"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:28:29.322493"]]
|
518
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
519
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
520
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
521
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
522
|
+
[1m[35m (0.1ms)[0m begin transaction
|
523
|
+
------------------------------------------------------------------
|
524
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
525
|
+
------------------------------------------------------------------
|
526
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
527
|
+
Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:43:03 +1000
|
528
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
529
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-05-31 03:43:03.490867"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:43:03.490867"]]
|
530
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
531
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
532
|
+
[1m[35m (1.9ms)[0m rollback transaction
|
533
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
534
|
+
------------------------------------------------------------
|
535
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
536
|
+
------------------------------------------------------------
|
537
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
538
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
539
|
+
---------------------------------------------------------
|
540
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
541
|
+
---------------------------------------------------------
|
542
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
543
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
544
|
+
[1m[35m (0.1ms)[0m begin transaction
|
545
|
+
------------------------------------------------------------
|
546
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
547
|
+
------------------------------------------------------------
|
548
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
549
|
+
[1m[35m (0.1ms)[0m begin transaction
|
550
|
+
---------------------------------------------------------
|
551
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
552
|
+
---------------------------------------------------------
|
553
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
554
|
+
[1m[35m (0.0ms)[0m begin transaction
|
555
|
+
------------------------------------------------------------------
|
556
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
557
|
+
------------------------------------------------------------------
|
558
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
559
|
+
Started POST "/birds" for 127.0.0.1 at 2014-05-31 13:43:07 +1000
|
560
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
561
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-05-31 03:43:07.923120"], ["name", "Birdie"], ["updated_at", "2014-05-31 03:43:07.923120"]]
|
562
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
563
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
564
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
565
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
566
|
+
[1m[35m (0.1ms)[0m begin transaction
|
567
|
+
------------------------------------------------------------
|
568
|
+
HashieRailsTest: test_mash_does_not_handle_permitted?_method
|
569
|
+
------------------------------------------------------------
|
570
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
571
|
+
[1m[35m (0.0ms)[0m begin transaction
|
572
|
+
---------------------------------------------------------
|
573
|
+
HashieRailsTest: test_mash_does_not_respond_to_permitted?
|
574
|
+
---------------------------------------------------------
|
575
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
576
|
+
[1m[35m (0.0ms)[0m begin transaction
|
577
|
+
------------------------------------------------------------------
|
578
|
+
HashieMashWithActiveRecordTest: test_bird_can_be_created_with_mash
|
579
|
+
------------------------------------------------------------------
|
580
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
581
|
+
Started POST "/birds" for 127.0.0.1 at 2014-06-04 11:50:44 +1000
|
582
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
583
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "birds" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-04 01:50:44.319876"], ["name", "Birdie"], ["updated_at", "2014-06-04 01:50:44.319876"]]
|
584
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
585
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "birds"[0m
|
586
|
+
[1m[35m (0.3ms)[0m rollback transaction
|