gherkin 2.11.6-java → 2.11.7-java

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,20 +0,0 @@
1
- if defined?(JRUBY_VERSION)
2
- class WriterStringIO < Java.java.io.StringWriter
3
- def write(what)
4
- super(Java.java.lang.String.new(what.to_s))
5
- end
6
-
7
- def string
8
- toString()
9
- end
10
- end
11
-
12
- require 'stringio'
13
- class StringIO
14
- class << self
15
- def new
16
- WriterStringIO.new
17
- end
18
- end
19
- end
20
- end