ruby-vips 0.3.8 → 0.3.9

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.
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # master
2
2
 
3
+ # Version 0.3.9
4
+
5
+ * removed a stray file from gemspec [Alessandro Tagliapietra]
6
+ * updated bundle [John Cupitt]
7
+ * revised spec tests [John Cupitt]
8
+ * fix a segv in im.label_regions [John Cupitt]
9
+ * add a Valgrind suppressions file [John Cupitt]
10
+ * fix .monotonic? [John Cupitt]
11
+ * fix .data on coded images [John Cupitt]
12
+ * add .size, see issue #58 [John Cupitt]
13
+ * add rdoc-data dep, maybe it will help ruby-gems docs [John Cupitt]
14
+
3
15
  # Version 0.3.8
4
16
 
5
17
  * add VIPS::thread_shutdown(), must be called on foreign thread exit [John Cupitt]
data/Gemfile.lock CHANGED
@@ -1,12 +1,12 @@
1
1
  GEM
2
2
  remote: http://rubygems.org/
3
3
  specs:
4
- addressable (2.3.5)
4
+ addressable (2.3.6)
5
5
  builder (3.2.2)
6
6
  diff-lcs (1.2.5)
7
7
  faraday (0.8.9)
8
8
  multipart-post (~> 1.2.0)
9
- git (1.2.6)
9
+ git (1.2.7)
10
10
  github_api (0.10.1)
11
11
  addressable
12
12
  faraday (~> 0.8.1)
@@ -14,8 +14,8 @@ GEM
14
14
  multi_json (~> 1.4)
15
15
  nokogiri (~> 1.5.2)
16
16
  oauth2
17
- hashie (2.0.5)
18
- highline (1.6.20)
17
+ hashie (3.2.0)
18
+ highline (1.6.21)
19
19
  jeweler (1.8.8)
20
20
  builder
21
21
  bundler (~> 1.0)
@@ -26,30 +26,35 @@ GEM
26
26
  rake
27
27
  rdoc
28
28
  json (1.8.1)
29
- jwt (0.1.11)
30
- multi_json (>= 1.5)
31
- multi_json (1.8.4)
29
+ jwt (1.0.0)
30
+ multi_json (1.10.1)
32
31
  multi_xml (0.5.5)
33
32
  multipart-post (1.2.0)
34
33
  nokogiri (1.5.10)
35
- oauth2 (0.9.3)
34
+ oauth2 (1.0.0)
36
35
  faraday (>= 0.8, < 0.10)
37
- jwt (~> 0.1.8)
36
+ jwt (~> 1.0)
38
37
  multi_json (~> 1.3)
39
38
  multi_xml (~> 0.5)
40
39
  rack (~> 1.2)
41
40
  rack (1.5.2)
42
- rake (10.1.1)
43
- rdoc (3.12.2)
41
+ rake (10.2.2)
42
+ rdoc (4.1.1)
44
43
  json (~> 1.4)
45
- rspec (2.14.1)
46
- rspec-core (~> 2.14.0)
47
- rspec-expectations (~> 2.14.0)
48
- rspec-mocks (~> 2.14.0)
49
- rspec-core (2.14.7)
50
- rspec-expectations (2.14.5)
51
- diff-lcs (>= 1.1.3, < 2.0)
52
- rspec-mocks (2.14.5)
44
+ rdoc-data (4.0.1)
45
+ rdoc (~> 4.0)
46
+ rspec (3.0.0)
47
+ rspec-core (~> 3.0.0)
48
+ rspec-expectations (~> 3.0.0)
49
+ rspec-mocks (~> 3.0.0)
50
+ rspec-core (3.0.2)
51
+ rspec-support (~> 3.0.0)
52
+ rspec-expectations (3.0.2)
53
+ diff-lcs (>= 1.2.0, < 2.0)
54
+ rspec-support (~> 3.0.0)
55
+ rspec-mocks (3.0.2)
56
+ rspec-support (~> 3.0.0)
57
+ rspec-support (3.0.2)
53
58
 
54
59
  PLATFORMS
55
60
  ruby
@@ -57,5 +62,6 @@ PLATFORMS
57
62
  DEPENDENCIES
58
63
  bundler
59
64
  jeweler (~> 1.8.3)
60
- rdoc (~> 3.12)
65
+ rdoc (~> 4.1)
66
+ rdoc-data (~> 4.0)
61
67
  rspec
data/TODO CHANGED
@@ -1,3 +1,5 @@
1
+ - add something to make a memory image, useful in some cases, eg. making very
2
+ large image mosaics
1
3
 
2
4
  - support vips_flatten(), see
3
5
 
data/ext/header.c CHANGED
@@ -78,6 +78,24 @@ header_y_size(VALUE obj)
78
78
  return Qnil;
79
79
  }
80
80
 
81
+ /*
82
+ * call-seq:
83
+ * im.size -> [width, height]
84
+ *
85
+ * Get the size of the image in pixels.
86
+ */
87
+
88
+ static VALUE
89
+ header_size(VALUE obj)
90
+ {
91
+ GetImg(obj, data, im);
92
+
93
+ if (im)
94
+ return rb_ary_new3(2, INT2FIX(im->Xsize), INT2FIX(im->Ysize));
95
+
96
+ return Qnil;
97
+ }
98
+
81
99
  /*
82
100
  * call-seq:
83
101
  * im.bands -> number
@@ -403,6 +421,7 @@ init_Header( void )
403
421
 
404
422
  rb_define_method(mVIPSHeader, "x_size", header_x_size, 0);
405
423
  rb_define_method(mVIPSHeader, "y_size", header_y_size, 0);
424
+ rb_define_method(mVIPSHeader, "size", header_size, 0);
406
425
  rb_define_method(mVIPSHeader, "bands", header_bands, 0);
407
426
  rb_define_method(mVIPSHeader, "band_fmt", header_band_fmt, 0);
408
427
  rb_define_method(mVIPSHeader, "x_res", header_x_res, 0);
data/ext/image.c CHANGED
@@ -341,7 +341,7 @@ img_data(VALUE obj)
341
341
  {
342
342
  GetImg(obj, data, im);
343
343
 
344
- if (im_incheck(im) || im_check_uncoded("img_aref", im))
344
+ if (im_incheck(im) )
345
345
  return( Qnil );
346
346
 
347
347
  return rb_tainted_str_new((const char *) im->data,
@@ -351,7 +351,7 @@ img_monotonic_p(VALUE obj)
351
351
  if( im_ismonotonic(im, &ret) )
352
352
  vips_lib_error();
353
353
 
354
- return( ret == 0 ? Qtrue : Qfalse );
354
+ return( ret == 0 ? Qfalse : Qtrue );
355
355
  }
356
356
 
357
357
  /*
@@ -323,5 +323,5 @@ img_label_regions(VALUE obj)
323
323
  if (im_label_regions(im, im_new, &segments))
324
324
  vips_lib_error();
325
325
 
326
- return rb_ary_new3(2, new, segments);
326
+ return rb_ary_new3(2, new, INT2NUM(segments));
327
327
  }
data/ext/tags CHANGED
@@ -4,17 +4,18 @@
4
4
  !_TAG_PROGRAM_NAME Exuberant Ctags //
5
5
  !_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
6
6
  !_TAG_PROGRAM_VERSION 5.9~svn20110310 //
7
+ ATLEAST_VIPS ruby_vips.h 19;" d
7
8
  CGETPIX image.c 241;" d file:
8
- DBL2NUM ruby_vips.h 20;" d
9
+ DBL2NUM ruby_vips.h 26;" d
9
10
  GETPIX image.c 228;" d file:
10
11
  GetImg image.h 26;" d
11
12
  Init_vips_ext ruby_vips.c /^Init_vips_ext()$/;" f
12
- NEED_ruby_vips_class_map_all ruby_vips.h 45;" d
13
+ NEED_ruby_vips_class_map_all ruby_vips.h 51;" d
13
14
  OutImg image.h 32;" d
14
15
  OutImg2 image.h 36;" d
15
16
  OutImg3 image.h 40;" d
16
17
  OutPartial image.h 44;" d
17
- RARRAY_LENINT ruby_vips.h 24;" d
18
+ RARRAY_LENINT ruby_vips.h 30;" d
18
19
  RUBY_VIPS_BINARY image.h 59;" d
19
20
  RUBY_VIPS_H ruby_vips.h 2;" d
20
21
  RUBY_VIPS_HEADER_H header.h 2;" d
@@ -102,8 +103,8 @@ id_ushort header.c /^static ID id_notset, id_uchar, id_char, id_ushort, id_short
102
103
  id_white image_conversion.c /^static ID id_black, id_extend, id_repeat, id_mirror, id_white;$/;" v file:
103
104
  id_xyz image.c /^static ID id_b_w, id_histogram, id_fourier, id_xyz, id_lab, id_cmyk, id_labq,$/;" v file:
104
105
  id_yxy image.c /^ id_rgb, id_ucs, id_lch, id_labs, id_srgb, id_yxy, id_rgb16, id_grey16;$/;" v file:
105
- im_openout ruby_vips.h 35;" d
106
- im_openout ruby_vips.h 36;" d
106
+ im_openout ruby_vips.h 41;" d
107
+ im_openout ruby_vips.h 42;" d
107
108
  imask mask.h /^ INTMASK *imask;$/;" m struct:_vipsMask
108
109
  imask2rb mask.c /^imask2rb(INTMASK *msk)$/;" f
109
110
  img_abs image_arithmetic.c /^img_abs(VALUE obj)$/;" f
@@ -419,11 +420,12 @@ mask_scale mask.c /^mask_scale(VALUE obj)$/;" f file:
419
420
  mask_to_image mask.c /^mask_to_image(VALUE obj)$/;" f file:
420
421
  mask_xsize mask.c /^mask_xsize(VALUE obj)$/;" f file:
421
422
  mask_ysize mask.c /^mask_ysize(VALUE obj)$/;" f file:
423
+ png_buf_internal reader.c /^png_buf_internal(VALUE obj, VALUE buf)$/;" f file:
422
424
  png_buf_internal writer.c /^png_buf_internal(VALUE obj, VALUE compression, VALUE interlace)$/;" f file:
423
425
  png_write_internal writer.c /^png_write_internal(VALUE obj, VALUE path)$/;" f file:
424
426
  ppm_write_internal writer.c /^ppm_write_internal(VALUE obj, VALUE path)$/;" f file:
425
427
  raw_read_internal reader.c /^raw_read_internal(VALUE obj, VALUE path, VALUE width, VALUE height, VALUE bpp,$/;" f file:
426
- rb_str_new_cstr ruby_vips.h 28;" d
428
+ rb_str_new_cstr ruby_vips.h 34;" d
427
429
  reader_fmt_set reader.c /^reader_fmt_set(VALUE klass, const char* val)$/;" f file:
428
430
  reader_get_fmt_class reader.c /^reader_get_fmt_class(VALUE klass)$/;" f
429
431
  reader_read_internal reader.c /^reader_read_internal(VALUE obj, VALUE path, VALUE flags)$/;" f file:
@@ -433,9 +435,10 @@ ruby_vips_type_map ruby_vips.c /^ruby_vips_type_map( GType base, VipsTypeMap2 fn
433
435
  tiff_write_internal writer.c /^tiff_write_internal(VALUE obj, VALUE path)$/;" f file:
434
436
  vipsImg image.h /^typedef struct _vipsImg vipsImg;$/;" t typeref:struct:_vipsImg
435
437
  vipsMask mask.h /^typedef struct _vipsMask vipsMask;$/;" t typeref:struct:_vipsMask
436
- vips_class_map_concrete_all ruby_vips.h 44;" d
438
+ vips_class_map_concrete_all ruby_vips.h 50;" d
437
439
  vips_lib_error ruby_vips.c /^vips_lib_error()$/;" f
438
440
  vips_s_debug_info ruby_vips.c /^vips_s_debug_info(VALUE obj)$/;" f file:
441
+ vips_s_thread_shutdown ruby_vips.c /^vips_s_thread_shutdown(VALUE obj)$/;" f file:
439
442
  vips_s_version_array ruby_vips.c /^vips_s_version_array()$/;" f file:
440
443
  vips_s_version_string ruby_vips.c /^vips_s_version_string()$/;" f file:
441
444
  vips_write_internal writer.c /^vips_write_internal(VALUE obj, VALUE path)$/;" f file:
data/lib/vips/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module VIPS
2
- VERSION = "0.3.8"
2
+ VERSION = "0.3.9"
3
3
  end
data/ruby-vips.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "ruby-vips"
8
- s.version = "0.3.8"
8
+ s.version = "0.3.9"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Timothy Elliott", "John Cupitt"]
12
- s.date = "2014-05-11"
12
+ s.date = "2014-07-17"
13
13
  s.description = "Ruby extension for the vips image processing library."
14
14
  s.email = "jcupitt@gmail.com"
15
15
  s.extensions = ["ext/extconf.rb"]
@@ -78,18 +78,21 @@ Gem::Specification.new do |s|
78
78
  s.specification_version = 3
79
79
 
80
80
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
81
- s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
81
+ s.add_development_dependency(%q<rdoc>, ["~> 4.1"])
82
+ s.add_development_dependency(%q<rdoc-data>, ["~> 4.0"])
82
83
  s.add_development_dependency(%q<bundler>, [">= 0"])
83
84
  s.add_development_dependency(%q<jeweler>, ["~> 1.8.3"])
84
85
  s.add_development_dependency(%q<rspec>, [">= 0"])
85
86
  else
86
- s.add_dependency(%q<rdoc>, ["~> 3.12"])
87
+ s.add_dependency(%q<rdoc>, ["~> 4.1"])
88
+ s.add_dependency(%q<rdoc-data>, ["~> 4.0"])
87
89
  s.add_dependency(%q<bundler>, [">= 0"])
88
90
  s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
89
91
  s.add_dependency(%q<rspec>, [">= 0"])
90
92
  end
91
93
  else
92
- s.add_dependency(%q<rdoc>, ["~> 3.12"])
94
+ s.add_dependency(%q<rdoc>, ["~> 4.1"])
95
+ s.add_dependency(%q<rdoc-data>, ["~> 4.0"])
93
96
  s.add_dependency(%q<bundler>, [">= 0"])
94
97
  s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
95
98
  s.add_dependency(%q<rspec>, [">= 0"])
data/ruby.supp CHANGED
@@ -1,194 +1,134 @@
1
- # valgrind suppressions file for ubuntu 12.04
2
- # with this set of suppressions I can run
3
- # valgrind --db-attach=yes ruby -S rspec spec/vips/vips_reader_spec.rb ..
4
- # successfully
1
+ # valgrind suppressions file for ruby1.9.1
2
+
3
+ # handy for debugging spec fails, eg.
4
+ #
5
+ # $ export G_DEBUG=gc-friendly
6
+ # $ export G_SLICE=always-malloc
7
+ # $ valgrind --db-attach=yes -- ruby -S rspec spec/vips/morphology_spec.rb
5
8
 
6
9
  {
7
- cond1
8
- Memcheck:Cond
9
- ...
10
- fun:rb_newobj
11
- obj:/usr/lib/libruby1.8.so.1.8.7
12
- fun:rb_str_buf_new
13
- obj:/usr/lib/libruby1.8.so.1.8.7
14
- obj:/usr/lib/libruby1.8.so.1.8.7
15
- fun:ruby_yyparse
10
+ ruby1
11
+ Memcheck:Cond
12
+ ...
13
+ fun:rb_parser_compile_file
16
14
  }
17
15
 
18
16
  {
19
- val1
20
- Memcheck:Value8
21
- ...
22
- fun:rb_newobj
23
- obj:/usr/lib/libruby1.8.so.1.8.7
24
- fun:rb_str_buf_new
25
- obj:/usr/lib/libruby1.8.so.1.8.7
26
- obj:/usr/lib/libruby1.8.so.1.8.7
27
- fun:ruby_yyparse
17
+ ruby2
18
+ Memcheck:Value8
19
+ ...
20
+ fun:rb_parser_compile_file
28
21
  }
29
22
 
30
23
  {
31
- cond2
32
- Memcheck:Cond
33
- ...
34
- obj:/usr/lib/libruby1.8.so.1.8.7
35
- obj:/usr/lib/libruby1.8.so.1.8.7
36
- fun:rb_newobj
37
- obj:/usr/lib/libruby1.8.so.1.8.7
38
- obj:/usr/lib/libruby1.8.so.1.8.7
39
- fun:rb_str_new3
24
+ ruby3
25
+ Memcheck:Cond
26
+ ...
27
+ fun:rb_file_expand_path
40
28
  }
41
29
 
42
30
  {
43
- val2
44
- Memcheck:Value8
45
- ...
46
- obj:/usr/lib/libruby1.8.so.1.8.7
47
- obj:/usr/lib/libruby1.8.so.1.8.7
48
- fun:rb_newobj
49
- obj:/usr/lib/libruby1.8.so.1.8.7
50
- obj:/usr/lib/libruby1.8.so.1.8.7
51
- fun:rb_str_new3
31
+ ruby4
32
+ Memcheck:Value8
33
+ ...
34
+ fun:rb_file_expand_path
52
35
  }
53
36
 
37
+ # happens a lot during compile
54
38
  {
55
- cond3
56
- Memcheck:Cond
57
- ...
58
- obj:/usr/lib/libruby1.8.so.1.8.7
59
- fun:rb_newobj
60
- fun:rb_node_newnode
61
- obj:/usr/lib/libruby1.8.so.1.8.7
62
- fun:ruby_yyparse
39
+ ruby5
40
+ Memcheck:Addr4
41
+ obj:/usr/lib/libruby-1.9.1.so.1.9.1
42
+ ...
43
+ fun:rb_ary_each
63
44
  }
64
45
 
65
46
  {
66
- val3
67
- Memcheck:Value8
68
- ...
69
- obj:/usr/lib/libruby1.8.so.1.8.7
70
- obj:/usr/lib/libruby1.8.so.1.8.7
71
- fun:rb_newobj
72
- fun:rb_node_newnode
73
- obj:/usr/lib/libruby1.8.so.1.8.7
74
- fun:ruby_yyparse
47
+ ruby5a
48
+ Memcheck:Cond
49
+ obj:/usr/lib/libruby-1.9.1.so.1.9.1
50
+ fun:rb_newobj
75
51
  }
76
52
 
77
53
  {
78
- val4
79
- Memcheck:Value8
80
- ...
81
- obj:/usr/lib/libruby1.8.so.1.8.7
82
- fun:rb_newobj
83
- fun:rb_node_newnode
84
- fun:ruby_yyparse
54
+ ruby6
55
+ Memcheck:Cond
56
+ ...
57
+ fun:rb_iseq_compile_with_option
85
58
  }
86
59
 
87
60
  {
88
- cond4
89
- Memcheck:Cond
90
- ...
91
- obj:/usr/lib/libruby1.8.so.1.8.7
92
- fun:rb_newobj
61
+ ruby7
62
+ Memcheck:Value8
63
+ ...
64
+ fun:rb_iseq_compile_with_option
93
65
  }
94
66
 
95
67
  {
96
- val5
97
- Memcheck:Value8
98
- fun:st_lookup
99
- fun:rb_mark_generic_ivar
100
- ...
101
- obj:/usr/lib/libruby1.8.so.1.8.7
102
- obj:/usr/lib/libruby1.8.so.1.8.7
103
- fun:rb_newobj
68
+ ruby8
69
+ Memcheck:Cond
70
+ ...
71
+ fun:st_init_table_with_size
104
72
  }
105
73
 
106
74
  {
107
- val6
108
- Memcheck:Value8
109
- ...
110
- obj:/usr/lib/libruby1.8.so.1.8.7
111
- fun:rb_newobj
112
- ...
113
- obj:/usr/lib/libruby1.8.so.1.8.7
114
- fun:img_each_pixel
75
+ ruby9
76
+ Memcheck:Value8
77
+ ...
78
+ fun:st_init_table_with_size
115
79
  }
116
80
 
117
81
  {
118
- val6a
119
- Memcheck:Value8
120
- ...
121
- obj:/usr/lib/libruby1.8.so.1.8.7
122
- fun:rb_newobj
123
- fun:rb_float_new
124
- ...
125
- obj:/usr/lib/libruby1.8.so.1.8.7
82
+ ruby10
83
+ Memcheck:Cond
84
+ ...
85
+ fun:rb_iseq_compile_node
126
86
  }
127
87
 
128
88
  {
129
- val7
130
- Memcheck:Value8
131
- ...
132
- obj:/usr/lib/libruby1.8.so.1.8.7
133
- fun:rb_newobj
134
- ...
135
- obj:/usr/lib/libruby1.8.so.1.8.7
136
- fun:rb_ary_each
89
+ ruby11
90
+ Memcheck:Value8
91
+ ...
92
+ fun:rb_iseq_compile_node
137
93
  }
138
94
 
139
95
  {
140
- val7a
141
- Memcheck:Value8
142
- ...
143
- obj:/usr/lib/libruby1.8.so.1.8.7
144
- fun:rb_newobj
145
- fun:rb_node_newnode
146
- fun:rb_iterate
147
- ...
96
+ ruby12
97
+ Memcheck:Cond
98
+ obj:/usr/lib/libruby-1.9.1.so.1.9.1
99
+ ...
100
+ fun:rb_node_newnode
148
101
  }
149
102
 
150
103
  {
151
- cond5
152
- Memcheck:Cond
153
- ...
154
- obj:/usr/lib/libruby1.8.so.1.8.7
155
- fun:ruby_xmalloc
156
- obj:/usr/lib/libruby1.8.so.1.8.7
157
- fun:rb_reg_new
104
+ ruby13
105
+ Memcheck:Value8
106
+ obj:/usr/lib/libruby-1.9.1.so.1.9.1
107
+ ...
108
+ fun:rb_node_newnode
158
109
  }
159
110
 
160
111
  {
161
- val8
162
- Memcheck:Value8
163
- ...
164
- obj:/usr/lib/libruby1.8.so.1.8.7
165
- fun:ruby_xmalloc
166
- obj:/usr/lib/libruby1.8.so.1.8.7
167
- fun:rb_reg_new
112
+ ruby14
113
+ Memcheck:Cond
114
+ obj:/usr/lib/libruby-1.9.1.so.1.9.1
115
+ ...
116
+ fun:Init_sha1
168
117
  }
169
118
 
170
119
  {
171
- cond6
172
- Memcheck:Cond
173
- ...
174
- obj:/usr/lib/libruby1.8.so.1.8.7
175
- fun:ruby_xmalloc
176
- fun:st_add_direct
177
- obj:/usr/lib/libruby1.8.so.1.8.7
178
- fun:st_foreach
120
+ ruby15
121
+ Memcheck:Addr8
122
+ obj:/usr/lib/libruby-1.9.1.so.1.9.1
123
+ ...
124
+ fun:rb_yield
179
125
  }
180
126
 
181
127
  {
182
- val9
183
- Memcheck:Value8
184
- ...
185
- obj:/usr/lib/libruby1.8.so.1.8.7
186
- obj:/usr/lib/libruby1.8.so.1.8.7
187
- fun:ruby_xmalloc
188
- fun:st_add_direct
189
- obj:/usr/lib/libruby1.8.so.1.8.7
190
- fun:st_foreach
128
+ ruby16
129
+ Memcheck:Value8
130
+ obj:/usr/lib/libruby-1.9.1.so.1.9.1
131
+ fun:rb_newobj
191
132
  }
192
133
 
193
134
 
194
-
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-vips
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.8
4
+ version: 0.3.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-05-11 00:00:00.000000000 Z
13
+ date: 2014-07-17 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rdoc
@@ -19,7 +19,7 @@ dependencies:
19
19
  requirements:
20
20
  - - ~>
21
21
  - !ruby/object:Gem::Version
22
- version: '3.12'
22
+ version: '4.1'
23
23
  type: :development
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -27,7 +27,23 @@ dependencies:
27
27
  requirements:
28
28
  - - ~>
29
29
  - !ruby/object:Gem::Version
30
- version: '3.12'
30
+ version: '4.1'
31
+ - !ruby/object:Gem::Dependency
32
+ name: rdoc-data
33
+ requirement: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ~>
37
+ - !ruby/object:Gem::Version
38
+ version: '4.0'
39
+ type: :development
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ~>
45
+ - !ruby/object:Gem::Version
46
+ version: '4.0'
31
47
  - !ruby/object:Gem::Dependency
32
48
  name: bundler
33
49
  requirement: !ruby/object:Gem::Requirement
@@ -153,7 +169,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
153
169
  version: '0'
154
170
  segments:
155
171
  - 0
156
- hash: 608630802592582756
172
+ hash: -1056499539870116090
157
173
  required_rubygems_version: !ruby/object:Gem::Requirement
158
174
  none: false
159
175
  requirements: