uuid_ids 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 692880840e2bd7e1c32000871c5354e0c06a546f
4
+ data.tar.gz: aaf62ba007224bd62285a794548ae1d56977a241
5
+ SHA512:
6
+ metadata.gz: fef1369d85e361462472a4647a41c1e3f6eb6dde856249f0d1f4a0b9afae202898d2f7ba1465899b730051dbd307efedc6795fa53c870e22cc22b4792d63fe63
7
+ data.tar.gz: f8db1996d5f1e9029a3e3f83b569b7dee6eb8a6b0e36c67604fc817f1c6a596347ff27c789dcd42944696185d108382556a087c1078fcf739d49dd3e1f751ba3
data/README.md CHANGED
@@ -2,11 +2,19 @@
2
2
 
3
3
  A simple gem to make it easy to use UUIDs as the id for Rails models.
4
4
 
5
+ [![Gem Version](https://badge.fury.io/rb/uuid_ids.png)](http://badge.fury.io/rb/uuid_ids)
6
+ [![Build Status](https://travis-ci.org/jagthedrummer/uuid_ids.png?branch=master)](https://travis-ci.org/jagthedrummer/uuid_ids)
7
+ [![Code Climate](https://codeclimate.com/repos/52f684c36956805406004b17/badges/37683575ddd226aa335e/gpa.png)](https://codeclimate.com/repos/52f684c36956805406004b17/feed)
8
+ [![Coverage Status](https://coveralls.io/repos/jagthedrummer/uuid_ids/badge.png)](https://coveralls.io/r/jagthedrummer/uuid_ids)
9
+ [![Dependency Status](https://gemnasium.com/jagthedrummer/uuid_ids.png)](https://gemnasium.com/jagthedrummer/uuid_ids)
10
+
11
+
12
+
5
13
  Your table creation migration should look something like this:
6
14
 
7
15
  ```ruby
8
16
  create_table :things, :id => false do |t|
9
- t.binary :id, :primary_key => true
17
+ t.binary :id, :primary_key => true, :null => false
10
18
  t.timestamps
11
19
  end
12
20
  add_index :things, :id, :unique => true
data/Rakefile CHANGED
@@ -26,3 +26,15 @@ load 'rails/tasks/engine.rake'
26
26
 
27
27
  Bundler::GemHelper.install_tasks
28
28
 
29
+
30
+ desc "Run tests for travis"
31
+ task :travis do
32
+ ["rspec"].each do |cmd|
33
+ puts "Starting to run #{cmd}..."
34
+ system("export DISPLAY=:99.0 && bundle exec #{cmd}")
35
+ raise "#{cmd} failed!" unless $?.exitstatus == 0
36
+ end
37
+ end
38
+
39
+ desc 'Default: run tests.'
40
+ task :default => ['travis']
@@ -1,3 +1,3 @@
1
1
  module UuidIds
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -14,7 +14,7 @@ development:
14
14
  # Do not set this db to the same as development or production.
15
15
  test:
16
16
  adapter: sqlite3
17
- database: db/test.sqlite3
17
+ database: ":memory:"
18
18
  pool: 5
19
19
  timeout: 5000
20
20
 
@@ -23,3 +23,13 @@ Connecting to database specified by database.yml
23
23
  Migrating to CreateThings (20130510232457)
24
24
   (0.0ms) select sqlite_version(*)
25
25
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
26
+ Connecting to database specified by database.yml
27
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
28
+  (0.1ms) select sqlite_version(*)
29
+  (0.2ms) CREATE TABLE "things" ("id" blob, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
30
+  (0.1ms) CREATE UNIQUE INDEX "index_things_on_id" ON "things" ("id")
31
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
32
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
33
+  (0.0ms) SELECT version FROM "schema_migrations"
34
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130510232457')
35
+ Connecting to database specified by database.yml
@@ -254,3 +254,160 @@ Connecting to database specified by database.yml
254
254
  SQL (0.4ms) INSERT INTO "things" ("created_at", "id", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 10 May 2013 23:56:15 UTC +00:00], ["id", "336b2d14-b9cd-11e2-8d3a-000a27020042"], ["updated_at", Fri, 10 May 2013 23:56:15 UTC +00:00]]
255
255
   (0.0ms) RELEASE SAVEPOINT active_record_1
256
256
   (0.3ms) rollback transaction
257
+ Connecting to database specified by database.yml
258
+  (0.3ms) begin transaction
259
+  (0.1ms) SAVEPOINT active_record_1
260
+ SQL (5.7ms) INSERT INTO "things" ("created_at", "id", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 19:23:05 UTC +00:00], ["id", "6f40f048-90f6-11e3-bd1d-28cfe9162c87"], ["updated_at", Sat, 08 Feb 2014 19:23:05 UTC +00:00]]
261
+  (0.1ms) RELEASE SAVEPOINT active_record_1
262
+  (0.3ms) rollback transaction
263
+  (0.1ms) begin transaction
264
+  (0.0ms) SAVEPOINT active_record_1
265
+  (0.1ms) SELECT COUNT(*) FROM "things" WHERE "things"."id" = x'36663435663636302d393066362d313165332d626431642d323863666539313632633837'
266
+ SQL (0.3ms) INSERT INTO "things" ("created_at", "id", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 19:23:05 UTC +00:00], ["id", "6f45f660-90f6-11e3-bd1d-28cfe9162c87"], ["updated_at", Sat, 08 Feb 2014 19:23:05 UTC +00:00]]
267
+  (0.0ms) RELEASE SAVEPOINT active_record_1
268
+  (0.3ms) rollback transaction
269
+  (0.0ms) begin transaction
270
+  (0.0ms) SAVEPOINT active_record_1
271
+  (0.1ms) SELECT COUNT(*) FROM "things" WHERE "things"."id" = x'36663436633163362d393066362d313165332d626431642d323863666539313632633837'
272
+ SQL (0.3ms) INSERT INTO "things" ("created_at", "id", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 19:23:05 UTC +00:00], ["id", "6f46c1c6-90f6-11e3-bd1d-28cfe9162c87"], ["updated_at", Sat, 08 Feb 2014 19:23:05 UTC +00:00]]
273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
274
+  (0.3ms) rollback transaction
275
+ Connecting to database specified by database.yml
276
+  (0.2ms) begin transaction
277
+  (0.1ms) SAVEPOINT active_record_1
278
+ SQL (3.5ms) INSERT INTO "things" ("created_at", "id", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 19:30:29 UTC +00:00], ["id", "77fc89d0-90f7-11e3-a93e-28cfe9162c87"], ["updated_at", Sat, 08 Feb 2014 19:30:29 UTC +00:00]]
279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280
+  (0.3ms) rollback transaction
281
+  (0.0ms) begin transaction
282
+  (0.0ms) SAVEPOINT active_record_1
283
+  (0.0ms) SELECT COUNT(*) FROM "things" WHERE "things"."id" = x'37383030316261342d393066372d313165332d613933652d323863666539313632633837'
284
+ SQL (0.3ms) INSERT INTO "things" ("created_at", "id", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 19:30:29 UTC +00:00], ["id", "78001ba4-90f7-11e3-a93e-28cfe9162c87"], ["updated_at", Sat, 08 Feb 2014 19:30:29 UTC +00:00]]
285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
286
+  (0.3ms) rollback transaction
287
+  (0.0ms) begin transaction
288
+  (0.1ms) SAVEPOINT active_record_1
289
+  (0.1ms) SELECT COUNT(*) FROM "things" WHERE "things"."id" = x'37383030633364382d393066372d313165332d613933652d323863666539313632633837'
290
+ SQL (0.2ms) INSERT INTO "things" ("created_at", "id", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 19:30:29 UTC +00:00], ["id", "7800c3d8-90f7-11e3-a93e-28cfe9162c87"], ["updated_at", Sat, 08 Feb 2014 19:30:29 UTC +00:00]]
291
+  (0.0ms) RELEASE SAVEPOINT active_record_1
292
+  (0.4ms) rollback transaction
293
+ Connecting to database specified by database.yml
294
+  (0.2ms) begin transaction
295
+  (0.0ms) rollback transaction
296
+  (0.0ms) begin transaction
297
+  (0.0ms) rollback transaction
298
+  (0.0ms) begin transaction
299
+  (0.1ms) rollback transaction
300
+ Connecting to database specified by database.yml
301
+  (0.1ms) begin transaction
302
+  (0.0ms) rollback transaction
303
+  (0.1ms) begin transaction
304
+  (0.0ms) rollback transaction
305
+  (0.0ms) begin transaction
306
+  (0.1ms) rollback transaction
307
+ Connecting to database specified by database.yml
308
+  (0.1ms) begin transaction
309
+  (0.0ms) rollback transaction
310
+  (0.0ms) begin transaction
311
+  (0.0ms) rollback transaction
312
+  (0.0ms) begin transaction
313
+  (0.0ms) rollback transaction
314
+ Connecting to database specified by database.yml
315
+  (0.1ms) begin transaction
316
+  (0.0ms) rollback transaction
317
+  (0.0ms) begin transaction
318
+  (0.0ms) rollback transaction
319
+  (0.0ms) begin transaction
320
+  (0.0ms) rollback transaction
321
+ Connecting to database specified by database.yml
322
+  (0.1ms) begin transaction
323
+  (0.0ms) rollback transaction
324
+  (0.1ms) begin transaction
325
+  (0.0ms) rollback transaction
326
+  (0.1ms) begin transaction
327
+  (0.1ms) rollback transaction
328
+ Connecting to database specified by database.yml
329
+  (0.2ms) begin transaction
330
+  (0.0ms) rollback transaction
331
+  (0.0ms) begin transaction
332
+  (0.0ms) rollback transaction
333
+  (0.0ms) begin transaction
334
+  (0.1ms) rollback transaction
335
+ Connecting to database specified by database.yml
336
+  (0.1ms) begin transaction
337
+  (0.0ms) rollback transaction
338
+  (0.0ms) begin transaction
339
+  (0.0ms) rollback transaction
340
+  (0.0ms) begin transaction
341
+  (0.1ms) rollback transaction
342
+ Connecting to database specified by database.yml
343
+  (0.2ms) begin transaction
344
+  (0.1ms) rollback transaction
345
+  (0.0ms) begin transaction
346
+  (0.0ms) rollback transaction
347
+  (0.0ms) begin transaction
348
+  (0.1ms) rollback transaction
349
+ Connecting to database specified by database.yml
350
+ Connecting to database specified by database.yml
351
+  (0.2ms) begin transaction
352
+  (0.0ms) rollback transaction
353
+  (0.0ms) begin transaction
354
+  (0.0ms) rollback transaction
355
+  (0.0ms) begin transaction
356
+  (0.0ms) rollback transaction
357
+ Connecting to database specified by database.yml
358
+  (0.1ms) begin transaction
359
+  (0.0ms) rollback transaction
360
+  (0.0ms) begin transaction
361
+  (0.0ms) rollback transaction
362
+  (0.0ms) begin transaction
363
+  (0.0ms) rollback transaction
364
+ Connecting to database specified by database.yml
365
+  (0.6ms) select sqlite_version(*)
366
+  (0.2ms) CREATE TABLE "things" ("id" blob, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
367
+  (0.1ms) CREATE UNIQUE INDEX "index_things_on_id" ON "things" ("id")
368
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
369
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
370
+  (0.0ms) SELECT version FROM "schema_migrations"
371
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130510232457')
372
+  (0.1ms) begin transaction
373
+  (0.0ms) SAVEPOINT active_record_1
374
+  (0.1ms) SELECT COUNT(*) FROM "things" WHERE "things"."id" = x'61623230346630632d393066392d313165332d393436652d323863666539313632633837'
375
+ SQL (3.6ms) INSERT INTO "things" ("created_at", "id", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 19:46:14 UTC +00:00], ["id", "ab204f0c-90f9-11e3-946e-28cfe9162c87"], ["updated_at", Sat, 08 Feb 2014 19:46:14 UTC +00:00]]
376
+  (0.0ms) RELEASE SAVEPOINT active_record_1
377
+  (0.0ms) rollback transaction
378
+  (0.0ms) begin transaction
379
+  (0.0ms) SAVEPOINT active_record_1
380
+  (0.1ms) SELECT COUNT(*) FROM "things" WHERE "things"."id" = x'61623233343831612d393066392d313165332d393436652d323863666539313632633837'
381
+ SQL (0.1ms) INSERT INTO "things" ("created_at", "id", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 19:46:14 UTC +00:00], ["id", "ab23481a-90f9-11e3-946e-28cfe9162c87"], ["updated_at", Sat, 08 Feb 2014 19:46:14 UTC +00:00]]
382
+  (0.0ms) RELEASE SAVEPOINT active_record_1
383
+  (0.0ms) rollback transaction
384
+  (0.0ms) begin transaction
385
+  (0.0ms) SAVEPOINT active_record_1
386
+ SQL (0.1ms) INSERT INTO "things" ("created_at", "id", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 08 Feb 2014 19:46:14 UTC +00:00], ["id", "ab23a986-90f9-11e3-946e-28cfe9162c87"], ["updated_at", Sat, 08 Feb 2014 19:46:14 UTC +00:00]]
387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
388
+  (0.0ms) rollback transaction
389
+ Connecting to database specified by database.yml
390
+  (1.2ms) select sqlite_version(*)
391
+  (0.2ms) CREATE TABLE "things" ("id" blob, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
392
+  (0.1ms) CREATE UNIQUE INDEX "index_things_on_id" ON "things" ("id")
393
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
394
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
395
+  (0.0ms) SELECT version FROM "schema_migrations"
396
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130510232457')
397
+  (0.1ms) begin transaction
398
+  (0.0ms) SAVEPOINT active_record_1
399
+  (0.1ms) SELECT COUNT(*) FROM "things" WHERE "things"."id" = x'37306235613934322d656638362d313165342d623633622d303030613237303230303432'
400
+ SQL (7.6ms) INSERT INTO "things" ("created_at", "id", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 30 Apr 2015 22:15:42 UTC +00:00], ["id", "70b5a942-ef86-11e4-b63b-000a27020042"], ["updated_at", Thu, 30 Apr 2015 22:15:42 UTC +00:00]]
401
+  (0.1ms) RELEASE SAVEPOINT active_record_1
402
+  (0.1ms) rollback transaction
403
+  (0.1ms) begin transaction
404
+  (0.0ms) SAVEPOINT active_record_1
405
+  (0.1ms) SELECT COUNT(*) FROM "things" WHERE "things"."id" = x'37306266376232612d656638362d313165342d623633622d303030613237303230303432'
406
+ SQL (0.2ms) INSERT INTO "things" ("created_at", "id", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 30 Apr 2015 22:15:42 UTC +00:00], ["id", "70bf7b2a-ef86-11e4-b63b-000a27020042"], ["updated_at", Thu, 30 Apr 2015 22:15:42 UTC +00:00]]
407
+  (0.1ms) RELEASE SAVEPOINT active_record_1
408
+  (0.1ms) rollback transaction
409
+  (0.1ms) begin transaction
410
+  (0.1ms) SAVEPOINT active_record_1
411
+ SQL (0.2ms) INSERT INTO "things" ("created_at", "id", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 30 Apr 2015 22:15:42 UTC +00:00], ["id", "70c03650-ef86-11e4-b63b-000a27020042"], ["updated_at", Thu, 30 Apr 2015 22:15:42 UTC +00:00]]
412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
413
+  (0.1ms) rollback transaction
@@ -1,5 +1,11 @@
1
1
  # This file is copied to spec/ when you run 'rails generate rspec:install'
2
2
  ENV["RAILS_ENV"] ||= 'test'
3
+
4
+
5
+ require 'coveralls'
6
+ Coveralls.wear!
7
+
8
+
3
9
  require File.expand_path("../dummy/config/environment", __FILE__)
4
10
  require 'rspec/rails'
5
11
  require 'rspec/autorun'
@@ -35,5 +41,14 @@ RSpec.configure do |config|
35
41
  # the seed, which is printed after each run.
36
42
  # --seed 1234
37
43
  config.order = "random"
44
+
45
+
46
+ load_schema = lambda {
47
+ load "#{Rails.root.to_s}/db/schema.rb" # use db agnostic schema by default
48
+ # ActiveRecord::Migrator.up('db/migrate') # use migrations
49
+ }
50
+ silence_stream(STDOUT, &load_schema)
51
+
52
+
38
53
  end
39
54
 
metadata CHANGED
@@ -1,78 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uuid_ids
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
5
- prerelease:
4
+ version: 0.0.2
6
5
  platform: ruby
7
6
  authors:
8
7
  - Jeremy Green
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-05-11 00:00:00.000000000 Z
11
+ date: 2015-04-30 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rails
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: 3.2.13
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ~>
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: 3.2.13
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: uuidtools
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ~>
31
+ - - ">="
36
32
  - !ruby/object:Gem::Version
37
33
  version: 2.1.4
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ~>
38
+ - - ">="
44
39
  - !ruby/object:Gem::Version
45
40
  version: 2.1.4
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: sqlite3
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - ">="
52
46
  - !ruby/object:Gem::Version
53
47
  version: '0'
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - ">="
60
53
  - !ruby/object:Gem::Version
61
54
  version: '0'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: rspec-rails
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ! '>='
59
+ - - ">="
68
60
  - !ruby/object:Gem::Version
69
61
  version: '0'
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ! '>='
66
+ - - ">="
76
67
  - !ruby/object:Gem::Version
77
68
  version: '0'
78
69
  description: A simple gem to auto generate UUIDs for the id field of models.
@@ -82,19 +73,22 @@ executables: []
82
73
  extensions: []
83
74
  extra_rdoc_files: []
84
75
  files:
76
+ - MIT-LICENSE
77
+ - README.md
78
+ - Rakefile
85
79
  - lib/tasks/uuid_ids_tasks.rake
80
+ - lib/uuid_ids.rb
86
81
  - lib/uuid_ids/model_helper.rb
87
82
  - lib/uuid_ids/version.rb
88
- - lib/uuid_ids.rb
89
- - MIT-LICENSE
90
- - Rakefile
91
- - README.md
83
+ - spec/dummy/README.rdoc
84
+ - spec/dummy/Rakefile
92
85
  - spec/dummy/app/assets/javascripts/application.js
93
86
  - spec/dummy/app/assets/stylesheets/application.css
94
87
  - spec/dummy/app/controllers/application_controller.rb
95
88
  - spec/dummy/app/helpers/application_helper.rb
96
89
  - spec/dummy/app/models/thing.rb
97
90
  - spec/dummy/app/views/layouts/application.html.erb
91
+ - spec/dummy/config.ru
98
92
  - spec/dummy/config/application.rb
99
93
  - spec/dummy/config/boot.rb
100
94
  - spec/dummy/config/database.yml
@@ -110,7 +104,6 @@ files:
110
104
  - spec/dummy/config/initializers/wrap_parameters.rb
111
105
  - spec/dummy/config/locales/en.yml
112
106
  - spec/dummy/config/routes.rb
113
- - spec/dummy/config.ru
114
107
  - spec/dummy/db/development.sqlite3
115
108
  - spec/dummy/db/migrate/20130510232457_create_things.rb
116
109
  - spec/dummy/db/schema.rb
@@ -121,40 +114,31 @@ files:
121
114
  - spec/dummy/public/422.html
122
115
  - spec/dummy/public/500.html
123
116
  - spec/dummy/public/favicon.ico
124
- - spec/dummy/Rakefile
125
- - spec/dummy/README.rdoc
126
117
  - spec/dummy/script/rails
127
118
  - spec/models/thing_spec.rb
128
119
  - spec/spec_helper.rb
129
120
  homepage: https://github.com/jagthedrummer/uuid_ids
130
121
  licenses: []
122
+ metadata: {}
131
123
  post_install_message:
132
124
  rdoc_options: []
133
125
  require_paths:
134
126
  - lib
135
127
  required_ruby_version: !ruby/object:Gem::Requirement
136
- none: false
137
128
  requirements:
138
- - - ! '>='
129
+ - - ">="
139
130
  - !ruby/object:Gem::Version
140
131
  version: '0'
141
- segments:
142
- - 0
143
- hash: -3181629830934013621
144
132
  required_rubygems_version: !ruby/object:Gem::Requirement
145
- none: false
146
133
  requirements:
147
- - - ! '>='
134
+ - - ">="
148
135
  - !ruby/object:Gem::Version
149
136
  version: '0'
150
- segments:
151
- - 0
152
- hash: -3181629830934013621
153
137
  requirements: []
154
138
  rubyforge_project:
155
- rubygems_version: 1.8.25
139
+ rubygems_version: 2.2.3
156
140
  signing_key:
157
- specification_version: 3
141
+ specification_version: 4
158
142
  summary: A simple gem to auto generate UUIDs for the id field of models.
159
143
  test_files:
160
144
  - spec/dummy/app/assets/javascripts/application.js