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.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- calabash-extras (0.0.1)
4
+ calabash-extras (0.0.2)
5
5
  PriorityQueue
6
6
  calabash-android
7
7
  calabash-cucumber
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'calabash-extras'
3
- spec.version = '0.0.1'
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}
@@ -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']
@@ -1,6 +1,6 @@
1
1
  require 'test/unit'
2
2
  require 'yaml'
3
- require 'application_handler'
3
+ require 'calabash-extras/application_handler'
4
4
 
5
5
  module Calabash
6
6
  module Extras
@@ -1,5 +1,5 @@
1
1
  require 'test/unit'
2
- require 'page_object_comparator'
2
+ require 'calabash-extras/page_object_comparator'
3
3
 
4
4
  class PageObjectComparatorTest < Test::Unit::TestCase
5
5
 
@@ -1,6 +1,6 @@
1
1
  require 'test/unit'
2
- require 'walker'
3
- require 'page_object_comparator'
2
+ require 'calabash-extras/walker'
3
+ require 'calabash-extras/page_object_comparator'
4
4
 
5
5
  class WalkerTest < Test::Unit::TestCase
6
6
 
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.1
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-02-28 00:00:00.000000000 Z
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: