calabash-extras 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.
- data/Gemfile.lock +1 -1
- data/calabash-extras.gemspec +1 -1
- data/lib/{android_runner.rb → calabash-extras/android_runner.rb} +0 -0
- data/lib/{application_handler.rb → calabash-extras/application_handler.rb} +2 -2
- data/lib/{ios_runner.rb → calabash-extras/ios_runner.rb} +0 -0
- data/lib/{page_object_comparator.rb → calabash-extras/page_object_comparator.rb} +0 -0
- data/lib/{test_case.rb → calabash-extras/test_case.rb} +1 -1
- data/lib/{walker.rb → calabash-extras/walker.rb} +0 -0
- data/test/page_object_comparator_test.rb +1 -1
- data/test/walker_test.rb +2 -2
- metadata +8 -8
data/Gemfile.lock
CHANGED
data/calabash-extras.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = 'calabash-extras'
|
|
3
|
-
spec.version = '0.0.
|
|
3
|
+
spec.version = '0.0.2'
|
|
4
4
|
spec.authors = ['Sergey Galkin']
|
|
5
5
|
spec.email = ['sergey@galkin.me']
|
|
6
6
|
spec.description = %q{TestCase and page traversal tool for writing xunit tests for Android and Ios apps}
|
|
File without changes
|
|
@@ -25,10 +25,10 @@ module Calabash
|
|
|
25
25
|
def start_device
|
|
26
26
|
case @conf['os']
|
|
27
27
|
when 'android'
|
|
28
|
-
require 'android_runner'
|
|
28
|
+
require 'calabash-extras/android_runner'
|
|
29
29
|
@@device = Calabash::Extras::AndroidRunner.new(@conf['android'])
|
|
30
30
|
when 'ios'
|
|
31
|
-
require 'ios_runner'
|
|
31
|
+
require 'calabash-extras/ios_runner'
|
|
32
32
|
@@device = Calabash::Extras::IosRunner.new(@conf['ios'])
|
|
33
33
|
else
|
|
34
34
|
raise 'Unsupported os type: "%s"' % @conf['os']
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/test/walker_test.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: calabash-extras
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-
|
|
12
|
+
date: 2014-03-03 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -104,12 +104,12 @@ files:
|
|
|
104
104
|
- README.md
|
|
105
105
|
- Rakefile
|
|
106
106
|
- calabash-extras.gemspec
|
|
107
|
-
- lib/android_runner.rb
|
|
108
|
-
- lib/application_handler.rb
|
|
109
|
-
- lib/ios_runner.rb
|
|
110
|
-
- lib/page_object_comparator.rb
|
|
111
|
-
- lib/test_case.rb
|
|
112
|
-
- lib/walker.rb
|
|
107
|
+
- lib/calabash-extras/android_runner.rb
|
|
108
|
+
- lib/calabash-extras/application_handler.rb
|
|
109
|
+
- lib/calabash-extras/ios_runner.rb
|
|
110
|
+
- lib/calabash-extras/page_object_comparator.rb
|
|
111
|
+
- lib/calabash-extras/test_case.rb
|
|
112
|
+
- lib/calabash-extras/walker.rb
|
|
113
113
|
- test/page_object_comparator_test.rb
|
|
114
114
|
- test/walker_test.rb
|
|
115
115
|
homepage:
|