dex2jar 0.0.2 → 0.0.3

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: 3df2830113b90e6ba9d169c1d801e33598384a33
4
- data.tar.gz: 9ae3b10d0e31934aaf1d12775f79bb1101ed1dfa
3
+ metadata.gz: 931433e351239f6967c3cdef484e58f20dd8e660
4
+ data.tar.gz: 761ed9ab6cebc854ae9905ae1d7d6955e2f7b848
5
5
  SHA512:
6
- metadata.gz: da3988145665784569899fc5ac48087df46c84b815142cb77fdd4f72d51465285c2fe404ba1c549fa985fad7cfde7faefba09816dbc8e0c85e5a80a4e69dfe39
7
- data.tar.gz: d92189850eb758dc7188753e4b736cf6806441d4fcce15f987c9db6ac4ce47a29708ddce909bcef28b5ae1a2e6cbe734000e05917c178d5e234196880ffe876e
6
+ metadata.gz: 68591650f8bab24ae978718d91b1bb7d95502cb83ee4858c3013795f47b9261507aa9266e09020e2f8004dc12acc8c9c1a23a8adc25d70e70643ad337cd9fd15
7
+ data.tar.gz: e19b646620e97f31edcb58506cfb645137887c8ee289136568fdf3a8e76cd773451b9301e1e460a11f54fcee6aa313bd0b81fbaabf65f74172e0b8f4b0f3dd75
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![Build Status](https://travis-ci.org/ssmiech/dex2jar.svg?branch=master)](https://travis-ci.org/ssmiech/dex2jar.svg?branch=master)
1
+ [![Build Status](https://travis-ci.org/ssmiech/dex2jar.svg?branch=master)](https://travis-ci.org/ssmiech/dex2jar)
2
2
  [![Coverage Status](https://coveralls.io/repos/ssmiech/dex2jar/badge.png)](https://coveralls.io/r/ssmiech/dex2jar)
3
3
  # Dex2jar
4
4
 
@@ -7,6 +7,6 @@ module Dex2jar
7
7
  end
8
8
 
9
9
  def self.root_path
10
- File.dirname __dir__
10
+ File.dirname __FILE__
11
11
  end
12
12
  end
@@ -1,3 +1,3 @@
1
1
  module Dex2jar
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -15,13 +15,13 @@ describe Dex2jar::Command do
15
15
  it 'executes dex2jar.bat on windows environment' do
16
16
  expect(command).to receive(:windows_environment?).and_return(true)
17
17
 
18
- expect(command.send(:dex2jar_command)).to eql('bin/dex2jar-0.0.9.15/d2j-dex2jar.bat')
18
+ expect(command.send(:dex2jar_command)).to include('bin/dex2jar-0.0.9.15/d2j-dex2jar.bat')
19
19
  end
20
20
 
21
21
  it 'executes dex2jar.sh on unix environment' do
22
22
  expect(command).to receive(:windows_environment?).and_return(false)
23
23
 
24
- expect(command.send(:dex2jar_command)).to eql('bin/dex2jar-0.0.9.15/d2j-dex2jar.sh')
24
+ expect(command.send(:dex2jar_command)).to include('bin/dex2jar-0.0.9.15/d2j-dex2jar.sh')
25
25
  end
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dex2jar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Slawomir Smiechura