Skip to content

Commit

Permalink
fix appium issues related to xcode 8.2 eremoving instrument support
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Owen committed Mar 15, 2017
1 parent 8aa4d98 commit 282b535
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 35 deletions.
2 changes: 1 addition & 1 deletion sample-code/examples/ruby/Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source 'https://www.rubygems.org'

gem 'appium_lib', '~> 6.0.0'
gem 'appium_lib', '~> 9.0.0'
gem 'rest-client', '~> 1.6.7'
gem 'rspec', '~> 2.14.1'
gem 'cucumber', '~> 1.3.15'
Expand Down
61 changes: 28 additions & 33 deletions sample-code/examples/ruby/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,44 +1,38 @@
GEM
remote: https://www.rubygems.org/
specs:
appium_lib (3.0.3)
awesome_print (= 1.2)
json (~> 1.8, >= 1.8.1)
nokogiri (~> 1.6.1)
selenium-webdriver (~> 2.41, >= 2.41.0)
toml (~> 0.0, >= 0.0.4)
awesome_print (1.2)
blankslate (2.1.2.4)
builder (3.2.2)
childprocess (0.5.5)
appium_lib (9.0.0)
awesome_print (~> 1.6)
json (~> 1.8)
nokogiri (~> 1.6, >= 1.6.6)
selenium-webdriver (~> 2.50)
tomlrb (~> 1.1)
awesome_print (1.7.0)
builder (3.2.3)
childprocess (0.6.2)
ffi (~> 1.0, >= 1.0.11)
chronic_duration (0.10.6)
numerizer (~> 0.1.1)
cucumber (1.3.18)
cucumber (1.3.20)
builder (>= 2.1.2)
diff-lcs (>= 1.1.3)
gherkin (~> 2.12)
multi_json (>= 1.7.5, < 2.0)
multi_test (>= 0.1.1)
diff-lcs (1.2.5)
ffi (1.9.6)
multi_test (>= 0.1.2)
diff-lcs (1.3)
ffi (1.9.18)
gherkin (2.12.2)
multi_json (~> 1.3)
json (1.8.2)
json (1.8.6)
mime-types (1.25.1)
mini_portile (0.6.2)
multi_json (1.10.1)
multi_test (0.1.1)
nokogiri (1.6.6.2)
mini_portile (~> 0.6.0)
mini_portile2 (2.1.0)
multi_json (1.12.1)
multi_test (0.1.2)
nokogiri (1.7.0.1)
mini_portile2 (~> 2.1.0)
numerizer (0.1.1)
parslet (1.5.0)
blankslate (~> 2.0)
rdoc (4.2.0)
json (~> 1.4)
rest-client (1.6.8)
rest-client (1.6.9)
mime-types (~> 1.16)
rdoc (>= 2.4.2)
rspec (2.14.1)
rspec-core (~> 2.14.0)
rspec-expectations (~> 2.14.0)
Expand All @@ -47,31 +41,32 @@ GEM
rspec-expectations (2.14.5)
diff-lcs (>= 1.1.3, < 2.0)
rspec-mocks (2.14.6)
rubyzip (1.1.7)
rubyzip (1.2.1)
sauce_whisk (0.0.13)
json (~> 1.8.1)
rest-client (~> 1.6.7)
selenium-webdriver (2.44.0)
selenium-webdriver (2.53.4)
childprocess (~> 0.5)
multi_json (~> 1.0)
rubyzip (~> 1.0)
websocket (~> 1.0)
spec (5.3.4)
chronic_duration (~> 0.10.2)
test-unit (2.5.5)
toml (0.1.2)
parslet (~> 1.5.0)
websocket (1.2.1)
tomlrb (1.2.3)
websocket (1.2.4)

PLATFORMS
ruby

DEPENDENCIES
appium_lib (~> 3.0.2)
appium_lib (~> 9.0.0)
cucumber (~> 1.3.15)
rest-client (~> 1.6.7)
rspec (~> 2.14.1)
rspec-expectations (~> 2.14.5)
sauce_whisk (~> 0.0.13)
spec (~> 5.3.4)
test-unit (~> 2.5.5)

BUNDLED WITH
1.14.6
3 changes: 2 additions & 1 deletion sample-code/examples/ruby/simple_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@
desired_caps = {
caps: {
platformName: 'iOS',
versionNumber: '8.1',
versionNumber: '10.2',
deviceName: 'iPhone 6',
app: APP_PATH,
automationName: "XCUITest"
},
appium_lib: {
sauce_username: nil, # don't run on Sauce
Expand Down

0 comments on commit 282b535

Please sign in to comment.