ardm 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (179) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +35 -0
  3. data/Gemfile +13 -0
  4. data/LICENSE +21 -0
  5. data/README.md +70 -0
  6. data/Rakefile +4 -0
  7. data/ardm.gemspec +29 -0
  8. data/db/.gitignore +1 -0
  9. data/lib/ardm/active_record/associations.rb +80 -0
  10. data/lib/ardm/active_record/base.rb +49 -0
  11. data/lib/ardm/active_record/dirty.rb +25 -0
  12. data/lib/ardm/active_record/hooks.rb +31 -0
  13. data/lib/ardm/active_record/inheritance.rb +37 -0
  14. data/lib/ardm/active_record/is/state_machine.rb +21 -0
  15. data/lib/ardm/active_record/is.rb +22 -0
  16. data/lib/ardm/active_record/not_found.rb +7 -0
  17. data/lib/ardm/active_record/predicate_builder/array_handler.rb +31 -0
  18. data/lib/ardm/active_record/predicate_builder/rails3.rb +147 -0
  19. data/lib/ardm/active_record/predicate_builder/rails4.rb +139 -0
  20. data/lib/ardm/active_record/predicate_builder/relation_handler.rb +15 -0
  21. data/lib/ardm/active_record/predicate_builder.rb +19 -0
  22. data/lib/ardm/active_record/property.rb +357 -0
  23. data/lib/ardm/active_record/query.rb +108 -0
  24. data/lib/ardm/active_record/record.rb +70 -0
  25. data/lib/ardm/active_record/relation.rb +83 -0
  26. data/lib/ardm/active_record/repository.rb +38 -0
  27. data/lib/ardm/active_record/serialization.rb +164 -0
  28. data/lib/ardm/active_record/storage_names.rb +28 -0
  29. data/lib/ardm/active_record/validations.rb +111 -0
  30. data/lib/ardm/active_record.rb +43 -0
  31. data/lib/ardm/data_mapper/not_found.rb +5 -0
  32. data/lib/ardm/data_mapper/record.rb +41 -0
  33. data/lib/ardm/data_mapper.rb +5 -0
  34. data/lib/ardm/env.rb +5 -0
  35. data/lib/ardm/property/api_key.rb +30 -0
  36. data/lib/ardm/property/bcrypt_hash.rb +31 -0
  37. data/lib/ardm/property/binary.rb +23 -0
  38. data/lib/ardm/property/boolean.rb +29 -0
  39. data/lib/ardm/property/class.rb +19 -0
  40. data/lib/ardm/property/comma_separated_list.rb +28 -0
  41. data/lib/ardm/property/csv.rb +35 -0
  42. data/lib/ardm/property/date.rb +12 -0
  43. data/lib/ardm/property/datetime.rb +12 -0
  44. data/lib/ardm/property/decimal.rb +38 -0
  45. data/lib/ardm/property/discriminator.rb +65 -0
  46. data/lib/ardm/property/enum.rb +51 -0
  47. data/lib/ardm/property/epoch_time.rb +38 -0
  48. data/lib/ardm/property/file_path.rb +25 -0
  49. data/lib/ardm/property/flag.rb +65 -0
  50. data/lib/ardm/property/float.rb +18 -0
  51. data/lib/ardm/property/integer.rb +24 -0
  52. data/lib/ardm/property/invalid_value_error.rb +22 -0
  53. data/lib/ardm/property/ip_address.rb +35 -0
  54. data/lib/ardm/property/json.rb +49 -0
  55. data/lib/ardm/property/lookup.rb +29 -0
  56. data/lib/ardm/property/numeric.rb +40 -0
  57. data/lib/ardm/property/object.rb +36 -0
  58. data/lib/ardm/property/paranoid_boolean.rb +18 -0
  59. data/lib/ardm/property/paranoid_datetime.rb +17 -0
  60. data/lib/ardm/property/regexp.rb +22 -0
  61. data/lib/ardm/property/serial.rb +16 -0
  62. data/lib/ardm/property/slug.rb +29 -0
  63. data/lib/ardm/property/string.rb +40 -0
  64. data/lib/ardm/property/support/dirty_minder.rb +169 -0
  65. data/lib/ardm/property/support/flags.rb +41 -0
  66. data/lib/ardm/property/support/paranoid_base.rb +78 -0
  67. data/lib/ardm/property/text.rb +11 -0
  68. data/lib/ardm/property/time.rb +12 -0
  69. data/lib/ardm/property/uri.rb +27 -0
  70. data/lib/ardm/property/uuid.rb +65 -0
  71. data/lib/ardm/property/validation.rb +208 -0
  72. data/lib/ardm/property/yaml.rb +38 -0
  73. data/lib/ardm/property.rb +891 -0
  74. data/lib/ardm/property_set.rb +152 -0
  75. data/lib/ardm/query/expression.rb +85 -0
  76. data/lib/ardm/query/ext/symbol.rb +37 -0
  77. data/lib/ardm/query/operator.rb +64 -0
  78. data/lib/ardm/record.rb +1 -0
  79. data/lib/ardm/support/assertions.rb +8 -0
  80. data/lib/ardm/support/deprecate.rb +12 -0
  81. data/lib/ardm/support/descendant_set.rb +89 -0
  82. data/lib/ardm/support/equalizer.rb +48 -0
  83. data/lib/ardm/support/ext/array.rb +22 -0
  84. data/lib/ardm/support/ext/blank.rb +25 -0
  85. data/lib/ardm/support/ext/hash.rb +67 -0
  86. data/lib/ardm/support/ext/module.rb +47 -0
  87. data/lib/ardm/support/ext/object.rb +57 -0
  88. data/lib/ardm/support/ext/string.rb +24 -0
  89. data/lib/ardm/support/ext/try_dup.rb +12 -0
  90. data/lib/ardm/support/hook.rb +405 -0
  91. data/lib/ardm/support/lazy_array.rb +451 -0
  92. data/lib/ardm/support/local_object_space.rb +13 -0
  93. data/lib/ardm/support/logger.rb +201 -0
  94. data/lib/ardm/support/mash.rb +176 -0
  95. data/lib/ardm/support/naming_conventions.rb +90 -0
  96. data/lib/ardm/support/ordered_set.rb +380 -0
  97. data/lib/ardm/support/subject.rb +33 -0
  98. data/lib/ardm/support/subject_set.rb +250 -0
  99. data/lib/ardm/version.rb +3 -0
  100. data/lib/ardm.rb +56 -0
  101. data/spec/fixtures/api_user.rb +11 -0
  102. data/spec/fixtures/article.rb +22 -0
  103. data/spec/fixtures/bookmark.rb +14 -0
  104. data/spec/fixtures/invention.rb +5 -0
  105. data/spec/fixtures/network_node.rb +23 -0
  106. data/spec/fixtures/person.rb +17 -0
  107. data/spec/fixtures/software_package.rb +22 -0
  108. data/spec/fixtures/ticket.rb +12 -0
  109. data/spec/fixtures/tshirt.rb +15 -0
  110. data/spec/integration/api_key_spec.rb +25 -0
  111. data/spec/integration/bcrypt_hash_spec.rb +45 -0
  112. data/spec/integration/comma_separated_list_spec.rb +85 -0
  113. data/spec/integration/dirty_minder_spec.rb +197 -0
  114. data/spec/integration/enum_spec.rb +79 -0
  115. data/spec/integration/epoch_time_spec.rb +59 -0
  116. data/spec/integration/file_path_spec.rb +158 -0
  117. data/spec/integration/flag_spec.rb +72 -0
  118. data/spec/integration/ip_address_spec.rb +151 -0
  119. data/spec/integration/json_spec.rb +70 -0
  120. data/spec/integration/slug_spec.rb +65 -0
  121. data/spec/integration/uri_spec.rb +136 -0
  122. data/spec/integration/uuid_spec.rb +102 -0
  123. data/spec/integration/yaml_spec.rb +85 -0
  124. data/spec/public/property/binary_spec.rb +41 -0
  125. data/spec/public/property/boolean_spec.rb +30 -0
  126. data/spec/public/property/class_spec.rb +28 -0
  127. data/spec/public/property/date_spec.rb +22 -0
  128. data/spec/public/property/date_time_spec.rb +22 -0
  129. data/spec/public/property/decimal_spec.rb +23 -0
  130. data/spec/public/property/discriminator_spec.rb +133 -0
  131. data/spec/public/property/float_spec.rb +22 -0
  132. data/spec/public/property/integer_spec.rb +22 -0
  133. data/spec/public/property/object_spec.rb +103 -0
  134. data/spec/public/property/serial_spec.rb +22 -0
  135. data/spec/public/property/string_spec.rb +22 -0
  136. data/spec/public/property/text_spec.rb +23 -0
  137. data/spec/public/property/time_spec.rb +22 -0
  138. data/spec/public/property_spec.rb +316 -0
  139. data/spec/rcov.opts +6 -0
  140. data/spec/schema.rb +86 -0
  141. data/spec/semipublic/property/binary_spec.rb +14 -0
  142. data/spec/semipublic/property/boolean_spec.rb +48 -0
  143. data/spec/semipublic/property/class_spec.rb +36 -0
  144. data/spec/semipublic/property/date_spec.rb +44 -0
  145. data/spec/semipublic/property/date_time_spec.rb +47 -0
  146. data/spec/semipublic/property/decimal_spec.rb +83 -0
  147. data/spec/semipublic/property/discriminator_spec.rb +22 -0
  148. data/spec/semipublic/property/float_spec.rb +83 -0
  149. data/spec/semipublic/property/integer_spec.rb +83 -0
  150. data/spec/semipublic/property/lookup_spec.rb +27 -0
  151. data/spec/semipublic/property/serial_spec.rb +14 -0
  152. data/spec/semipublic/property/string_spec.rb +14 -0
  153. data/spec/semipublic/property/text_spec.rb +30 -0
  154. data/spec/semipublic/property/time_spec.rb +49 -0
  155. data/spec/semipublic/property_spec.rb +51 -0
  156. data/spec/shared/flags_shared_spec.rb +36 -0
  157. data/spec/shared/identity_function_group.rb +5 -0
  158. data/spec/shared/public_property_spec.rb +229 -0
  159. data/spec/shared/semipublic_property_spec.rb +159 -0
  160. data/spec/spec.opts +4 -0
  161. data/spec/spec_helper.rb +58 -0
  162. data/spec/unit/bcrypt_hash_spec.rb +154 -0
  163. data/spec/unit/csv_spec.rb +139 -0
  164. data/spec/unit/dirty_minder_spec.rb +64 -0
  165. data/spec/unit/enum_spec.rb +125 -0
  166. data/spec/unit/epoch_time_spec.rb +72 -0
  167. data/spec/unit/file_path_spec.rb +75 -0
  168. data/spec/unit/flag_spec.rb +114 -0
  169. data/spec/unit/ip_address_spec.rb +109 -0
  170. data/spec/unit/json_spec.rb +127 -0
  171. data/spec/unit/paranoid_boolean_spec.rb +142 -0
  172. data/spec/unit/paranoid_datetime_spec.rb +149 -0
  173. data/spec/unit/regexp_spec.rb +62 -0
  174. data/spec/unit/uri_spec.rb +64 -0
  175. data/spec/unit/yaml_spec.rb +111 -0
  176. data/tasks/spec.rake +40 -0
  177. data/tasks/yard.rake +9 -0
  178. data/tasks/yardstick.rake +19 -0
  179. metadata +350 -0
metadata ADDED
@@ -0,0 +1,350 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ardm
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Martin Emde
8
+ - Dan Kubb
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-11-11 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: activesupport
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ! '>='
19
+ - !ruby/object:Gem::Version
20
+ version: '3.2'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ! '>='
26
+ - !ruby/object:Gem::Version
27
+ version: '3.2'
28
+ - !ruby/object:Gem::Dependency
29
+ name: bcrypt-ruby
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ~>
33
+ - !ruby/object:Gem::Version
34
+ version: 3.0.0
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ~>
40
+ - !ruby/object:Gem::Version
41
+ version: 3.0.0
42
+ - !ruby/object:Gem::Dependency
43
+ name: fastercsv
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ~>
47
+ - !ruby/object:Gem::Version
48
+ version: 1.5.4
49
+ type: :runtime
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ~>
54
+ - !ruby/object:Gem::Version
55
+ version: 1.5.4
56
+ - !ruby/object:Gem::Dependency
57
+ name: multi_json
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ! '>'
61
+ - !ruby/object:Gem::Version
62
+ version: 1.3.2
63
+ type: :runtime
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ! '>'
68
+ - !ruby/object:Gem::Version
69
+ version: 1.3.2
70
+ - !ruby/object:Gem::Dependency
71
+ name: stringex
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ~>
75
+ - !ruby/object:Gem::Version
76
+ version: 1.3.3
77
+ type: :runtime
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ~>
82
+ - !ruby/object:Gem::Version
83
+ version: 1.3.3
84
+ - !ruby/object:Gem::Dependency
85
+ name: uuidtools
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ~>
89
+ - !ruby/object:Gem::Version
90
+ version: 2.1.2
91
+ type: :runtime
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ~>
96
+ - !ruby/object:Gem::Version
97
+ version: 2.1.2
98
+ - !ruby/object:Gem::Dependency
99
+ name: coercible
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ! '>='
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ type: :runtime
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ! '>='
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
112
+ - !ruby/object:Gem::Dependency
113
+ name: rake
114
+ requirement: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ~>
117
+ - !ruby/object:Gem::Version
118
+ version: 0.9.2
119
+ type: :development
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: 0.9.2
126
+ - !ruby/object:Gem::Dependency
127
+ name: rspec
128
+ requirement: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ~>
131
+ - !ruby/object:Gem::Version
132
+ version: '2.0'
133
+ type: :development
134
+ prerelease: false
135
+ version_requirements: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ~>
138
+ - !ruby/object:Gem::Version
139
+ version: '2.0'
140
+ description: ActiveRecord plugin to provide a smooth migration from DataMapper to
141
+ ActiveRecord
142
+ email:
143
+ - me@martinemde.com
144
+ executables: []
145
+ extensions: []
146
+ extra_rdoc_files:
147
+ - LICENSE
148
+ - README.md
149
+ files:
150
+ - .gitignore
151
+ - Gemfile
152
+ - LICENSE
153
+ - README.md
154
+ - Rakefile
155
+ - ardm.gemspec
156
+ - db/.gitignore
157
+ - lib/ardm.rb
158
+ - lib/ardm/active_record.rb
159
+ - lib/ardm/active_record/associations.rb
160
+ - lib/ardm/active_record/base.rb
161
+ - lib/ardm/active_record/dirty.rb
162
+ - lib/ardm/active_record/hooks.rb
163
+ - lib/ardm/active_record/inheritance.rb
164
+ - lib/ardm/active_record/is.rb
165
+ - lib/ardm/active_record/is/state_machine.rb
166
+ - lib/ardm/active_record/not_found.rb
167
+ - lib/ardm/active_record/predicate_builder.rb
168
+ - lib/ardm/active_record/predicate_builder/array_handler.rb
169
+ - lib/ardm/active_record/predicate_builder/rails3.rb
170
+ - lib/ardm/active_record/predicate_builder/rails4.rb
171
+ - lib/ardm/active_record/predicate_builder/relation_handler.rb
172
+ - lib/ardm/active_record/property.rb
173
+ - lib/ardm/active_record/query.rb
174
+ - lib/ardm/active_record/record.rb
175
+ - lib/ardm/active_record/relation.rb
176
+ - lib/ardm/active_record/repository.rb
177
+ - lib/ardm/active_record/serialization.rb
178
+ - lib/ardm/active_record/storage_names.rb
179
+ - lib/ardm/active_record/validations.rb
180
+ - lib/ardm/data_mapper.rb
181
+ - lib/ardm/data_mapper/not_found.rb
182
+ - lib/ardm/data_mapper/record.rb
183
+ - lib/ardm/env.rb
184
+ - lib/ardm/property.rb
185
+ - lib/ardm/property/api_key.rb
186
+ - lib/ardm/property/bcrypt_hash.rb
187
+ - lib/ardm/property/binary.rb
188
+ - lib/ardm/property/boolean.rb
189
+ - lib/ardm/property/class.rb
190
+ - lib/ardm/property/comma_separated_list.rb
191
+ - lib/ardm/property/csv.rb
192
+ - lib/ardm/property/date.rb
193
+ - lib/ardm/property/datetime.rb
194
+ - lib/ardm/property/decimal.rb
195
+ - lib/ardm/property/discriminator.rb
196
+ - lib/ardm/property/enum.rb
197
+ - lib/ardm/property/epoch_time.rb
198
+ - lib/ardm/property/file_path.rb
199
+ - lib/ardm/property/flag.rb
200
+ - lib/ardm/property/float.rb
201
+ - lib/ardm/property/integer.rb
202
+ - lib/ardm/property/invalid_value_error.rb
203
+ - lib/ardm/property/ip_address.rb
204
+ - lib/ardm/property/json.rb
205
+ - lib/ardm/property/lookup.rb
206
+ - lib/ardm/property/numeric.rb
207
+ - lib/ardm/property/object.rb
208
+ - lib/ardm/property/paranoid_boolean.rb
209
+ - lib/ardm/property/paranoid_datetime.rb
210
+ - lib/ardm/property/regexp.rb
211
+ - lib/ardm/property/serial.rb
212
+ - lib/ardm/property/slug.rb
213
+ - lib/ardm/property/string.rb
214
+ - lib/ardm/property/support/dirty_minder.rb
215
+ - lib/ardm/property/support/flags.rb
216
+ - lib/ardm/property/support/paranoid_base.rb
217
+ - lib/ardm/property/text.rb
218
+ - lib/ardm/property/time.rb
219
+ - lib/ardm/property/uri.rb
220
+ - lib/ardm/property/uuid.rb
221
+ - lib/ardm/property/validation.rb
222
+ - lib/ardm/property/yaml.rb
223
+ - lib/ardm/property_set.rb
224
+ - lib/ardm/query/expression.rb
225
+ - lib/ardm/query/ext/symbol.rb
226
+ - lib/ardm/query/operator.rb
227
+ - lib/ardm/record.rb
228
+ - lib/ardm/support/assertions.rb
229
+ - lib/ardm/support/deprecate.rb
230
+ - lib/ardm/support/descendant_set.rb
231
+ - lib/ardm/support/equalizer.rb
232
+ - lib/ardm/support/ext/array.rb
233
+ - lib/ardm/support/ext/blank.rb
234
+ - lib/ardm/support/ext/hash.rb
235
+ - lib/ardm/support/ext/module.rb
236
+ - lib/ardm/support/ext/object.rb
237
+ - lib/ardm/support/ext/string.rb
238
+ - lib/ardm/support/ext/try_dup.rb
239
+ - lib/ardm/support/hook.rb
240
+ - lib/ardm/support/lazy_array.rb
241
+ - lib/ardm/support/local_object_space.rb
242
+ - lib/ardm/support/logger.rb
243
+ - lib/ardm/support/mash.rb
244
+ - lib/ardm/support/naming_conventions.rb
245
+ - lib/ardm/support/ordered_set.rb
246
+ - lib/ardm/support/subject.rb
247
+ - lib/ardm/support/subject_set.rb
248
+ - lib/ardm/version.rb
249
+ - spec/fixtures/api_user.rb
250
+ - spec/fixtures/article.rb
251
+ - spec/fixtures/bookmark.rb
252
+ - spec/fixtures/invention.rb
253
+ - spec/fixtures/network_node.rb
254
+ - spec/fixtures/person.rb
255
+ - spec/fixtures/software_package.rb
256
+ - spec/fixtures/ticket.rb
257
+ - spec/fixtures/tshirt.rb
258
+ - spec/integration/api_key_spec.rb
259
+ - spec/integration/bcrypt_hash_spec.rb
260
+ - spec/integration/comma_separated_list_spec.rb
261
+ - spec/integration/dirty_minder_spec.rb
262
+ - spec/integration/enum_spec.rb
263
+ - spec/integration/epoch_time_spec.rb
264
+ - spec/integration/file_path_spec.rb
265
+ - spec/integration/flag_spec.rb
266
+ - spec/integration/ip_address_spec.rb
267
+ - spec/integration/json_spec.rb
268
+ - spec/integration/slug_spec.rb
269
+ - spec/integration/uri_spec.rb
270
+ - spec/integration/uuid_spec.rb
271
+ - spec/integration/yaml_spec.rb
272
+ - spec/public/property/binary_spec.rb
273
+ - spec/public/property/boolean_spec.rb
274
+ - spec/public/property/class_spec.rb
275
+ - spec/public/property/date_spec.rb
276
+ - spec/public/property/date_time_spec.rb
277
+ - spec/public/property/decimal_spec.rb
278
+ - spec/public/property/discriminator_spec.rb
279
+ - spec/public/property/float_spec.rb
280
+ - spec/public/property/integer_spec.rb
281
+ - spec/public/property/object_spec.rb
282
+ - spec/public/property/serial_spec.rb
283
+ - spec/public/property/string_spec.rb
284
+ - spec/public/property/text_spec.rb
285
+ - spec/public/property/time_spec.rb
286
+ - spec/public/property_spec.rb
287
+ - spec/rcov.opts
288
+ - spec/schema.rb
289
+ - spec/semipublic/property/binary_spec.rb
290
+ - spec/semipublic/property/boolean_spec.rb
291
+ - spec/semipublic/property/class_spec.rb
292
+ - spec/semipublic/property/date_spec.rb
293
+ - spec/semipublic/property/date_time_spec.rb
294
+ - spec/semipublic/property/decimal_spec.rb
295
+ - spec/semipublic/property/discriminator_spec.rb
296
+ - spec/semipublic/property/float_spec.rb
297
+ - spec/semipublic/property/integer_spec.rb
298
+ - spec/semipublic/property/lookup_spec.rb
299
+ - spec/semipublic/property/serial_spec.rb
300
+ - spec/semipublic/property/string_spec.rb
301
+ - spec/semipublic/property/text_spec.rb
302
+ - spec/semipublic/property/time_spec.rb
303
+ - spec/semipublic/property_spec.rb
304
+ - spec/shared/flags_shared_spec.rb
305
+ - spec/shared/identity_function_group.rb
306
+ - spec/shared/public_property_spec.rb
307
+ - spec/shared/semipublic_property_spec.rb
308
+ - spec/spec.opts
309
+ - spec/spec_helper.rb
310
+ - spec/unit/bcrypt_hash_spec.rb
311
+ - spec/unit/csv_spec.rb
312
+ - spec/unit/dirty_minder_spec.rb
313
+ - spec/unit/enum_spec.rb
314
+ - spec/unit/epoch_time_spec.rb
315
+ - spec/unit/file_path_spec.rb
316
+ - spec/unit/flag_spec.rb
317
+ - spec/unit/ip_address_spec.rb
318
+ - spec/unit/json_spec.rb
319
+ - spec/unit/paranoid_boolean_spec.rb
320
+ - spec/unit/paranoid_datetime_spec.rb
321
+ - spec/unit/regexp_spec.rb
322
+ - spec/unit/uri_spec.rb
323
+ - spec/unit/yaml_spec.rb
324
+ - tasks/spec.rake
325
+ - tasks/yard.rake
326
+ - tasks/yardstick.rake
327
+ homepage: http://github.com/engineyard/ardm
328
+ licenses: []
329
+ metadata: {}
330
+ post_install_message:
331
+ rdoc_options: []
332
+ require_paths:
333
+ - lib
334
+ required_ruby_version: !ruby/object:Gem::Requirement
335
+ requirements:
336
+ - - ! '>='
337
+ - !ruby/object:Gem::Version
338
+ version: '0'
339
+ required_rubygems_version: !ruby/object:Gem::Requirement
340
+ requirements:
341
+ - - ! '>='
342
+ - !ruby/object:Gem::Version
343
+ version: '0'
344
+ requirements: []
345
+ rubyforge_project:
346
+ rubygems_version: 2.1.10
347
+ signing_key:
348
+ specification_version: 4
349
+ summary: ActiveRecord plugin to provide a smooth migration from DataMapper to ActiveRecord
350
+ test_files: []