ruby-bsdconv 0.9.0 → 9.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.
- data/Rakefile +1 -1
- data/ext/ruby-bsdconv/bsdconv.c +1 -1
- data/ruby-bsdconv.gemspec +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
|
@@ -9,7 +9,7 @@ desc 'Generate gemspec'
|
|
|
9
9
|
task 'gem:spec' do
|
|
10
10
|
Gemgem.spec = Gemgem.create do |s|
|
|
11
11
|
s.name = 'ruby-bsdconv'
|
|
12
|
-
s.version = '
|
|
12
|
+
s.version = '9.1'
|
|
13
13
|
s.extensions = 'ext/ruby-bsdconv/extconf.rb'
|
|
14
14
|
s.authors = ['Buganini Q']
|
|
15
15
|
s.homepage = 'https://github.com/buganini/ruby-bsdconv'
|
data/ext/ruby-bsdconv/bsdconv.c
CHANGED
|
@@ -167,7 +167,7 @@ static VALUE m_conv_chunk_last(VALUE self, VALUE str){
|
|
|
167
167
|
ins->output_mode=BSDCONV_AUTOMALLOC;
|
|
168
168
|
ins->input.data=RSTRING_PTR(str);
|
|
169
169
|
ins->input.len=RSTRING_LEN(str);
|
|
170
|
-
ins->input.flags=
|
|
170
|
+
ins->input.flags=0;
|
|
171
171
|
bsdconv(ins);
|
|
172
172
|
ret=rb_str_new(ins->output.data, ins->output.len);
|
|
173
173
|
bsdconv_free(ins->output.data);
|
data/ruby-bsdconv.gemspec
CHANGED