uuids 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. checksums.yaml +7 -0
  2. data/.rubocop.yml +58 -0
  3. data/LICENSE.rdoc +21 -0
  4. data/README.rdoc +154 -0
  5. data/Rakefile +41 -0
  6. data/app/models/uuids/uuid.rb +53 -0
  7. data/config/locales/en.yml +10 -0
  8. data/config/locales/ru.yml +10 -0
  9. data/db/migrate/20141016112506_create_uuids_uuids.rb +9 -0
  10. data/lib/tasks/uuids_tasks.rake +41 -0
  11. data/lib/uuids/engine.rb +12 -0
  12. data/lib/uuids/version.rb +4 -0
  13. data/lib/uuids.rb +7 -0
  14. data/spec/dummy/README.rdoc +28 -0
  15. data/spec/dummy/Rakefile +6 -0
  16. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  17. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  18. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  19. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  20. data/spec/dummy/app/models/record.rb +3 -0
  21. data/spec/dummy/app/views/layouts/application.html.erb +13 -0
  22. data/spec/dummy/bin/bundle +3 -0
  23. data/spec/dummy/bin/rails +4 -0
  24. data/spec/dummy/bin/rake +4 -0
  25. data/spec/dummy/config/application.rb +29 -0
  26. data/spec/dummy/config/boot.rb +5 -0
  27. data/spec/dummy/config/database.yml +25 -0
  28. data/spec/dummy/config/environment.rb +5 -0
  29. data/spec/dummy/config/environments/development.rb +37 -0
  30. data/spec/dummy/config/environments/production.rb +78 -0
  31. data/spec/dummy/config/environments/test.rb +39 -0
  32. data/spec/dummy/config/initializers/assets.rb +8 -0
  33. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  35. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  36. data/spec/dummy/config/initializers/inflections.rb +16 -0
  37. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  38. data/spec/dummy/config/initializers/session_store.rb +3 -0
  39. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/spec/dummy/config/locales/en.yml +23 -0
  41. data/spec/dummy/config/routes.rb +4 -0
  42. data/spec/dummy/config/secrets.yml +22 -0
  43. data/spec/dummy/config.ru +4 -0
  44. data/spec/dummy/db/migrate/20141016113016_create_records.rb +8 -0
  45. data/spec/dummy/db/schema.rb +30 -0
  46. data/spec/dummy/db/test.sqlite3 +0 -0
  47. data/spec/dummy/log/development.log +0 -0
  48. data/spec/dummy/log/test.log +2152 -0
  49. data/spec/dummy/public/404.html +67 -0
  50. data/spec/dummy/public/422.html +67 -0
  51. data/spec/dummy/public/500.html +66 -0
  52. data/spec/dummy/public/favicon.ico +0 -0
  53. data/spec/dummy/spec/factories/records.rb +4 -0
  54. data/spec/factories/uuids.rb +6 -0
  55. data/spec/models/uuids/uuid_spec.rb +58 -0
  56. data/spec/spec_helper.rb +11 -0
  57. data/spec/support/initializers/coveralls.rb +4 -0
  58. data/spec/support/initializers/database_cleaner.rb +24 -0
  59. data/spec/support/initializers/factory_girl_rails.rb +5 -0
  60. data/spec/support/initializers/focus.rb +5 -0
  61. data/spec/support/initializers/garbage_collection.rb +11 -0
  62. data/spec/support/initializers/i18n.rb +1 -0
  63. data/spec/support/initializers/migrations.rb +3 -0
  64. data/spec/support/initializers/rails.rb +6 -0
  65. data/spec/support/initializers/random_order.rb +4 -0
  66. data/spec/support/initializers/rspec.rb +10 -0
  67. metadata +279 -0
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,4 @@
1
+ FactoryGirl.define do
2
+ factory :record do
3
+ end
4
+ end
@@ -0,0 +1,6 @@
1
+ FactoryGirl.define do
2
+ factory :uuid, class: Uuids::Uuid do
3
+ value { SecureRandom.uuid }
4
+ record # defined in the `dummy/spec/factories`
5
+ end
6
+ end
@@ -0,0 +1,58 @@
1
+ require "spec_helper"
2
+
3
+ module Uuids
4
+ describe Uuid do
5
+
6
+ describe "#value" do
7
+
8
+ it "is set by default" do
9
+ expect(subject.value).not_to be_blank
10
+ end
11
+
12
+ it "is a valid uuid" do
13
+ UUID_FORMAT = /[a-z\d]{8}-[a-z\d]{4}-[a-z\d]{4}-[a-z\d]{4}-[a-z\d]{12}/
14
+ expect(subject.value).to match UUID_FORMAT
15
+ end
16
+ end
17
+
18
+ describe "#value=" do
19
+
20
+ it "is private" do
21
+ expect { subject.value = SecureRandom.uuid }.to raise_error
22
+ end
23
+ end
24
+
25
+ describe "#record=" do
26
+
27
+ it "sets a #record" do
28
+ record = create :record
29
+ expect { subject.record = record }
30
+ .to change { subject.record }.to record
31
+ end
32
+ end
33
+
34
+ describe "#valid?" do
35
+
36
+ subject { create :uuid }
37
+ before { expect(subject).to be_valid }
38
+
39
+ it "fails with blank #record" do
40
+ subject.record = nil
41
+ expect(subject).not_to be_valid
42
+ end
43
+ end
44
+
45
+ describe "#destroy!" do
46
+
47
+ subject { create :uuid }
48
+
49
+ it "is forbidden" do
50
+ expect { subject.destroy! }.to raise_error
51
+ end
52
+
53
+ it "adds an error messages" do
54
+ expect { subject.destroy }.to change { subject.errors.blank? }.to false
55
+ end
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,11 @@
1
+ ENV["RAILS_ENV"] ||= "test"
2
+
3
+ spec = File.dirname(__FILE__)
4
+
5
+ # Application files
6
+ require File.join(spec, "dummy", "config", "environment")
7
+
8
+ # Support files and Rspec settings
9
+ Dir[File.join(spec, "support", "**", "*.rb")].each { |file| require file }
10
+ Dir[File.join(spec, "dummy", "spec", "factories", "*.rb")]
11
+ .each { |file| require file }
@@ -0,0 +1,4 @@
1
+ # Check test coverage
2
+ require "coveralls"
3
+
4
+ Coveralls.wear!
@@ -0,0 +1,24 @@
1
+ require "database_cleaner"
2
+ require "rspec/rails"
3
+
4
+ RSpec.configure do |config|
5
+
6
+ # stop wrapping each of test examples within a transaction
7
+ config.use_transactional_fixtures = false
8
+
9
+ config.before :suite do
10
+ DatabaseCleaner.clean_with :truncation
11
+ end
12
+
13
+ config.before :each do
14
+ DatabaseCleaner.strategy = :transaction
15
+ end
16
+
17
+ config.before :each do
18
+ DatabaseCleaner.start
19
+ end
20
+
21
+ config.after :each do
22
+ DatabaseCleaner.clean
23
+ end
24
+ end
@@ -0,0 +1,5 @@
1
+ require "factory_girl_rails"
2
+
3
+ RSpec.configure do |config|
4
+ config.include FactoryGirl::Syntax::Methods
5
+ end
@@ -0,0 +1,5 @@
1
+ # Run only tests tagged by :focus
2
+ RSpec.configure do |config|
3
+ config.filter_run focus: true
4
+ config.run_all_when_everything_filtered = true
5
+ end
@@ -0,0 +1,11 @@
1
+ # Delayg garbage collection to the end of tests
2
+ RSpec.configure do |config|
3
+
4
+ config.before(:each) do
5
+ GC.disable
6
+ end
7
+
8
+ config.after(:each) do
9
+ GC.enable
10
+ end
11
+ end
@@ -0,0 +1 @@
1
+ I18n.enforce_available_locales = false
@@ -0,0 +1,3 @@
1
+ require "active_record"
2
+
3
+ ActiveRecord::Migration.check_pending! if defined?(ActiveRecord::Migration)
@@ -0,0 +1,6 @@
1
+ require "rspec/rails"
2
+
3
+ RSpec.configure do |config|
4
+ config.infer_spec_type_from_file_location!
5
+ config.infer_base_class_for_anonymous_controllers = false
6
+ end
@@ -0,0 +1,4 @@
1
+ # Run tests in a random order
2
+ RSpec.configure do |config|
3
+ config.order = "random"
4
+ end
@@ -0,0 +1,10 @@
1
+ RSpec.configure do |config|
2
+
3
+ config.mock_with :rspec do |mocks|
4
+ mocks.yield_receiver_to_any_instance_implementation_blocks = false
5
+ end
6
+
7
+ config.expect_with :rspec do |c|
8
+ c.syntax = :expect
9
+ end
10
+ end
metadata ADDED
@@ -0,0 +1,279 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: uuids
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Andrew Kozin
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-10-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: database_cleaner
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.3'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.3'
41
+ - !ruby/object:Gem::Dependency
42
+ name: factory_girl_rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '4.4'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '4.4'
55
+ - !ruby/object:Gem::Dependency
56
+ name: inch
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.5'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.5'
69
+ - !ruby/object:Gem::Dependency
70
+ name: metric_fu
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '4.11'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '4.11'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec-rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.1'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '3.1'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '0.26'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '0.26'
111
+ - !ruby/object:Gem::Dependency
112
+ name: sqlite3
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '1.3'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '1.3'
125
+ description: AR model to store uuids assigned to various resources. It is expected
126
+ a resource can be identified by many UUIDs.
127
+ email: andrew.kozin@gmail.com
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files:
131
+ - LICENSE.rdoc
132
+ - README.rdoc
133
+ files:
134
+ - ".rubocop.yml"
135
+ - LICENSE.rdoc
136
+ - README.rdoc
137
+ - Rakefile
138
+ - app/models/uuids/uuid.rb
139
+ - config/locales/en.yml
140
+ - config/locales/ru.yml
141
+ - db/migrate/20141016112506_create_uuids_uuids.rb
142
+ - lib/tasks/uuids_tasks.rake
143
+ - lib/uuids.rb
144
+ - lib/uuids/engine.rb
145
+ - lib/uuids/version.rb
146
+ - spec/dummy/README.rdoc
147
+ - spec/dummy/Rakefile
148
+ - spec/dummy/app/assets/javascripts/application.js
149
+ - spec/dummy/app/assets/stylesheets/application.css
150
+ - spec/dummy/app/controllers/application_controller.rb
151
+ - spec/dummy/app/helpers/application_helper.rb
152
+ - spec/dummy/app/models/record.rb
153
+ - spec/dummy/app/views/layouts/application.html.erb
154
+ - spec/dummy/bin/bundle
155
+ - spec/dummy/bin/rails
156
+ - spec/dummy/bin/rake
157
+ - spec/dummy/config.ru
158
+ - spec/dummy/config/application.rb
159
+ - spec/dummy/config/boot.rb
160
+ - spec/dummy/config/database.yml
161
+ - spec/dummy/config/environment.rb
162
+ - spec/dummy/config/environments/development.rb
163
+ - spec/dummy/config/environments/production.rb
164
+ - spec/dummy/config/environments/test.rb
165
+ - spec/dummy/config/initializers/assets.rb
166
+ - spec/dummy/config/initializers/backtrace_silencers.rb
167
+ - spec/dummy/config/initializers/cookies_serializer.rb
168
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
169
+ - spec/dummy/config/initializers/inflections.rb
170
+ - spec/dummy/config/initializers/mime_types.rb
171
+ - spec/dummy/config/initializers/session_store.rb
172
+ - spec/dummy/config/initializers/wrap_parameters.rb
173
+ - spec/dummy/config/locales/en.yml
174
+ - spec/dummy/config/routes.rb
175
+ - spec/dummy/config/secrets.yml
176
+ - spec/dummy/db/migrate/20141016113016_create_records.rb
177
+ - spec/dummy/db/schema.rb
178
+ - spec/dummy/db/test.sqlite3
179
+ - spec/dummy/log/development.log
180
+ - spec/dummy/log/test.log
181
+ - spec/dummy/public/404.html
182
+ - spec/dummy/public/422.html
183
+ - spec/dummy/public/500.html
184
+ - spec/dummy/public/favicon.ico
185
+ - spec/dummy/spec/factories/records.rb
186
+ - spec/factories/uuids.rb
187
+ - spec/models/uuids/uuid_spec.rb
188
+ - spec/spec_helper.rb
189
+ - spec/support/initializers/coveralls.rb
190
+ - spec/support/initializers/database_cleaner.rb
191
+ - spec/support/initializers/factory_girl_rails.rb
192
+ - spec/support/initializers/focus.rb
193
+ - spec/support/initializers/garbage_collection.rb
194
+ - spec/support/initializers/i18n.rb
195
+ - spec/support/initializers/migrations.rb
196
+ - spec/support/initializers/rails.rb
197
+ - spec/support/initializers/random_order.rb
198
+ - spec/support/initializers/rspec.rb
199
+ homepage: https://github.com/nepalez/uuids
200
+ licenses:
201
+ - MIT
202
+ metadata: {}
203
+ post_install_message:
204
+ rdoc_options: []
205
+ require_paths:
206
+ - lib
207
+ required_ruby_version: !ruby/object:Gem::Requirement
208
+ requirements:
209
+ - - "~>"
210
+ - !ruby/object:Gem::Version
211
+ version: '2.1'
212
+ required_rubygems_version: !ruby/object:Gem::Requirement
213
+ requirements:
214
+ - - ">="
215
+ - !ruby/object:Gem::Version
216
+ version: '0'
217
+ requirements: []
218
+ rubyforge_project:
219
+ rubygems_version: 2.2.2
220
+ signing_key:
221
+ specification_version: 4
222
+ summary: UUIDs AR model.
223
+ test_files:
224
+ - spec/spec_helper.rb
225
+ - spec/models/uuids/uuid_spec.rb
226
+ - spec/dummy/public/500.html
227
+ - spec/dummy/public/422.html
228
+ - spec/dummy/public/404.html
229
+ - spec/dummy/public/favicon.ico
230
+ - spec/dummy/config/secrets.yml
231
+ - spec/dummy/config/locales/en.yml
232
+ - spec/dummy/config/environments/test.rb
233
+ - spec/dummy/config/environments/development.rb
234
+ - spec/dummy/config/environments/production.rb
235
+ - spec/dummy/config/environment.rb
236
+ - spec/dummy/config/boot.rb
237
+ - spec/dummy/config/database.yml
238
+ - spec/dummy/config/routes.rb
239
+ - spec/dummy/config/application.rb
240
+ - spec/dummy/config/initializers/mime_types.rb
241
+ - spec/dummy/config/initializers/inflections.rb
242
+ - spec/dummy/config/initializers/session_store.rb
243
+ - spec/dummy/config/initializers/backtrace_silencers.rb
244
+ - spec/dummy/config/initializers/wrap_parameters.rb
245
+ - spec/dummy/config/initializers/cookies_serializer.rb
246
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
247
+ - spec/dummy/config/initializers/assets.rb
248
+ - spec/dummy/db/migrate/20141016113016_create_records.rb
249
+ - spec/dummy/db/test.sqlite3
250
+ - spec/dummy/db/schema.rb
251
+ - spec/dummy/app/views/layouts/application.html.erb
252
+ - spec/dummy/app/models/record.rb
253
+ - spec/dummy/app/assets/javascripts/application.js
254
+ - spec/dummy/app/assets/stylesheets/application.css
255
+ - spec/dummy/app/helpers/application_helper.rb
256
+ - spec/dummy/app/controllers/application_controller.rb
257
+ - spec/dummy/Rakefile
258
+ - spec/dummy/spec/factories/records.rb
259
+ - spec/dummy/README.rdoc
260
+ - spec/dummy/log/development.log
261
+ - spec/dummy/log/test.log
262
+ - spec/dummy/config.ru
263
+ - spec/dummy/bin/rake
264
+ - spec/dummy/bin/rails
265
+ - spec/dummy/bin/bundle
266
+ - spec/factories/uuids.rb
267
+ - spec/support/initializers/garbage_collection.rb
268
+ - spec/support/initializers/i18n.rb
269
+ - spec/support/initializers/focus.rb
270
+ - spec/support/initializers/factory_girl_rails.rb
271
+ - spec/support/initializers/coveralls.rb
272
+ - spec/support/initializers/database_cleaner.rb
273
+ - spec/support/initializers/migrations.rb
274
+ - spec/support/initializers/random_order.rb
275
+ - spec/support/initializers/rspec.rb
276
+ - spec/support/initializers/rails.rb
277
+ - Rakefile
278
+ - ".rubocop.yml"
279
+ has_rdoc: