gherkin 1.0.15-i386-mingw32 → 1.0.16-i386-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. data/History.txt +6 -0
  2. data/VERSION.yml +1 -1
  3. data/lib/gherkin_lexer_ar.so +0 -0
  4. data/lib/gherkin_lexer_bg.so +0 -0
  5. data/lib/gherkin_lexer_ca.so +0 -0
  6. data/lib/gherkin_lexer_cs.so +0 -0
  7. data/lib/gherkin_lexer_cy_gb.so +0 -0
  8. data/lib/gherkin_lexer_da.so +0 -0
  9. data/lib/gherkin_lexer_de.so +0 -0
  10. data/lib/gherkin_lexer_en.so +0 -0
  11. data/lib/gherkin_lexer_en_au.so +0 -0
  12. data/lib/gherkin_lexer_en_lol.so +0 -0
  13. data/lib/gherkin_lexer_en_scouse.so +0 -0
  14. data/lib/gherkin_lexer_en_tx.so +0 -0
  15. data/lib/gherkin_lexer_eo.so +0 -0
  16. data/lib/gherkin_lexer_es.so +0 -0
  17. data/lib/gherkin_lexer_et.so +0 -0
  18. data/lib/gherkin_lexer_fi.so +0 -0
  19. data/lib/gherkin_lexer_fr.so +0 -0
  20. data/lib/gherkin_lexer_he.so +0 -0
  21. data/lib/gherkin_lexer_hr.so +0 -0
  22. data/lib/gherkin_lexer_hu.so +0 -0
  23. data/lib/gherkin_lexer_id.so +0 -0
  24. data/lib/gherkin_lexer_it.so +0 -0
  25. data/lib/gherkin_lexer_ja.so +0 -0
  26. data/lib/gherkin_lexer_ko.so +0 -0
  27. data/lib/gherkin_lexer_lt.so +0 -0
  28. data/lib/gherkin_lexer_lv.so +0 -0
  29. data/lib/gherkin_lexer_nl.so +0 -0
  30. data/lib/gherkin_lexer_no.so +0 -0
  31. data/lib/gherkin_lexer_pl.so +0 -0
  32. data/lib/gherkin_lexer_pt.so +0 -0
  33. data/lib/gherkin_lexer_ro.so +0 -0
  34. data/lib/gherkin_lexer_ro_ro.so +0 -0
  35. data/lib/gherkin_lexer_ru.so +0 -0
  36. data/lib/gherkin_lexer_sk.so +0 -0
  37. data/lib/gherkin_lexer_sr_cyrl.so +0 -0
  38. data/lib/gherkin_lexer_sr_latn.so +0 -0
  39. data/lib/gherkin_lexer_sv.so +0 -0
  40. data/lib/gherkin_lexer_tr.so +0 -0
  41. data/lib/gherkin_lexer_uk.so +0 -0
  42. data/lib/gherkin_lexer_uz.so +0 -0
  43. data/lib/gherkin_lexer_vi.so +0 -0
  44. data/lib/gherkin_lexer_zh_cn.so +0 -0
  45. data/lib/gherkin_lexer_zh_tw.so +0 -0
  46. data/tasks/ikvm.rake +2 -2
  47. data/tasks/release.rake +4 -4
  48. metadata +2 -2
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ == 1.0.16 (2010-04-19)
2
+ (Something went wrong when releasing 1.0.15)
3
+
4
+ === Bugfixes
5
+ * Reduced risk of halfway botched releases. (Aslak Hellesøy)
6
+
1
7
  == 1.0.15 (2010-04-19)
2
8
 
3
9
  === New Features
data/VERSION.yml CHANGED
@@ -2,4 +2,4 @@
2
2
  :major: 1
3
3
  :minor: 0
4
4
  :build:
5
- :patch: 15
5
+ :patch: 16
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/tasks/ikvm.rake CHANGED
@@ -37,13 +37,13 @@ namespace :ikvm do
37
37
 
38
38
  desc 'Copy the IKVM .dll files over to the pkg dir'
39
39
  task :copy_ikvm_dlls do
40
- Dir['/usr/local/ikvm/bin/{IKVM.OpenJDK.Core,IKVM.OpenJDK.Text,IKVM.Runtime}.dll'].each do |dll|
40
+ Dir['/usr/local/ikvm/bin/{IKVM.OpenJDK.Core,IKVM.OpenJDK.Text,IKVM.OpenJDK.Security,IKVM.Runtime}.dll'].each do |dll|
41
41
  cp dll, 'release'
42
42
  end
43
43
  end
44
44
  end
45
45
 
46
- task :ikvm => ['ikvm:exe', 'ikvm:dll', 'ikvm:copy_ikvm_dlls'] do
46
+ task :ikvm => ['ikvm:copy_ikvm_dlls', 'ikvm:exe', 'ikvm:dll'] do
47
47
  sh "mono release/gherkin-#{GHERKIN_VERSION}.exe features"
48
48
  end
49
49
 
data/tasks/release.rake CHANGED
@@ -1,8 +1,8 @@
1
1
  namespace :release do
2
2
  desc 'Uplad all packages and tag git'
3
- task :ALL => [:_gems, :dll, :jar, 'git:release']
3
+ task :ALL => [:gems, :push_dll, :push_jar, :push_gems, 'git:release']
4
4
 
5
- task :_gems => :gems do
5
+ task :push_gems do
6
6
  Dir.chdir('release') do
7
7
  Dir['*.gem'].each do |gem_file|
8
8
  sh("gem push #{gem_file}")
@@ -10,7 +10,7 @@ namespace :release do
10
10
  end
11
11
  end
12
12
 
13
- task :dll => :ikvm do
13
+ task :push_dll => :ikvm do
14
14
  Dir.chdir('release') do
15
15
  # This requires aslakhellesoy's build of the github gem,
16
16
  # which has tekkub's upload command.
@@ -18,7 +18,7 @@ namespace :release do
18
18
  end
19
19
  end
20
20
 
21
- task :jar do
21
+ task :push_jar do
22
22
  Dir.chdir('java') do
23
23
  sh("mvn deploy")
24
24
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 15
9
- version: 1.0.15
8
+ - 16
9
+ version: 1.0.16
10
10
  platform: i386-mingw32
11
11
  authors:
12
12
  - Mike Sassak