categorical 0.0.9 → 0.0.9.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c0fc60ca2831d2b97cbd765dcdbfea850bce91eaf7774714488c52c1dda54e7d
4
- data.tar.gz: f8f587cbbc32ecc4a3a7ca6d43b50807ab72e50c989ab41ffdd71efd2367d127
3
+ metadata.gz: f92f109411ffd797841aa43405614f417e3343b7aa92a7cf4751c1f6a2444d46
4
+ data.tar.gz: 1f7808f311154f53182eecdaa25cacbd78d780bb069b0e4a9fd69e82ebcaf7e6
5
5
  SHA512:
6
- metadata.gz: 20850967096dc423d8b9a15005b6a33a678e336802f6f1d9049db3a91c02b892523ba7dfb2f11b67af3fb21326e8e6520964843557a14c733910a91446936bf0
7
- data.tar.gz: c7aee084c760e55851ed65c445caf6c48e29cd0c109f06dd180f8f9ed477918ea40366ab6b852d8af6fa93fb7a62a08b77bf116bdd6a014bf9f26f8e3b5643aa
6
+ metadata.gz: f3c09ac82499ac23a5f2651b2916598d1b13f91e258ff8118d9f0bd31fb88d6cbb6a7baaf90a45dd909d11765628f126418620dcc0fb3eb270f2b6108b851114
7
+ data.tar.gz: b7360e3e126bdbe4378e9c46114e538d663366a0d0db4fdc3fa18b5b432b45dfa3ab57e4cb979ddda0239c8be9ab4e4544a33f97e7021086fd742ba47b4a790a
@@ -1,3 +1,3 @@
1
1
  module Categorical
2
- VERSION = "0.0.9"
2
+ VERSION = "0.0.9.1"
3
3
  end
@@ -1,8 +1,10 @@
1
1
  default: &default
2
2
  adapter: postgresql
3
3
  encoding: unicode
4
- host: localhost
5
- port: 5433
4
+ username: categorical
5
+ password: password
6
+ host: db
7
+ port: 5432
6
8
 
7
9
  development:
8
10
  <<: *default
@@ -1,62 +1,62 @@
1
-  (528.0ms) CREATE DATABASE "categorical_development" ENCODING = 'unicode'
2
-  (411.0ms) CREATE DATABASE "categorical_test" ENCODING = 'unicode'
3
- SQL (13.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
4
-  (17.5ms) DROP TABLE IF EXISTS "categorical_taggings" CASCADE
5
-  (30.8ms) CREATE TABLE "categorical_taggings" ("id" bigserial primary key, "taggable_id" integer, "taggable_type" character varying, "tag_id" integer)
6
-  (4.7ms) CREATE INDEX "index_categorical_taggings_on_taggable_type_and_taggable_id" ON "categorical_taggings" USING btree ("taggable_type", "taggable_id")
1
+  (60.2ms) CREATE DATABASE "categorical_development" ENCODING = 'unicode'
2
+  (44.6ms) CREATE DATABASE "categorical_test" ENCODING = 'unicode'
3
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
4
+  (0.2ms) DROP TABLE IF EXISTS "categorical_taggings" CASCADE
5
+  (5.2ms) CREATE TABLE "categorical_taggings" ("id" bigserial primary key, "taggable_id" integer, "taggable_type" character varying, "tag_id" integer)
6
+  (1.7ms) CREATE INDEX "index_categorical_taggings_on_taggable_type_and_taggable_id" ON "categorical_taggings" USING btree ("taggable_type", "taggable_id")
7
7
   (0.3ms) DROP TABLE IF EXISTS "categorical_tags" CASCADE
8
-  (5.0ms) CREATE TABLE "categorical_tags" ("id" bigserial primary key, "label" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
9
-  (1.9ms) CREATE UNIQUE INDEX "index_categorical_tags_on_label" ON "categorical_tags" USING btree ("label")
10
-  (0.3ms) DROP TABLE IF EXISTS "posts" CASCADE
11
-  (5.2ms) CREATE TABLE "posts" ("id" bigserial primary key, "title" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
12
-  (4.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
13
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
14
-  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES (20151015173150)
15
-  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES
8
+  (3.5ms) CREATE TABLE "categorical_tags" ("id" bigserial primary key, "label" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
9
+  (1.8ms) CREATE UNIQUE INDEX "index_categorical_tags_on_label" ON "categorical_tags" USING btree ("label")
10
+  (0.1ms) DROP TABLE IF EXISTS "posts" CASCADE
11
+  (3.6ms) CREATE TABLE "posts" ("id" bigserial primary key, "title" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
12
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
13
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
14
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (20151015173150)
15
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES
16
16
  (20150919153408),
17
17
  (20151003185718),
18
18
  (20151011215525);
19
19
 
20
20
  
21
-  (26.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
22
- ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
23
-  (0.4ms) BEGIN
24
- ActiveRecord::InternalMetadata Create (12.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2020-01-03 03:03:43.564255"], ["updated_at", "2020-01-03 03:03:43.564255"]]
25
-  (0.5ms) COMMIT
26
- ActiveRecord::InternalMetadata Load (1.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
27
- ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
28
-  (0.2ms) BEGIN
29
- ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "b956a2888ca5ca710a5a2eb673b7f0efe73df9a1"], ["created_at", "2020-01-03 03:03:43.584956"], ["updated_at", "2020-01-03 03:03:43.584956"]]
30
-  (0.5ms) COMMIT
31
- SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
32
-  (0.3ms) DROP TABLE IF EXISTS "categorical_taggings" CASCADE
33
-  (10.3ms) CREATE TABLE "categorical_taggings" ("id" bigserial primary key, "taggable_id" integer, "taggable_type" character varying, "tag_id" integer)
34
-  (2.1ms) CREATE INDEX "index_categorical_taggings_on_taggable_type_and_taggable_id" ON "categorical_taggings" USING btree ("taggable_type", "taggable_id")
35
-  (0.4ms) DROP TABLE IF EXISTS "categorical_tags" CASCADE
36
-  (4.8ms) CREATE TABLE "categorical_tags" ("id" bigserial primary key, "label" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
37
-  (1.5ms) CREATE UNIQUE INDEX "index_categorical_tags_on_label" ON "categorical_tags" USING btree ("label")
38
-  (0.2ms) DROP TABLE IF EXISTS "posts" CASCADE
39
-  (5.8ms) CREATE TABLE "posts" ("id" bigserial primary key, "title" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
40
-  (3.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
41
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
42
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (20151015173150)
43
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES
21
+  (3.5ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
22
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
23
+ TRANSACTION (0.2ms) BEGIN
24
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2020-12-19 15:25:51.099706"], ["updated_at", "2020-12-19 15:25:51.099706"]]
25
+ TRANSACTION (0.8ms) COMMIT
26
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
27
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
28
+ TRANSACTION (0.3ms) BEGIN
29
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "b956a2888ca5ca710a5a2eb673b7f0efe73df9a1"], ["created_at", "2020-12-19 15:25:51.105916"], ["updated_at", "2020-12-19 15:25:51.105916"]]
30
+ TRANSACTION (0.5ms) COMMIT
31
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
32
+  (0.5ms) DROP TABLE IF EXISTS "categorical_taggings" CASCADE
33
+  (5.9ms) CREATE TABLE "categorical_taggings" ("id" bigserial primary key, "taggable_id" integer, "taggable_type" character varying, "tag_id" integer)
34
+  (2.1ms) CREATE INDEX "index_categorical_taggings_on_taggable_type_and_taggable_id" ON "categorical_taggings" USING btree ("taggable_type", "taggable_id")
35
+  (0.1ms) DROP TABLE IF EXISTS "categorical_tags" CASCADE
36
+  (3.5ms) CREATE TABLE "categorical_tags" ("id" bigserial primary key, "label" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
37
+  (1.7ms) CREATE UNIQUE INDEX "index_categorical_tags_on_label" ON "categorical_tags" USING btree ("label")
38
+  (0.1ms) DROP TABLE IF EXISTS "posts" CASCADE
39
+  (3.7ms) CREATE TABLE "posts" ("id" bigserial primary key, "title" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
40
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
41
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
42
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20151015173150)
43
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES
44
44
  (20150919153408),
45
45
  (20151003185718),
46
46
  (20151011215525);
47
47
 
48
48
  
49
-  (4.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
50
- ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
51
-  (0.2ms) BEGIN
52
- ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2020-01-03 03:03:43.692263"], ["updated_at", "2020-01-03 03:03:43.692263"]]
53
-  (0.5ms) COMMIT
49
+  (3.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
54
50
  ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
55
-  (0.2ms) BEGIN
56
- ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2020-01-03 03:03:43.696303"], ["key", "environment"]]
57
-  (0.5ms) COMMIT
58
- ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
59
-  (0.2ms) BEGIN
60
- ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "b956a2888ca5ca710a5a2eb673b7f0efe73df9a1"], ["created_at", "2020-01-03 03:03:43.699615"], ["updated_at", "2020-01-03 03:03:43.699615"]]
61
-  (0.5ms) COMMIT
62
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
51
+ TRANSACTION (0.2ms) BEGIN
52
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2020-12-19 15:25:51.155990"], ["updated_at", "2020-12-19 15:25:51.155990"]]
53
+ TRANSACTION (0.6ms) COMMIT
54
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
55
+ TRANSACTION (0.1ms) BEGIN
56
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2020-12-19 15:25:51.159125"], ["key", "environment"]]
57
+ TRANSACTION (0.5ms) COMMIT
58
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
59
+ TRANSACTION (0.2ms) BEGIN
60
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "b956a2888ca5ca710a5a2eb673b7f0efe73df9a1"], ["created_at", "2020-12-19 15:25:51.161544"], ["updated_at", "2020-12-19 15:25:51.161544"]]
61
+ TRANSACTION (0.7ms) COMMIT
62
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
@@ -1,119 +1,119 @@
1
-  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
2
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
3
-  (0.2ms) BEGIN
4
- -----------------------------------------------------
5
- Categorical::TaggingTest: test_tagging_belongs_to_tag
6
- -----------------------------------------------------
7
-  (0.6ms) SAVEPOINT active_record_1
8
- Categorical::Tag Exists? (2.1ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "label"], ["LIMIT", 1]]
9
- Categorical::Tag Create (0.6ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "label"], ["created_at", "2020-01-03 03:03:50.526085"], ["updated_at", "2020-01-03 03:03:50.526085"]]
10
-  (0.2ms) RELEASE SAVEPOINT active_record_1
11
-  (0.2ms) SAVEPOINT active_record_1
12
- Categorical::Tagging Create (12.8ms) INSERT INTO "categorical_taggings" DEFAULT VALUES RETURNING "id"
13
-  (0.3ms) RELEASE SAVEPOINT active_record_1
14
-  (0.3ms) SAVEPOINT active_record_1
15
- Categorical::Tagging Update (0.7ms) UPDATE "categorical_taggings" SET "tag_id" = $1 WHERE "categorical_taggings"."id" = $2 [["tag_id", 1], ["id", 1]]
16
-  (0.2ms) RELEASE SAVEPOINT active_record_1
17
-  (0.3ms) ROLLBACK
18
-  (0.1ms) BEGIN
19
- ----------------------------------------------------------
20
- Categorical::TaggingTest: test_tagging_belongs_to_taggable
21
- ----------------------------------------------------------
22
-  (0.3ms) SAVEPOINT active_record_1
23
- Post Create (7.0ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2020-01-03 03:03:50.574533"], ["updated_at", "2020-01-03 03:03:50.574533"]]
24
-  (0.2ms) RELEASE SAVEPOINT active_record_1
25
-  (0.1ms) SAVEPOINT active_record_1
26
- Categorical::Tagging Create (0.3ms) INSERT INTO "categorical_taggings" DEFAULT VALUES RETURNING "id"
27
-  (0.1ms) RELEASE SAVEPOINT active_record_1
28
-  (0.2ms) SAVEPOINT active_record_1
29
- Categorical::Tagging Update (0.4ms) UPDATE "categorical_taggings" SET "taggable_id" = $1, "taggable_type" = $2 WHERE "categorical_taggings"."id" = $3 [["taggable_id", 1], ["taggable_type", "Post"], ["id", 2]]
30
-  (0.1ms) RELEASE SAVEPOINT active_record_1
31
-  (0.2ms) ROLLBACK
32
-  (0.1ms) BEGIN
33
- ------------------------------------------------------
34
- Categorical::TagTest: test_validates_presence_of_label
35
- ------------------------------------------------------
36
-  (0.3ms) SAVEPOINT active_record_1
37
- Categorical::Tag Exists? (0.4ms) SELECT 1 AS one FROM "categorical_tags" WHERE "categorical_tags"."label" IS NULL LIMIT $1 [["LIMIT", 1]]
38
-  (6.5ms) ROLLBACK TO SAVEPOINT active_record_1
39
-  (0.3ms) ROLLBACK
40
-  (0.2ms) BEGIN
1
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
2
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
3
+ TRANSACTION (0.2ms) BEGIN
4
+ ---------------------------------------------------------------------------
5
+ Categorical::TagTest: test_validates_uniqueness_of_label_not_case_sensitive
6
+ ---------------------------------------------------------------------------
7
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
8
+ Categorical::Tag Exists? (0.6ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "Label"], ["LIMIT", 1]]
9
+ Categorical::Tag Create (0.4ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "Label"], ["created_at", "2020-12-19 15:25:59.504701"], ["updated_at", "2020-12-19 15:25:59.504701"]]
10
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
11
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
12
+ Categorical::Tag Exists? (0.3ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "label"], ["LIMIT", 1]]
13
+ TRANSACTION (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
14
+ TRANSACTION (0.1ms) ROLLBACK
15
+ TRANSACTION (0.1ms) BEGIN
41
16
  --------------------------------------------
42
17
  Categorical::TagTest: test_has_many_taggings
43
18
  --------------------------------------------
44
-  (0.3ms) SAVEPOINT active_record_1
45
- Categorical::Tag Exists? (0.5ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "label"], ["LIMIT", 1]]
46
- Categorical::Tag Create (0.5ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "label"], ["created_at", "2020-01-03 03:03:50.607732"], ["updated_at", "2020-01-03 03:03:50.607732"]]
47
-  (0.2ms) RELEASE SAVEPOINT active_record_1
48
-  (0.2ms) SAVEPOINT active_record_1
19
+ TRANSACTION (0.4ms) SAVEPOINT active_record_1
20
+ Categorical::Tag Exists? (0.3ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "label"], ["LIMIT", 1]]
21
+ Categorical::Tag Create (0.5ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "label"], ["created_at", "2020-12-19 15:25:59.513752"], ["updated_at", "2020-12-19 15:25:59.513752"]]
22
+ TRANSACTION (0.3ms) RELEASE SAVEPOINT active_record_1
23
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
49
24
  Categorical::Tagging Create (0.4ms) INSERT INTO "categorical_taggings" ("tag_id") VALUES ($1) RETURNING "id" [["tag_id", 2]]
50
-  (0.1ms) RELEASE SAVEPOINT active_record_1
25
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
51
26
  Categorical::Tagging Load (0.3ms) SELECT "categorical_taggings".* FROM "categorical_taggings" WHERE "categorical_taggings"."tag_id" = $1 [["tag_id", 2]]
52
-  (0.3ms) ROLLBACK
53
-  (0.2ms) BEGIN
27
+ TRANSACTION (0.2ms) ROLLBACK
28
+ TRANSACTION (0.1ms) BEGIN
29
+ ------------------------------------------------------
30
+ Categorical::TagTest: test_validates_presence_of_label
31
+ ------------------------------------------------------
32
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
33
+ Categorical::Tag Exists? (0.2ms) SELECT 1 AS one FROM "categorical_tags" WHERE "categorical_tags"."label" IS NULL LIMIT $1 [["LIMIT", 1]]
34
+ TRANSACTION (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
35
+ TRANSACTION (0.1ms) ROLLBACK
36
+ TRANSACTION (0.1ms) BEGIN
54
37
  --------------------------------------------------------
55
38
  Categorical::TagTest: test_validates_uniqueness_of_label
56
39
  --------------------------------------------------------
57
-  (0.2ms) SAVEPOINT active_record_1
58
- Categorical::Tag Exists? (0.4ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "label"], ["LIMIT", 1]]
59
- Categorical::Tag Create (0.4ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "label"], ["created_at", "2020-01-03 03:03:50.626154"], ["updated_at", "2020-01-03 03:03:50.626154"]]
60
-  (0.2ms) RELEASE SAVEPOINT active_record_1
61
-  (0.2ms) SAVEPOINT active_record_1
62
- Categorical::Tag Exists? (0.4ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "label"], ["LIMIT", 1]]
63
-  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
64
-  (0.2ms) ROLLBACK
65
-  (0.2ms) BEGIN
66
- ---------------------------------------------------------------------------
67
- Categorical::TagTest: test_validates_uniqueness_of_label_not_case_sensitive
68
- ---------------------------------------------------------------------------
69
-  (0.2ms) SAVEPOINT active_record_1
70
- Categorical::Tag Exists? (0.4ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "Label"], ["LIMIT", 1]]
71
- Categorical::Tag Create (0.4ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "Label"], ["created_at", "2020-01-03 03:03:50.632945"], ["updated_at", "2020-01-03 03:03:50.632945"]]
72
-  (0.2ms) RELEASE SAVEPOINT active_record_1
73
-  (0.1ms) SAVEPOINT active_record_1
74
- Categorical::Tag Exists? (0.6ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "label"], ["LIMIT", 1]]
75
-  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
76
-  (0.4ms) ROLLBACK
77
-  (0.2ms) BEGIN
40
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
41
+ Categorical::Tag Exists? (0.3ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "label"], ["LIMIT", 1]]
42
+ Categorical::Tag Create (0.3ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "label"], ["created_at", "2020-12-19 15:25:59.540101"], ["updated_at", "2020-12-19 15:25:59.540101"]]
43
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
44
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
45
+ Categorical::Tag Exists? (0.2ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "label"], ["LIMIT", 1]]
46
+ TRANSACTION (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
47
+ TRANSACTION (0.1ms) ROLLBACK
48
+ TRANSACTION (0.1ms) BEGIN
49
+ -------------------------------
50
+ Categorical::TagTest: test_to_s
51
+ -------------------------------
52
+ TRANSACTION (0.3ms) SAVEPOINT active_record_1
53
+ Categorical::Tag Exists? (0.2ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "label"], ["LIMIT", 1]]
54
+ Categorical::Tag Create (0.2ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "label"], ["created_at", "2020-12-19 15:25:59.546230"], ["updated_at", "2020-12-19 15:25:59.546230"]]
55
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
56
+ TRANSACTION (0.2ms) ROLLBACK
57
+ TRANSACTION (0.1ms) BEGIN
78
58
  ------------------------------------------------------
79
59
  Categorical::TagTest: test_fetching_taggables_by_class
80
60
  ------------------------------------------------------
81
-  (0.3ms) SAVEPOINT active_record_1
61
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
82
62
  Categorical::Tag Exists? (0.4ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "tag"], ["LIMIT", 1]]
83
- Post Create (0.4ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2020-01-03 03:03:50.647469"], ["updated_at", "2020-01-03 03:03:50.647469"]]
63
+ Post Create (0.7ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2020-12-19 15:25:59.572438"], ["updated_at", "2020-12-19 15:25:59.572438"]]
84
64
  Categorical::Tag Exists? (0.5ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "tag"], ["LIMIT", 1]]
85
- Categorical::Tag Create (0.4ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "tag"], ["created_at", "2020-01-03 03:03:50.650168"], ["updated_at", "2020-01-03 03:03:50.650168"]]
86
- Categorical::Tagging Create (0.4ms) INSERT INTO "categorical_taggings" ("taggable_id", "taggable_type", "tag_id") VALUES ($1, $2, $3) RETURNING "id" [["taggable_id", 2], ["taggable_type", "Post"], ["tag_id", 5]]
87
-  (0.2ms) RELEASE SAVEPOINT active_record_1
88
- Categorical::Tagging Load (0.5ms) SELECT "categorical_taggings".* FROM "categorical_taggings" WHERE "categorical_taggings"."tag_id" = $1 AND "categorical_taggings"."taggable_type" = $2 [["tag_id", 5], ["taggable_type", "Post"]]
89
- Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 [["id", 2]]
90
-  (0.4ms) ROLLBACK
91
-  (0.2ms) BEGIN
92
- -------------------------------
93
- Categorical::TagTest: test_to_s
94
- -------------------------------
95
-  (0.2ms) SAVEPOINT active_record_1
96
- Categorical::Tag Exists? (0.5ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "label"], ["LIMIT", 1]]
97
- Categorical::Tag Create (0.5ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "label"], ["created_at", "2020-01-03 03:03:50.660449"], ["updated_at", "2020-01-03 03:03:50.660449"]]
98
-  (0.2ms) RELEASE SAVEPOINT active_record_1
99
-  (0.2ms) ROLLBACK
100
-  (0.2ms) BEGIN
65
+ Categorical::Tag Create (0.4ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "tag"], ["created_at", "2020-12-19 15:25:59.575863"], ["updated_at", "2020-12-19 15:25:59.575863"]]
66
+ Categorical::Tagging Create (0.7ms) INSERT INTO "categorical_taggings" ("taggable_id", "taggable_type", "tag_id") VALUES ($1, $2, $3) RETURNING "id" [["taggable_id", 1], ["taggable_type", "Post"], ["tag_id", 5]]
67
+ TRANSACTION (0.4ms) RELEASE SAVEPOINT active_record_1
68
+ Categorical::Tagging Load (0.2ms) SELECT "categorical_taggings".* FROM "categorical_taggings" WHERE "categorical_taggings"."tag_id" = $1 AND "categorical_taggings"."taggable_type" = $2 [["tag_id", 5], ["taggable_type", "Post"]]
69
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 [["id", 1]]
70
+ TRANSACTION (0.1ms) ROLLBACK
71
+ TRANSACTION (0.1ms) BEGIN
101
72
  ----------------------------------------------------
102
73
  Categorical::TagTest: test_validates_length_of_label
103
74
  ----------------------------------------------------
104
-  (0.2ms) SAVEPOINT active_record_1
105
- Categorical::Tag Exists? (0.4ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"], ["LIMIT", 1]]
106
-  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
107
-  (0.2ms) ROLLBACK
108
-  (0.2ms) BEGIN
75
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
76
+ Categorical::Tag Exists? (0.2ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"], ["LIMIT", 1]]
77
+ TRANSACTION (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
78
+ TRANSACTION (0.1ms) ROLLBACK
79
+ TRANSACTION (0.1ms) BEGIN
80
+ -----------------------------------------------------
81
+ Categorical::TaggingTest: test_tagging_belongs_to_tag
82
+ -----------------------------------------------------
83
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
84
+ Categorical::Tag Exists? (0.2ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "label"], ["LIMIT", 1]]
85
+ Categorical::Tag Create (0.4ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "label"], ["created_at", "2020-12-19 15:25:59.590171"], ["updated_at", "2020-12-19 15:25:59.590171"]]
86
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
87
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
88
+ Categorical::Tagging Create (0.2ms) INSERT INTO "categorical_taggings" DEFAULT VALUES RETURNING "id"
89
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
90
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
91
+ Categorical::Tagging Update (0.2ms) UPDATE "categorical_taggings" SET "tag_id" = $1 WHERE "categorical_taggings"."id" = $2 [["tag_id", 6], ["id", 3]]
92
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
93
+ TRANSACTION (0.1ms) ROLLBACK
94
+ TRANSACTION (0.1ms) BEGIN
95
+ ----------------------------------------------------------
96
+ Categorical::TaggingTest: test_tagging_belongs_to_taggable
97
+ ----------------------------------------------------------
98
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
99
+ Post Create (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2020-12-19 15:25:59.595538"], ["updated_at", "2020-12-19 15:25:59.595538"]]
100
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
101
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
102
+ Categorical::Tagging Create (0.2ms) INSERT INTO "categorical_taggings" DEFAULT VALUES RETURNING "id"
103
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
104
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
105
+ Categorical::Tagging Update (0.3ms) UPDATE "categorical_taggings" SET "taggable_id" = $1, "taggable_type" = $2 WHERE "categorical_taggings"."id" = $3 [["taggable_id", 2], ["taggable_type", "Post"], ["id", 4]]
106
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
107
+ TRANSACTION (0.1ms) ROLLBACK
108
+ TRANSACTION (0.2ms) BEGIN
109
109
  -----------------------------------------------------------------------
110
110
  Categorical::TaggableTest: test_taggable_has_many_tags_through_taggings
111
111
  -----------------------------------------------------------------------
112
-  (0.4ms) SAVEPOINT active_record_1
112
+ TRANSACTION (0.4ms) SAVEPOINT active_record_1
113
113
  Categorical::Tag Exists? (0.6ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "tag"], ["LIMIT", 1]]
114
- Post Create (0.7ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2020-01-03 03:03:50.672071"], ["updated_at", "2020-01-03 03:03:50.672071"]]
115
- Categorical::Tag Exists? (0.7ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "tag"], ["LIMIT", 1]]
116
- Categorical::Tag Create (0.5ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "tag"], ["created_at", "2020-01-03 03:03:50.675530"], ["updated_at", "2020-01-03 03:03:50.675530"]]
117
- Categorical::Tagging Create (0.4ms) INSERT INTO "categorical_taggings" ("taggable_id", "taggable_type", "tag_id") VALUES ($1, $2, $3) RETURNING "id" [["taggable_id", 3], ["taggable_type", "Post"], ["tag_id", 7]]
118
-  (0.2ms) RELEASE SAVEPOINT active_record_1
119
-  (0.2ms) ROLLBACK
114
+ Post Create (0.5ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2020-12-19 15:25:59.605162"], ["updated_at", "2020-12-19 15:25:59.605162"]]
115
+ Categorical::Tag Exists? (0.3ms) SELECT 1 AS one FROM "categorical_tags" WHERE LOWER("categorical_tags"."label") = LOWER($1) LIMIT $2 [["label", "tag"], ["LIMIT", 1]]
116
+ Categorical::Tag Create (0.2ms) INSERT INTO "categorical_tags" ("label", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["label", "tag"], ["created_at", "2020-12-19 15:25:59.608398"], ["updated_at", "2020-12-19 15:25:59.608398"]]
117
+ Categorical::Tagging Create (0.2ms) INSERT INTO "categorical_taggings" ("taggable_id", "taggable_type", "tag_id") VALUES ($1, $2, $3) RETURNING "id" [["taggable_id", 3], ["taggable_type", "Post"], ["tag_id", 7]]
118
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
119
+ TRANSACTION (0.1ms) ROLLBACK
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: categorical
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Klina
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-03 00:00:00.000000000 Z
11
+ date: 2020-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -16,14 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '6.0'
19
+ version: '6.1'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '6.0'
26
+ version: '6.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: tzinfo-data
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: pg
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -122,53 +136,53 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
136
  - !ruby/object:Gem::Version
123
137
  version: '0'
124
138
  requirements: []
125
- rubygems_version: 3.0.6
139
+ rubygems_version: 3.1.4
126
140
  signing_key:
127
141
  specification_version: 4
128
142
  summary: Provides basic tagging for Rails applications
129
143
  test_files:
144
+ - test/test_helper.rb
145
+ - test/categorical_test.rb
146
+ - test/models/categorical/concerns/taggable_test.rb
147
+ - test/models/categorical/tagging_test.rb
148
+ - test/models/categorical/tag_test.rb
149
+ - test/dummy/README.rdoc
150
+ - test/dummy/config.ru
151
+ - test/dummy/Rakefile
152
+ - test/dummy/app/views/layouts/application.html.erb
153
+ - test/dummy/app/helpers/application_helper.rb
130
154
  - test/dummy/app/models/post.rb
131
155
  - test/dummy/app/controllers/application_controller.rb
132
- - test/dummy/app/views/layouts/application.html.erb
156
+ - test/dummy/app/assets/stylesheets/application.css
133
157
  - test/dummy/app/assets/config/manifest.js
134
158
  - test/dummy/app/assets/javascripts/application.js
135
- - test/dummy/app/assets/stylesheets/application.css
136
- - test/dummy/app/helpers/application_helper.rb
137
- - test/dummy/bin/rake
138
- - test/dummy/bin/setup
139
- - test/dummy/bin/bundle
140
- - test/dummy/bin/rails
141
- - test/dummy/config/secrets.yml
142
- - test/dummy/config/routes.rb
159
+ - test/dummy/db/migrate/20151003185718_create_posts.rb
160
+ - test/dummy/db/schema.rb
161
+ - test/dummy/log/test.log
162
+ - test/dummy/log/development.log
163
+ - test/dummy/config/boot.rb
164
+ - test/dummy/config/initializers/filter_parameter_logging.rb
165
+ - test/dummy/config/initializers/inflections.rb
166
+ - test/dummy/config/initializers/mime_types.rb
167
+ - test/dummy/config/initializers/cookies_serializer.rb
168
+ - test/dummy/config/initializers/wrap_parameters.rb
169
+ - test/dummy/config/initializers/session_store.rb
170
+ - test/dummy/config/initializers/backtrace_silencers.rb
171
+ - test/dummy/config/initializers/assets.rb
172
+ - test/dummy/config/application.rb
143
173
  - test/dummy/config/locales/en.yml
144
- - test/dummy/config/environments/production.rb
145
174
  - test/dummy/config/environments/development.rb
146
175
  - test/dummy/config/environments/test.rb
176
+ - test/dummy/config/environments/production.rb
177
+ - test/dummy/config/routes.rb
147
178
  - test/dummy/config/environment.rb
148
- - test/dummy/config/application.rb
179
+ - test/dummy/config/secrets.yml
149
180
  - test/dummy/config/database.yml
150
- - test/dummy/config/boot.rb
151
- - test/dummy/config/initializers/backtrace_silencers.rb
152
- - test/dummy/config/initializers/mime_types.rb
153
- - test/dummy/config/initializers/filter_parameter_logging.rb
154
- - test/dummy/config/initializers/session_store.rb
155
- - test/dummy/config/initializers/wrap_parameters.rb
156
- - test/dummy/config/initializers/assets.rb
157
- - test/dummy/config/initializers/cookies_serializer.rb
158
- - test/dummy/config/initializers/inflections.rb
159
- - test/dummy/config.ru
160
- - test/dummy/Rakefile
161
- - test/dummy/public/favicon.ico
181
+ - test/dummy/bin/rake
182
+ - test/dummy/bin/setup
183
+ - test/dummy/bin/rails
184
+ - test/dummy/bin/bundle
162
185
  - test/dummy/public/422.html
163
- - test/dummy/public/500.html
186
+ - test/dummy/public/favicon.ico
164
187
  - test/dummy/public/404.html
165
- - test/dummy/db/schema.rb
166
- - test/dummy/db/migrate/20151003185718_create_posts.rb
167
- - test/dummy/log/test.log
168
- - test/dummy/log/development.log
169
- - test/dummy/README.rdoc
170
- - test/categorical_test.rb
171
- - test/models/categorical/tag_test.rb
172
- - test/models/categorical/tagging_test.rb
173
- - test/models/categorical/concerns/taggable_test.rb
174
- - test/test_helper.rb
188
+ - test/dummy/public/500.html