pigspec 0.0.5 → 0.0.6

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 208d740c894defd31ca2d2676ea9cefa0db09408
4
- data.tar.gz: 30024c138ed78cd9dfa9aa88e5f701a5abe9e407
3
+ metadata.gz: 2052e77573cb0ffe2219065466cd794acd6717c7
4
+ data.tar.gz: 33245bb7b47d1468c1829b8778db76f469ce6ec0
5
5
  SHA512:
6
- metadata.gz: c4697ee7aa6edee7d9f8cecc4695e58c550a01dd991bada4aa1d50586a24a5ebbd1f8e924ca534396b8385255617c9f2da41fa907996af3cea599ca2162167c8
7
- data.tar.gz: 694b32e7286010429e9877343ac30eca05b15814b7d6360dcd6f81b323037837338ba7cba939b0af254ae27e476e2ca2e7334e2c43ae0e63f051b61c02025bf9
6
+ metadata.gz: c1f03b07a03297e0ec463f71d3965472cdf4f03ff7d85af86a829985aa48ca6c8c2f7af46bb21bc3d3943ff25d0c72767eccbc21a839e33d2f855140668ee744
7
+ data.tar.gz: 923084c10aece6677bc88682c193c4958ae8902d8c53c453d113b41a260dc93a27f3a50ce754f121b0ba6a9bdd78efab55ee38d1a24e757c9b805e1d65c653ce
@@ -72,7 +72,7 @@ module PigSpec
72
72
  Rjb.add_classpath(pig_path)
73
73
  Rjb.add_classpath(pigunit_path)
74
74
 
75
- Rjb.load '.', options.map { |k, v| "-D#{k}=#{v}" }
75
+ Rjb.load '.', options
76
76
 
77
77
  Rjb.add_jar(pig_path)
78
78
  Rjb.add_jar(pigunit_path)
@@ -1,4 +1,4 @@
1
1
  # PigSpec version constant
2
2
  module PigSpec
3
- VERSION = '0.0.5'
3
+ VERSION = '0.0.6'
4
4
  end
data/lib/pigspec.rb CHANGED
@@ -100,7 +100,7 @@ module_function
100
100
  def pig(
101
101
  pig_path = File.join(ENV['PIG_HOME'], 'pig.jar'),
102
102
  pigunit_path = File.join(ENV['PIG_HOME'], 'pigunit.jar'),
103
- options = { 'file.encoding' => 'UTF-8' }, &block
103
+ options = ['-Dfile.encoding=UTF-8'], &block
104
104
  )
105
105
  test = Test.new
106
106
  test.setup(pig_path, pigunit_path, options)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pigspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - shiracha