deep_cloneable 1.4.0 → 3.2.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2749ea92fe72a12b752f018602733db2b323419cd2888b7fda796953b15aaf2b
4
+ data.tar.gz: adb2ecc923a0d25ee51681577fc93b7ed11b6c294e84c38fddc99733ff48208c
5
+ SHA512:
6
+ metadata.gz: fad4e3914d636d48f3230869229a28a111fdab97d66469fb539fe34bd248f3b278559346a4517c3c5f43fa2664ea040763f6b5d442a7dd1be4e7e1db9a3a8017
7
+ data.tar.gz: 5b6a8a672b640178389d38e1fb13b8110f40ab9e9a2cffc0637f948323ea640e0f1508f672410538809ecc353cd2e90976a06ba9087ad25e2d3b3405a5c7a2e6
data/Appraisals ADDED
@@ -0,0 +1,57 @@
1
+ # frozen_string_literal: true
2
+
3
+ appraise '3.2' do
4
+ gem 'activerecord', '~> 3.2.0'
5
+ gem 'i18n', '~> 0.6.5'
6
+ gem 'sqlite3', '~> 1.3.13'
7
+ end
8
+
9
+ appraise '4.0' do
10
+ gem 'activerecord', '~> 4.0.0'
11
+ gem 'i18n', '~> 0.6.5'
12
+ gem 'sqlite3', '~> 1.3.13'
13
+ end
14
+
15
+ appraise '4.1' do
16
+ gem 'activerecord', '~> 4.1.0'
17
+ gem 'i18n', '~> 0.6.9'
18
+ gem 'sqlite3', '~> 1.3.13'
19
+ end
20
+
21
+ appraise '4.2' do
22
+ gem 'activerecord', '~> 4.2.3'
23
+ gem 'i18n', '~> 0.7.0'
24
+ gem 'sqlite3', '~> 1.3.13'
25
+ end
26
+
27
+ appraise '5.0' do
28
+ gem 'activerecord', '~> 5.0.0'
29
+ gem 'i18n', '~> 0.7.0'
30
+ gem 'sqlite3', '~> 1.3.13'
31
+ end
32
+
33
+ appraise '5.1' do
34
+ gem 'activerecord', '~> 5.1.0'
35
+ gem 'i18n', '~> 0.7.0'
36
+ gem 'sqlite3', '~> 1.3.13'
37
+ end
38
+
39
+ appraise '5.2' do
40
+ gem 'activerecord', '~> 5.2.0'
41
+ gem 'i18n', '~> 0.7.0'
42
+ gem 'sqlite3', '~> 1.3.13'
43
+ end
44
+
45
+ appraise '6.0' do
46
+ gem 'activerecord', '~> 6.0.0'
47
+ gem 'sqlite3', '~> 1.4.1'
48
+ end
49
+
50
+ appraise '7.0' do
51
+ gem 'activerecord', '~> 7.0.0'
52
+ gem 'sqlite3', '~> 1.4.1'
53
+ end
54
+
55
+ appraise '8.0' do
56
+ gem 'activerecord', '~> 8.0.0'
57
+ end
data/CHANGELOG.md ADDED
@@ -0,0 +1,350 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6
+ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [3.2.1] - 2024-11-20
11
+
12
+ ### Added
13
+
14
+ - Added Ruby 3.3.5 support
15
+ - Added Rails 8.0 support
16
+
17
+ ## [3.2.0] - 2021-12-28
18
+
19
+ ### Added
20
+
21
+ - Added GitHub Actions integration & badge
22
+ - Added Ruby 2.7.5 support
23
+ - Added Rails 7.0 support
24
+
25
+ ### Removed
26
+
27
+ - Removed Travis-ci integration
28
+ - Remove EOL rubies from CI (ruby 1.9-2.2)
29
+
30
+ ## [3.1.0] - 2021-02-17
31
+
32
+ ### Added
33
+
34
+ - Added a `preprocessor` option
35
+ - Added a `postprocessor` option
36
+
37
+ ### Fixed
38
+
39
+ - Ensure the initial options hash is never modified
40
+ - When using conditions in combination with array includes, ensure nested includes are not accidentally deleted
41
+
42
+ ### Removed
43
+
44
+ - Removed jeweler as a gem dependency
45
+
46
+ ## [3.0.0] - 2019-08-18
47
+
48
+ ### Added
49
+
50
+ - Support for Ruby 2.6.3
51
+ - Support for Ruby 2.5.5
52
+ - Support for Rails 6.0
53
+
54
+ ### Changed
55
+
56
+ - When using conditions, return `nil` instead of `false` as return value when a condition fails
57
+ - Refactored gem structure and include in AR using lazy load hooks
58
+ - Skip validations on save by using module `DeepCloneable::SkipValidations` instead of a code patch
59
+ - Namespace of `ActiveRecord::Base::DeepCloneable::AssociationNotFoundException` changed to `DeepCloneable::AssociationNotFoundException`
60
+ - Process optional block after all other processing has been finished
61
+
62
+ ### Fixed
63
+
64
+ - Add the `validate` option to the list of passed dup options to ensure validations are never run on save
65
+
66
+ ### Removed
67
+
68
+ - Official support for ruby 1.8.7, as it is not supported by Travis CI anymore
69
+ - Official support for ruby 1.9.2, as it is not supported by Travis CI anymore
70
+
71
+ ## [2.4.0] - 2019-01-10
72
+
73
+ ### Added
74
+
75
+ - Support `has_one` and `has_one - through`
76
+
77
+ ### Changed
78
+
79
+ - Lint code via Rubocop
80
+ - Refactor code to improve readability
81
+ - Use HTTPS in the gemspec website URL
82
+
83
+ ## [2.3.2] - 2018-04-11
84
+
85
+ ### Added
86
+
87
+ - Support for Ruby 2.4 and 2.5
88
+ - Support for Rails 5.1 and 5.2
89
+ - CHANGELOG.md
90
+
91
+ ## [2.3.1] - 2017-10-03
92
+
93
+ ### Added
94
+
95
+ - Documentation on when the optional block is invoked, which is before attributes are excluded
96
+
97
+ ### Fixed
98
+
99
+ - Conditional includes for nested associations
100
+
101
+ ## [2.3.0] - 2017-06-14
102
+
103
+ ### Added
104
+
105
+ - Support for skipping missing associations
106
+
107
+ ### Fixed
108
+
109
+ - Multikey hashes in include arrays
110
+
111
+ ## [2.2.2] - 2016-10-10
112
+
113
+ ### Added
114
+
115
+ - Documentation on cloning associated Carrierwave files
116
+
117
+ ### Changed
118
+
119
+ - Use `inverse_of` when defined for finding the reverse association
120
+ - Cache bundler in Travis
121
+ - Use index operator for setting column defaults
122
+ - Explicitly require activerecord to resolve a sidekiq issue
123
+ - Bump rails 5.0 appraisal
124
+
125
+ ## [2.2.1] - 2016-05-27
126
+
127
+ ### Fixed
128
+
129
+ - Properly set column defaults for attributes
130
+ - Rails 5.0 compatibility
131
+
132
+ ## [2.2.0] - 2016-01-11
133
+
134
+ ### Added
135
+
136
+ - Support for conditional cloning when using array inclusions
137
+
138
+ ### Changed
139
+
140
+ - Bump rails 4.2 appraisal to 4.2.3
141
+
142
+ ## [2.1.0] - 2015-03-10
143
+
144
+ ### Added
145
+
146
+ - Support for conditional cloning
147
+
148
+ ### Changed
149
+
150
+ - Check the dictionary before cloning has_many through or habtm associations
151
+ - Refactor methods to refer to `dup` instead of `clone`
152
+
153
+ ## [2.0.2] - 2014-12-17
154
+
155
+ ### Fixed
156
+
157
+ - Broken activerecord dependency in gemspec
158
+
159
+ ## [2.0.1] - 2014-12-17
160
+
161
+ ### Fixed
162
+
163
+ - Rails 4.2.0.rc3 compatibility
164
+
165
+ ## [2.0.0] - 2014-06-26
166
+
167
+ ### Removed
168
+
169
+ - Override of `dup`
170
+ - References to `dup`
171
+
172
+ ### Fixed
173
+
174
+ - Open-ended dependency warning
175
+
176
+ ## [1.7.0] - 2014-06-25
177
+
178
+ ### Deprecated
179
+
180
+ - Deprecated `dup` in favor of `deep_clone`
181
+
182
+ ## [1.6.1] - 2014-04-16
183
+
184
+ ### Changed
185
+
186
+ - Switched test suite to minitest
187
+ - Update travis.yml with rails 4.1
188
+
189
+ ### Fixed
190
+
191
+ - Rails 4.1 compatibility
192
+
193
+ ## [1.6.0] - 2013-11-02
194
+
195
+ ### Added
196
+
197
+ - `:only` option for whitelisting attributes
198
+ - MIT license
199
+
200
+ ## [1.5.5] - 2013-08-28
201
+
202
+ ### Fixed
203
+
204
+ - Fix activerecord gem dependency
205
+
206
+ ## [1.5.4] - 2013-08-12
207
+
208
+ ### Removed
209
+
210
+ - Rails 3.0 support, as it was broken anyway
211
+
212
+ ### Changed
213
+
214
+ - Update travis.yml with rails 4.0
215
+
216
+ ### Fixed
217
+
218
+ - Appraisals should load the correct major version of rails
219
+ - Exclude unsupported builds in Travis
220
+
221
+ ## [1.5.3] - 2013-06-18
222
+
223
+ ### Fixed
224
+
225
+ - Fix `initialize_dup` error
226
+
227
+ ## [1.5.2] - 2013-06-10
228
+
229
+ ### Fixed
230
+
231
+ - Properly support has_many through associations
232
+ - Fix reverse association lookup for self-referential models
233
+ - Travis.ci status image
234
+
235
+ ## [1.5.1] - 2013-03-06
236
+
237
+ ### Fixed
238
+
239
+ - Ruby 2.0 compatibility
240
+
241
+ ## [1.5.0] - 2013-02-27
242
+
243
+ ### Added
244
+
245
+ - `:validate` option to disable validations when saving a cloned object
246
+
247
+ ### Fixed
248
+
249
+ - Depend on activerecord instead of rails
250
+
251
+ ## [1.4.1] - 2012-07-23
252
+
253
+ ### Fixed
254
+
255
+ - Don't save HABTM associations on clone
256
+
257
+ ## [1.4.0] - 2012-04-02
258
+
259
+ ### Added
260
+
261
+ - Possibility to add a optional block
262
+
263
+ ### Fixed
264
+
265
+ - Ruby 1.8.7 compatibility for rails 3.1
266
+
267
+ ## [1.3.1] - 2012-01-26
268
+
269
+ ### Fixed
270
+
271
+ - Rails 3.2 compatibility
272
+
273
+ ## [1.2.4] - 2011-06-15
274
+
275
+ ### Changed
276
+
277
+ - Raise an exception when the reverse association is missing
278
+
279
+ ### Fixed
280
+
281
+ - Reset column value when cloning associations
282
+
283
+ ## [1.2.3] - 2011-02-27
284
+
285
+ ### Changed
286
+
287
+ - Find and set the reverse association when cloning associations
288
+
289
+ ## [1.2.2] - 2011-02-21
290
+
291
+ ### Fixed
292
+
293
+ - Use association reflection for fetching the primary key name
294
+
295
+ ## [1.2.1] - 2011-02-07
296
+
297
+ ### Fixed
298
+
299
+ - Cloning for polymorphic associations
300
+
301
+ ## [1.2.0] - 2010-10-20
302
+
303
+ ### Added
304
+
305
+ - `:except` option for excluding attributes
306
+
307
+ ### Fixed
308
+
309
+ - Set foreign keys properly
310
+
311
+ ## 1.0.0 - 2010-10-18
312
+
313
+ ### Fixed
314
+
315
+ - Convert existing code to a gem
316
+
317
+ [unreleased]: https://github.com/moiristo/deep_cloneable/compare/v3.2.1...HEAD
318
+ [3.2.1]: https://github.com/moiristo/deep_cloneable/compare/v3.2.0...v3.2.1
319
+ [3.2.0]: https://github.com/moiristo/deep_cloneable/compare/v3.1.0...v3.2.0
320
+ [3.1.0]: https://github.com/moiristo/deep_cloneable/compare/v3.0.0...v3.1.0
321
+ [3.0.0]: https://github.com/moiristo/deep_cloneable/compare/v2.4.0...v3.0.0
322
+ [2.4.0]: https://github.com/moiristo/deep_cloneable/compare/v2.3.2...v2.4.0
323
+ [2.3.2]: https://github.com/moiristo/deep_cloneable/compare/v2.3.1...v2.3.2
324
+ [2.3.1]: https://github.com/moiristo/deep_cloneable/compare/v2.3.0...v2.3.1
325
+ [2.3.0]: https://github.com/moiristo/deep_cloneable/compare/v2.2.2...v2.3.0
326
+ [2.2.2]: https://github.com/moiristo/deep_cloneable/compare/v2.2.1...v2.2.2
327
+ [2.2.1]: https://github.com/moiristo/deep_cloneable/compare/v2.2.0...v2.2.1
328
+ [2.2.0]: https://github.com/moiristo/deep_cloneable/compare/v2.1.0...v2.2.0
329
+ [2.1.0]: https://github.com/moiristo/deep_cloneable/compare/v2.0.2...v2.1.0
330
+ [2.0.2]: https://github.com/moiristo/deep_cloneable/compare/v2.0.1...v2.0.2
331
+ [2.0.1]: https://github.com/moiristo/deep_cloneable/compare/v2.0.0...v2.0.1
332
+ [2.0.0]: https://github.com/moiristo/deep_cloneable/compare/v1.7.0...v2.0.0
333
+ [1.7.0]: https://github.com/moiristo/deep_cloneable/compare/v1.6.1...v1.7.0
334
+ [1.6.1]: https://github.com/moiristo/deep_cloneable/compare/v1.6.0...v1.6.1
335
+ [1.6.0]: https://github.com/moiristo/deep_cloneable/compare/v1.5.5...v1.6.0
336
+ [1.5.5]: https://github.com/moiristo/deep_cloneable/compare/v1.5.4...v1.5.5
337
+ [1.5.4]: https://github.com/moiristo/deep_cloneable/compare/v1.5.3...v1.5.4
338
+ [1.5.3]: https://github.com/moiristo/deep_cloneable/compare/v1.5.2...v1.5.3
339
+ [1.5.2]: https://github.com/moiristo/deep_cloneable/compare/v1.5.1...v1.5.2
340
+ [1.5.1]: https://github.com/moiristo/deep_cloneable/compare/v1.5.0...v1.5.1
341
+ [1.5.0]: https://github.com/moiristo/deep_cloneable/compare/v1.4.1...v1.5.0
342
+ [1.4.1]: https://github.com/moiristo/deep_cloneable/compare/v1.4.0...v1.4.1
343
+ [1.4.0]: https://github.com/moiristo/deep_cloneable/compare/v1.3.1...v1.4.0
344
+ [1.3.1]: https://github.com/moiristo/deep_cloneable/compare/v1.2.4...v1.3.1
345
+ [1.2.4]: https://github.com/moiristo/deep_cloneable/compare/v1.2.3...v1.2.4
346
+ [1.2.3]: https://github.com/moiristo/deep_cloneable/compare/v1.2.2...v1.2.3
347
+ [1.2.2]: https://github.com/moiristo/deep_cloneable/compare/v1.2.1...v1.2.2
348
+ [1.2.1]: https://github.com/moiristo/deep_cloneable/compare/v1.2.0...v1.2.1
349
+ [1.2.0]: https://github.com/moiristo/deep_cloneable/compare/v1.1.0...v1.2.0
350
+ [1.1.0]: https://github.com/moiristo/deep_cloneable/compare/v1.0.0...v1.1.0
data/Gemfile CHANGED
@@ -1,10 +1,11 @@
1
- source 'http://rubygems.org'
1
+ # frozen_string_literal: true
2
2
 
3
- gemspec
3
+ source 'http://rubygems.org'
4
4
 
5
- gem 'rails'
6
- gem 'jeweler'
5
+ gem 'activerecord', '>= 3.1.0', '< 9'
6
+ gem 'bundler', :group => :test
7
+ gem 'rake', '~> 12.3', :group => :test
7
8
 
8
- group :test do
9
- gem 'sqlite3'
10
- end
9
+ gem 'appraisal', :group => :test
10
+ gem 'minitest', :group => :test
11
+ gem 'sqlite3', '~> 2.2', :group => :test
data/Gemfile.lock CHANGED
@@ -1,100 +1,60 @@
1
- PATH
2
- remote: .
3
- specs:
4
- deep_cloneable (1.3.1)
5
-
6
1
  GEM
7
2
  remote: http://rubygems.org/
8
3
  specs:
9
- actionmailer (3.2.2)
10
- actionpack (= 3.2.2)
11
- mail (~> 2.4.0)
12
- actionpack (3.2.2)
13
- activemodel (= 3.2.2)
14
- activesupport (= 3.2.2)
15
- builder (~> 3.0.0)
16
- erubis (~> 2.7.0)
17
- journey (~> 1.0.1)
18
- rack (~> 1.4.0)
19
- rack-cache (~> 1.1)
20
- rack-test (~> 0.6.1)
21
- sprockets (~> 2.1.2)
22
- activemodel (3.2.2)
23
- activesupport (= 3.2.2)
24
- builder (~> 3.0.0)
25
- activerecord (3.2.2)
26
- activemodel (= 3.2.2)
27
- activesupport (= 3.2.2)
28
- arel (~> 3.0.2)
29
- tzinfo (~> 0.3.29)
30
- activeresource (3.2.2)
31
- activemodel (= 3.2.2)
32
- activesupport (= 3.2.2)
33
- activesupport (3.2.2)
34
- i18n (~> 0.6)
35
- multi_json (~> 1.0)
36
- arel (3.0.2)
37
- builder (3.0.0)
38
- erubis (2.7.0)
39
- git (1.2.5)
40
- hike (1.2.1)
41
- i18n (0.6.0)
42
- jeweler (1.8.3)
43
- bundler (~> 1.0)
44
- git (>= 1.2.5)
4
+ activemodel (8.0.0)
5
+ activesupport (= 8.0.0)
6
+ activerecord (8.0.0)
7
+ activemodel (= 8.0.0)
8
+ activesupport (= 8.0.0)
9
+ timeout (>= 0.4.0)
10
+ activesupport (8.0.0)
11
+ base64
12
+ benchmark (>= 0.3)
13
+ bigdecimal
14
+ concurrent-ruby (~> 1.0, >= 1.3.1)
15
+ connection_pool (>= 2.2.5)
16
+ drb
17
+ i18n (>= 1.6, < 2)
18
+ logger (>= 1.4.2)
19
+ minitest (>= 5.1)
20
+ securerandom (>= 0.3)
21
+ tzinfo (~> 2.0, >= 2.0.5)
22
+ uri (>= 0.13.1)
23
+ appraisal (2.5.0)
24
+ bundler
45
25
  rake
46
- rdoc
47
- journey (1.0.3)
48
- json (1.6.6)
49
- mail (2.4.4)
50
- i18n (>= 0.4.0)
51
- mime-types (~> 1.16)
52
- treetop (~> 1.4.8)
53
- mime-types (1.18)
54
- multi_json (1.2.0)
55
- polyglot (0.3.3)
56
- rack (1.4.1)
57
- rack-cache (1.2)
58
- rack (>= 0.4)
59
- rack-ssl (1.3.2)
60
- rack
61
- rack-test (0.6.1)
62
- rack (>= 1.0)
63
- rails (3.2.2)
64
- actionmailer (= 3.2.2)
65
- actionpack (= 3.2.2)
66
- activerecord (= 3.2.2)
67
- activeresource (= 3.2.2)
68
- activesupport (= 3.2.2)
69
- bundler (~> 1.0)
70
- railties (= 3.2.2)
71
- railties (3.2.2)
72
- actionpack (= 3.2.2)
73
- activesupport (= 3.2.2)
74
- rack-ssl (~> 1.3.2)
75
- rake (>= 0.8.7)
76
- rdoc (~> 3.4)
77
- thor (~> 0.14.6)
78
- rake (0.9.2.2)
79
- rdoc (3.12)
80
- json (~> 1.4)
81
- sprockets (2.1.2)
82
- hike (~> 1.2)
83
- rack (~> 1.0)
84
- tilt (~> 1.1, != 1.3.0)
85
- sqlite3 (1.3.5)
86
- thor (0.14.6)
87
- tilt (1.3.3)
88
- treetop (1.4.10)
89
- polyglot
90
- polyglot (>= 0.3.1)
91
- tzinfo (0.3.32)
26
+ thor (>= 0.14.0)
27
+ base64 (0.2.0)
28
+ benchmark (0.4.0)
29
+ bigdecimal (3.1.8)
30
+ concurrent-ruby (1.3.4)
31
+ connection_pool (2.4.1)
32
+ drb (2.2.1)
33
+ i18n (1.14.6)
34
+ concurrent-ruby (~> 1.0)
35
+ logger (1.6.1)
36
+ mini_portile2 (2.8.7)
37
+ minitest (5.25.1)
38
+ rake (12.3.3)
39
+ securerandom (0.3.2)
40
+ sqlite3 (2.2.0)
41
+ mini_portile2 (~> 2.8.0)
42
+ thor (1.3.2)
43
+ timeout (0.4.2)
44
+ tzinfo (2.0.6)
45
+ concurrent-ruby (~> 1.0)
46
+ uri (1.0.2)
92
47
 
93
48
  PLATFORMS
94
49
  ruby
95
50
 
96
51
  DEPENDENCIES
97
- deep_cloneable!
98
- jeweler
99
- rails
100
- sqlite3
52
+ activerecord (>= 3.1.0, < 9)
53
+ appraisal
54
+ bundler
55
+ minitest
56
+ rake (~> 12.3)
57
+ sqlite3 (~> 2.2)
58
+
59
+ BUNDLED WITH
60
+ 2.5.20
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010 Reinier de Lange
1
+ Copyright (c) 2024 Reinier de Lange
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -1,47 +1,22 @@
1
- require 'rubygems'
2
- require 'rake'
3
-
4
- begin
5
- require 'jeweler'
6
- Jeweler::Tasks.new do |gem|
7
- gem.name = "deep_cloneable"
8
- gem.summary = %Q{This gem gives every ActiveRecord::Base object the possibility to do a deep clone.}
9
- gem.description = %Q{Extends the functionality of ActiveRecord::Base#clone to perform a deep clone that includes user specified associations. }
10
- gem.email = "r.j.delange@nedforce.nl"
11
- gem.homepage = "http://github.com/moiristo/deep_cloneable"
12
- gem.authors = ["Reinier de Lange"]
13
- # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
14
- end
15
- Jeweler::GemcutterTasks.new
16
- rescue LoadError
17
- puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
18
- end
1
+ # frozen_string_literal: true
19
2
 
3
+ require 'rubygems'
4
+ require 'bundler/setup'
5
+ require 'bundler/gem_tasks'
6
+ require 'appraisal'
20
7
  require 'rake/testtask'
8
+
21
9
  Rake::TestTask.new(:test) do |test|
22
10
  test.libs << 'lib' << 'test'
23
11
  test.pattern = 'test/**/test_*.rb'
24
12
  test.verbose = true
25
13
  end
26
14
 
27
- begin
28
- require 'rcov/rcovtask'
29
- Rcov::RcovTask.new do |test|
30
- test.libs << 'test'
31
- test.pattern = 'test/**/test_*.rb'
32
- test.verbose = true
33
- end
34
- rescue LoadError
35
- task :rcov do
36
- abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
37
- end
38
- end
39
-
40
15
  task :default => :test
41
16
 
42
- require 'rake/rdoctask'
17
+ require 'rdoc/task'
43
18
  Rake::RDocTask.new do |rdoc|
44
- version = File.exist?('VERSION') ? File.read('VERSION') : ""
19
+ version = File.exist?('VERSION') ? File.read('VERSION') : ''
45
20
 
46
21
  rdoc.rdoc_dir = 'rdoc'
47
22
  rdoc.title = "deep_cloneable #{version}"