cucumber 1.3.0 → 1.3.1

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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YWFhMTkxZTNkZGMxYjJlNDEzZmFiMmZkMTQyZWRmYjcwYWQ4MGZhZg==
4
+ ZGEyMTg5N2JlNzMzMWJkYjMyMDNmODk5NWNlNWEyNTQ4ZGFiNGJiYw==
5
5
  data.tar.gz: !binary |-
6
- MzIxNWM1YWRkMjI5NWFlNGExM2EwMTY0NjE3NzU1ODY0YWFhYzA5Nw==
6
+ YzM2ODg2NDA2ZGZiZTRjNWRhYTNjNjRhZDRkZGIxODMyMWFlMThlMw==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- YmI2ZTM2ZTZjYWEyMzIzMjdjYzg0NzhlOTY2YTM4NWEzNjRhMzkwMWZjNWQ0
10
- ZGU0OWI4ODIyMDhlNTRjMjBmMTJhZDQyZDI5NDY2OGMzYTllOGI2YjljZmFi
11
- MjQxYWQ1YTkxMjMwY2U1Y2IyMmQyYmNiYTU1MmZmYTY5ZDdiNGY=
9
+ MWFjNmMzMzJlZmZiYWQxYmM0ZTU5NWY5ZTY5MDI3YTRiOGQ4YmZkYTExZDEx
10
+ Y2U0OTU3NThiZWJmZThjNTZmOWE4NTI3OGQ0MWYxY2VlZTdhMjgwOWVkNzIz
11
+ MTNjZWExZmRmZTgzMDE2NWFhZWJjNmE1YjU2NzM3MmEyMzUyMDk=
12
12
  data.tar.gz: !binary |-
13
- Njk3Y2Y3NmM5MzQ4ZDFiYzAwNzYyODhmYWQ2ZWZlMDU0YWNmNDFmNDdjNDBh
14
- NTY1OWZmNzlhYTMxNmNiZDEzYWZlNjc1Mzg0ZTNiZGRhZjI3MDczMWMyMjA0
15
- MDE4ZTA5MmYwNTY3YTk2NzYzNmQ1OTI4ZTk1ZTFmMGNhMDhkN2Y=
13
+ YjlkMGViNGE3OWJlZDhjNTQ5MWQyYjQyZjBlMzZjZTFmYzU3M2E1MDYyMWM1
14
+ NDk3MTgwMDBlNmFmZDZhMDcxYjhkMTgzYzY3NTYyMTQ0OTk2YjcyY2U0NTMw
15
+ ZDFjMzc0OTI2YmMxMDA5YzJkNzc5M2U1NmUwNzRkNjZlOTU3MDY=
data/History.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [1.3.1](https://github.com/cucumber/cucumber/compare/v1.3.0...v1.3.1)
2
+
3
+ ### Bugfixes
4
+ * Fixed typo which breaks unicode.rb on Windows (Oleg Sukhodolsky)
5
+
1
6
  ## [1.3.0](https://github.com/cucumber/cucumber/compare/v1.2.5...v1.3.0)
2
7
 
3
8
  ### New Features
@@ -28,32 +28,32 @@ if Cucumber::WINDOWS
28
28
  def cucumber_preprocess_output(*a)
29
29
  if Cucumber::RUBY_1_8_7
30
30
  begin
31
- *Iconv.iconv(Cucumber::CODEPAGE, "UTF-8", *a.map{|a|a.to_s})
31
+ Iconv.iconv(Cucumber::CODEPAGE, "UTF-8", *a.map{|a|a.to_s})
32
32
  rescue Iconv::InvalidEncoding => e
33
33
  STDERR.cucumber_puts("WARNING: #{e.message}")
34
- *a
34
+ a
35
35
  rescue Iconv::IllegalSequence => e
36
36
  STDERR.cucumber_puts("WARNING: #{e.message}")
37
- *a
37
+ a
38
38
  end
39
39
  else
40
40
  begin
41
- *a.map{|arg| arg.to_s.encode(Encoding.default_external)}
41
+ a.map{|arg| arg.to_s.encode(Encoding.default_external)}
42
42
  rescue Encoding::UndefinedConversionError => e
43
43
  STDERR.cucumber_puts("WARNING: #{e.message}")
44
- *a
44
+ a
45
45
  end
46
46
  end
47
47
  end
48
48
 
49
49
  alias cucumber_print print
50
50
  def print(*a)
51
- cucumber_print(cucumber_preprocess_output(*a))
51
+ cucumber_print(*cucumber_preprocess_output(*a))
52
52
  end
53
53
 
54
54
  alias cucumber_puts puts
55
55
  def puts(*a)
56
- cucumber_puts(cucumber_preprocess_output(*a))
56
+ cucumber_puts(*cucumber_preprocess_output(*a))
57
57
  end
58
58
  end
59
59
  end
@@ -4,7 +4,7 @@ require 'rbconfig'
4
4
 
5
5
  module Cucumber
6
6
  unless defined?(Cucumber::VERSION)
7
- VERSION = '1.3.0'
7
+ VERSION = '1.3.1'
8
8
  BINARY = File.expand_path(File.dirname(__FILE__) + '/../../bin/cucumber')
9
9
  LIBDIR = File.expand_path(File.dirname(__FILE__) + '/../../lib')
10
10
  JRUBY = defined?(JRUBY_VERSION)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aslak Hellesøy
@@ -913,6 +913,6 @@ rubyforge_project:
913
913
  rubygems_version: 2.0.3
914
914
  signing_key:
915
915
  specification_version: 4
916
- summary: cucumber-1.3.0
916
+ summary: cucumber-1.3.1
917
917
  test_files: []
918
918
  has_rdoc: