gherkin 2.1.0-java → 2.1.1-java

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 2.1.1 (2010-07-12)
2
+
3
+ The previous release had a missing gherkin.jar in the jruby gem. This release fixes that. For good this time!
4
+
1
5
  == 2.1.0 (2010-07-12)
2
6
 
3
7
  === New Features
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
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 2
3
3
  :minor: 1
4
- :patch: 0
4
+ :patch: 1
5
5
  :build:
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
- - 0
9
- version: 2.1.0
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