has_public_id 1.1.8 → 1.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/has_public_id/activerecord/mixin.rb +3 -2
- data/lib/has_public_id/version.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +92 -7075
- metadata +3 -7
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -14
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: has_public_id
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Graham Melcher
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-11-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -84,11 +84,9 @@ files:
|
|
84
84
|
- test/dummy/config/initializers/wrap_parameters.rb
|
85
85
|
- test/dummy/config/locales/en.yml
|
86
86
|
- test/dummy/config/routes.rb
|
87
|
-
- test/dummy/db/development.sqlite3
|
88
87
|
- test/dummy/db/migrate/20140109180823_create_users.rb
|
89
88
|
- test/dummy/db/schema.rb
|
90
89
|
- test/dummy/db/test.sqlite3
|
91
|
-
- test/dummy/log/development.log
|
92
90
|
- test/dummy/log/test.log
|
93
91
|
- test/dummy/public/404.html
|
94
92
|
- test/dummy/public/422.html
|
@@ -120,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
118
|
version: '0'
|
121
119
|
requirements: []
|
122
120
|
rubyforge_project:
|
123
|
-
rubygems_version: 2.4.
|
121
|
+
rubygems_version: 2.4.6
|
124
122
|
signing_key:
|
125
123
|
specification_version: 4
|
126
124
|
summary: Random, unique identifiers for activerecord models
|
@@ -152,11 +150,9 @@ test_files:
|
|
152
150
|
- test/dummy/config/locales/en.yml
|
153
151
|
- test/dummy/config/routes.rb
|
154
152
|
- test/dummy/config.ru
|
155
|
-
- test/dummy/db/development.sqlite3
|
156
153
|
- test/dummy/db/migrate/20140109180823_create_users.rb
|
157
154
|
- test/dummy/db/schema.rb
|
158
155
|
- test/dummy/db/test.sqlite3
|
159
|
-
- test/dummy/log/development.log
|
160
156
|
- test/dummy/log/test.log
|
161
157
|
- test/dummy/public/404.html
|
162
158
|
- test/dummy/public/422.html
|
Binary file
|
@@ -1,14 +0,0 @@
|
|
1
|
-
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4
|
-
Migrating to CreateUsers (20140109180823)
|
5
|
-
[1m[35m (0.1ms)[0m begin transaction
|
6
|
-
[1m[36m (0.5ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "ident" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
7
|
-
[1m[35mSQL (3.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140109180823"]]
|
8
|
-
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
9
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
10
|
-
[1m[36m (1.4ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "ident" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
11
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
12
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
13
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
14
|
-
[1m[36m (1.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140109180823')[0m
|