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.
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.8
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: 2014-11-22 00:00:00.000000000 Z
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.2
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
-  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
-  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
- Migrating to CreateUsers (20140109180823)
5
-  (0.1ms) begin transaction
6
-  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "ident" varchar(255), "created_at" datetime, "updated_at" datetime) 
7
- SQL (3.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140109180823"]]
8
-  (1.1ms) commit transaction
9
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
-  (1.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "ident" varchar(255), "created_at" datetime, "updated_at" datetime) 
11
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
12
-  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
13
-  (0.1ms) SELECT version FROM "schema_migrations"
14
-  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140109180823')