gherkin 2.1.0-java → 2.1.1-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.
- data/History.txt +4 -0
- data/README.rdoc +1 -0
- data/VERSION.yml +1 -1
- data/lib/gherkin.jar +0 -0
- data/tasks/gems.rake +1 -0
- metadata +3 -2
data/History.txt
CHANGED
data/README.rdoc
CHANGED
|
@@ -31,6 +31,7 @@ E.g. in Bash, export RL_LANG="en,fr,no". This can be quite helpful when modifyin
|
|
|
31
31
|
* Bump version in the VERSION.yml file and:
|
|
32
32
|
** java/pom.xml
|
|
33
33
|
** ikvm/Gherkin/Gherkin.csproj
|
|
34
|
+
* Make sure both JRuby and MRI has the latest Cucumber installed (from source) otherwise the jruby gem might not get the jar inside it.
|
|
34
35
|
* rake release:ALL
|
|
35
36
|
* Announce on Cucumber list, IRC and Twitter.
|
|
36
37
|
|
data/VERSION.yml
CHANGED
data/lib/gherkin.jar
ADDED
|
Binary file
|
data/tasks/gems.rake
CHANGED
|
@@ -24,6 +24,7 @@ namespace :gems do
|
|
|
24
24
|
task :jruby => :release_dir do
|
|
25
25
|
sh "rvm jruby rake spec"
|
|
26
26
|
sh "rvm jruby rake gemspec build PLATFORM=java"
|
|
27
|
+
raise "The jruby gem looks too small" if File.stat("pkg/gherkin-#{GHERKIN_VERSION}-java.gem").size < 1000000
|
|
27
28
|
mv "pkg/gherkin-#{GHERKIN_VERSION}-java.gem", 'release'
|
|
28
29
|
end
|
|
29
30
|
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 2
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 2.1.
|
|
8
|
+
- 1
|
|
9
|
+
version: 2.1.1
|
|
10
10
|
platform: java
|
|
11
11
|
authors:
|
|
12
12
|
- Mike Sassak
|
|
@@ -103,6 +103,7 @@ files:
|
|
|
103
103
|
- java/src/main/java/gherkin/lexer/.gitignore
|
|
104
104
|
- java/src/main/resources/gherkin/.gitignore
|
|
105
105
|
- lib/.gitignore
|
|
106
|
+
- lib/gherkin.jar
|
|
106
107
|
- lib/gherkin.rb
|
|
107
108
|
- lib/gherkin/c_lexer.rb
|
|
108
109
|
- lib/gherkin/cli/main.rb
|