appium_lib 0.5.3 → 0.5.4

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,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  module Appium
3
3
  # Version and Date are defined on the 'Appium' module, not 'Appium::Common'
4
- VERSION = '0.5.3' unless defined? ::Appium::VERSION
5
- DATE = '2013-05-24' unless defined? ::Appium::DATE
4
+ VERSION = '0.5.4' unless defined? ::Appium::VERSION
5
+ DATE = '2013-05-28' unless defined? ::Appium::DATE
6
6
  end
@@ -249,7 +249,9 @@ module Appium
249
249
  # Converts environment variable APP_PATH to an absolute path.
250
250
  # @return [String] APP_PATH as an absolute path
251
251
  def absolute_app_path
252
- raise 'APP_PATH environment variable not set!' if @app_path.nil? || @app_path.empty?
252
+ raise 'APP_PATH not set!' if @app_path.nil? || @app_path.empty?
253
+ # Sauce storage API. http://saucelabs.com/docs/rest#storage
254
+ return @app_path if @app_path.start_with? 'sauce-storage:'
253
255
  return @app_path if @app_path.match(/^http/) # public URL for Sauce
254
256
  if @app_path.match(/^\//) # absolute file path
255
257
  raise "App doesn't exist. #{@app_path}" unless File.exist? @app_path
@@ -431,4 +433,4 @@ end # end module Appium
431
433
  # Paging in Pry is annoying :q required to exit.
432
434
  # With pager disabled, the output is similar to IRB
433
435
  # Only set if Pry is defined.
434
- Pry.config.pager = false if defined?(Pry)
436
+ Pry.config.pager = false if defined?(Pry)
@@ -1,3 +1,10 @@
1
+ #### v0.5.3 2013-05-24
2
+
3
+ - [b24565d](https://github.com/appium/ruby_lib/commit/b24565df67d4f0468ab5e3c1a700711a4c82b80d) Release 0.5.3
4
+ - [5c7169a](https://github.com/appium/ruby_lib/commit/5c7169ae5fecc9adf0bd0a8f7fc6aea5a90495a2) Update appium_lib.gemspec
5
+ - [1a03758](https://github.com/appium/ruby_lib/commit/1a03758dede749f9fd23f00db1be9199c159a6c8) Update readme.md
6
+
7
+
1
8
  #### v0.5.2 2013-05-24
2
9
 
3
10
  - [44ffbcb](https://github.com/appium/ruby_lib/commit/44ffbcb4715c8caac2770972c72ca498e751be34) Release 0.5.2
metadata CHANGED
@@ -1,18 +1,20 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appium_lib
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - code@bootstraponline.com
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2013-05-24 00:00:00.000000000 Z
12
+ date: 2013-05-28 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: selenium-webdriver
15
16
  requirement: !ruby/object:Gem::Requirement
17
+ none: false
16
18
  requirements:
17
19
  - - ~>
18
20
  - !ruby/object:Gem::Version
@@ -20,6 +22,7 @@ dependencies:
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
23
26
  requirements:
24
27
  - - ~>
25
28
  - !ruby/object:Gem::Version
@@ -27,6 +30,7 @@ dependencies:
27
30
  - !ruby/object:Gem::Dependency
28
31
  name: awesome_print
29
32
  requirement: !ruby/object:Gem::Requirement
33
+ none: false
30
34
  requirements:
31
35
  - - ~>
32
36
  - !ruby/object:Gem::Version
@@ -34,6 +38,7 @@ dependencies:
34
38
  type: :runtime
35
39
  prerelease: false
36
40
  version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
37
42
  requirements:
38
43
  - - ~>
39
44
  - !ruby/object:Gem::Version
@@ -41,6 +46,7 @@ dependencies:
41
46
  - !ruby/object:Gem::Dependency
42
47
  name: json
43
48
  requirement: !ruby/object:Gem::Requirement
49
+ none: false
44
50
  requirements:
45
51
  - - ~>
46
52
  - !ruby/object:Gem::Version
@@ -48,6 +54,7 @@ dependencies:
48
54
  type: :runtime
49
55
  prerelease: false
50
56
  version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
51
58
  requirements:
52
59
  - - ~>
53
60
  - !ruby/object:Gem::Version
@@ -55,6 +62,7 @@ dependencies:
55
62
  - !ruby/object:Gem::Dependency
56
63
  name: toml
57
64
  requirement: !ruby/object:Gem::Requirement
65
+ none: false
58
66
  requirements:
59
67
  - - ~>
60
68
  - !ruby/object:Gem::Version
@@ -62,6 +70,7 @@ dependencies:
62
70
  type: :runtime
63
71
  prerelease: false
64
72
  version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
65
74
  requirements:
66
75
  - - ~>
67
76
  - !ruby/object:Gem::Version
@@ -69,6 +78,7 @@ dependencies:
69
78
  - !ruby/object:Gem::Dependency
70
79
  name: rake
71
80
  requirement: !ruby/object:Gem::Requirement
81
+ none: false
72
82
  requirements:
73
83
  - - ~>
74
84
  - !ruby/object:Gem::Version
@@ -76,6 +86,7 @@ dependencies:
76
86
  type: :development
77
87
  prerelease: false
78
88
  version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
79
90
  requirements:
80
91
  - - ~>
81
92
  - !ruby/object:Gem::Version
@@ -121,26 +132,30 @@ files:
121
132
  homepage: https://github.com/appium/ruby_lib
122
133
  licenses:
123
134
  - http://www.apache.org/licenses/LICENSE-2.0.txt
124
- metadata: {}
125
135
  post_install_message:
126
136
  rdoc_options: []
127
137
  require_paths:
128
138
  - lib
129
139
  required_ruby_version: !ruby/object:Gem::Requirement
140
+ none: false
130
141
  requirements:
131
142
  - - ! '>='
132
143
  - !ruby/object:Gem::Version
133
144
  version: 1.9.3
134
145
  required_rubygems_version: !ruby/object:Gem::Requirement
146
+ none: false
135
147
  requirements:
136
148
  - - ! '>='
137
149
  - !ruby/object:Gem::Version
138
150
  version: '0'
151
+ segments:
152
+ - 0
153
+ hash: -586570685424958921
139
154
  requirements: []
140
155
  rubyforge_project:
141
- rubygems_version: 2.0.3
156
+ rubygems_version: 1.8.25
142
157
  signing_key:
143
- specification_version: 4
158
+ specification_version: 3
144
159
  summary: Ruby library for Appium
145
160
  test_files: []
146
161
  has_rdoc:
checksums.yaml DELETED
@@ -1,15 +0,0 @@
1
- ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- MmJhYmU0NmExNzBjNzliZjQ0MmU3Zjc0MGI3Nzg5MGQ0M2Y1M2Q3Yg==
5
- data.tar.gz: !binary |-
6
- MzBkOGEzMWE0ZGI2YTYyNWE4NzJkN2NmOTg1NDQ4MzQ4YzYwYmI3Mw==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- MTE3OThmMjVmMmY4NmY4ZDJlNWM0OTkxNWYyZDk2ZmFlZjE1MzQ0MjdmMTE3
10
- NGI3ZjhkYWYyYjdiMWQ5MmY5MDIyNjI3ZTk0Yzc4M2E2MTI3MDE3NWQzNGE2
11
- ZmI0NTAwMmUwNDNhMzk2MjNiMzI2ZGQ5YWMxNTE3M2E2NmVjNGI=
12
- data.tar.gz: !binary |-
13
- NmEyNzlmYzQ0NGViNjViNWMwM2Q5NTQ4MjA0N2Y3NzVhYmJiNzJkM2Q3ZTY5
14
- NWUzMDU0ZDVhYmZlM2YzYzU2OTkxMTZkM2I3ZGFkODZhOGVhOTZjZDcxNmJh
15
- YWRlYTUwZjJlNzQ5NGMxNGZiNTI0MTE2MWI0NWE2N2I4YzE4NzQ=