gherkin 2.11.6-java → 2.11.7-java

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.
@@ -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