rubotium 0.0.1 → 0.0.2

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: a668e6a758f73295484b33a8bb12d7787ace3669
4
- data.tar.gz: 32bb1aedd3650eadb296d6cbe3c8030d85cbe013
3
+ metadata.gz: 10c1b1c9fe24a60628e1d733d2f7d5918c8f9f99
4
+ data.tar.gz: 2cf29b67d928011a428bc5e8201f0d642ebcd71d
5
5
  SHA512:
6
- metadata.gz: e803e2b146f3654ef5b790f6e4c989b66afaf5aefd172c37c5c03b68ba43014d56ce1b7bd68af8123d84431d5fb953c2b895b4bd1c2f4f4a4c6294a99dd5987f
7
- data.tar.gz: 999a97ea8be422f305648034fc05eab2dac5a12210bac25f1f7e0bb67c887d812773df18b75b75d00a890625cbf068a1847a54633877076aa9185fea4c268ae9
6
+ metadata.gz: 9d59688e826e4fc69997b7fe721a97c474d618b5200b94f1a5ccab380fae101e25d9c562b186f8bd6e725ee59ade02830578d708eb4b1c11dd4aabafc8cd920d
7
+ data.tar.gz: c575b257dfc780d3f693e686c76aa1b38e88b4dfef79e8567934abaa083e4440d560d9a2ec8252627447d10121c2accd4b9375204db89f13c13d74de3b60191f
data/README.md CHANGED
@@ -10,6 +10,9 @@ This is an Android's Instrumentation test runner. It's in quite early phase but
10
10
 
11
11
  gem install rubotium
12
12
 
13
+ ## Requirements:
14
+ Installed android SDK with `aapt` in your PATH
15
+ Installed `java` with `javap` in your PATH
13
16
  ## Usage
14
17
 
15
18
  $ rubotium -t <path_to_tests.apk> -a <path_to_application.apk> -r <instrumentation_test_runner>
@@ -30,7 +30,7 @@ module Rubotium
30
30
  raise(NoTestSuiteError, "Please setup test suite before running tests") if testsuite.nil?
31
31
  puts "Running tests"
32
32
  testsuite.each{|runable_test|
33
- @results[runable_test.package_name] = []
33
+ @results[runable_test.package_name] = [] if(@results[runable_test.package_name].nil?)
34
34
  puts runable_test.name
35
35
  run_count = 0
36
36
  puts "TEST: #{runable_test.name}"
@@ -1,3 +1,3 @@
1
1
  module Rubotium
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubotium
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Slawomir Smiechura
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-17 00:00:00.000000000 Z
11
+ date: 2014-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler