appium_console 0.5.9 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 34347313bd6e6996cddb3611befdd66e0dadd155
4
- data.tar.gz: 5af70b219063429fb3d41aca295c593e0fba1dbb
3
+ metadata.gz: 14b739b8f2a86dd8ebe0f15835de9961118ed415
4
+ data.tar.gz: 64171fb89e9fbcb2a11760e733a52eb4073aa23b
5
5
  SHA512:
6
- metadata.gz: c83f50b9939e0c7ced5181109813bd8cca5939061728a8b7ea7d9622a5478bc830221d6bc93056d58949503fd5d876ffb66c70a791c67c847cc52a035926c907
7
- data.tar.gz: 79443980a319c32d4f9717b791cf113f23465c66f34c253f55f5d9d2f91e69cee578f2401ec3a3d8d6fc9fbcd3149acfc375e2297078d9f2b859e8aabb6ecbb8
6
+ metadata.gz: e8b75844e4d893c3f84dd007473ec18736909c299b264c530d5248708ec8b0e3897ee4aa60ce007a450d4089aff8edbb1bef39fe0b16dfb075b4bb3cd200d01d
7
+ data.tar.gz: 63d9b8b20ba8659c28a91261e7f0b9a6ca43eaa9b02cfa6ce1fd0e838233d4086ff5256d8c97d15001ba4497c8034b16ec969db546676eded664c852292e9c90
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
27
27
  s.add_runtime_dependency 'appium_lib', '>= 0.6.3'
28
28
  s.add_runtime_dependency 'pry', '~> 0.9.12.5'
29
29
  s.add_runtime_dependency 'bond', '~> 0.5.0'
30
- s.add_runtime_dependency 'spec', '~> 5.0.19'
30
+ s.add_runtime_dependency 'spec', '>= 5.3.3'
31
31
  s.add_development_dependency 'rake', '~> 10.1.0'
32
32
  s.add_development_dependency 'posix-spawn', '~> 0.3.8'
33
33
 
@@ -1,38 +1,51 @@
1
1
  # encoding: utf-8
2
2
  require 'rubygems'
3
- Gem::Specification.class_eval { def self.warn( args ); end }
3
+
4
+ # Silence gem warnings
5
+ Gem::Specification.class_eval do
6
+ def self.warn args
7
+ end
8
+ end
9
+
4
10
  require 'pry'
5
11
 
6
- module Appium; end unless defined? Appium
12
+ Pry.send(:define_singleton_method, :pry_load_appium_txt) do |opts={}|
13
+ verbose = opts.fetch :verbose, false
14
+ Appium.load_appium_txt file: Dir.pwd + '/appium.txt', verbose: verbose
15
+ end
7
16
 
8
- def define_reload
9
- Pry.send(:define_singleton_method, :reload) do
10
- files = load_appium_txt file: Dir.pwd + '/appium.txt'
11
- files.each do |file|
12
- # If a page obj is deleted then load will error.
13
- begin
14
- load file
15
- rescue # LoadError: cannot load such file
16
- end
17
+ Pry.send(:define_singleton_method, :reload) do
18
+ parsed = Pry.pry_load_appium_txt
19
+ return unless parsed && parsed[:appium_lib] && parsed[:appium_lib][:requires]
20
+ requires = parsed[:appium_lib][:requires]
21
+ requires.each do |file|
22
+ # If a page obj is deleted then load will error.
23
+ begin
24
+ load file
25
+ rescue # LoadError: cannot load such file
17
26
  end
18
27
  end
19
- nil
20
28
  end
21
29
 
22
- module Appium::Console
23
- require 'appium_lib'
24
- AwesomePrint.pry!
25
- to_require = load_appium_txt file: Dir.pwd + '/appium.txt', verbose: true
30
+ module Appium
31
+ module Console
32
+ require 'appium_lib'
33
+ AwesomePrint.pry!
34
+ start = File.expand_path '../start.rb', __FILE__
35
+ cmd = ['-r', start]
26
36
 
27
- start = File.expand_path '../start.rb', __FILE__
28
- cmd = ['-r', start]
37
+ parsed = Pry.pry_load_appium_txt verbose: true
38
+ has_requires = parsed && parsed[:appium_lib] && parsed[:appium_lib][:requires]
39
+ if has_requires
40
+ requires = parsed[:appium_lib][:requires]
29
41
 
30
- if to_require && !to_require.empty?
31
- define_reload
32
- load_files = to_require.map { |f| %(require "#{f}";) }.join "\n"
33
- cmd += [ '-e', load_files ]
34
- end
42
+ if !requires.empty?
43
+ load_files = requires.map { |f| %(require "#{f}";) }.join "\n"
44
+ cmd += ['-e', load_files]
45
+ end
35
46
 
36
- $stdout.puts "pry #{cmd.join(' ')}"
37
- Pry::CLI.parse_options cmd
38
- end # module Appium::Console
47
+ $stdout.puts "pry #{cmd.join(' ')}"
48
+ end
49
+ Pry::CLI.parse_options cmd
50
+ end
51
+ end
@@ -2,6 +2,6 @@
2
2
  # Define Appium module so version can be required directly.
3
3
  module Appium; end unless defined? Appium
4
4
  module Appium::Console
5
- VERSION = '0.5.9' unless defined? ::Appium::Console::VERSION
6
- DATE = '2014-01-28' unless defined? ::Appium::Console::DATE
5
+ VERSION = '0.6.0' unless defined? ::Appium::Console::VERSION
6
+ DATE = '2014-04-22' unless defined? ::Appium::Console::DATE
7
7
  end
@@ -2,7 +2,13 @@
2
2
  require 'rubygems'
3
3
  require 'appium_lib'
4
4
 
5
- Appium::Driver.new(export_session: true).start_driver if $driver.nil?
5
+ if $driver.nil?
6
+ opts = Pry.pry_load_appium_txt
7
+ # override command timeout so the server doesn't shut down after 60 seconds
8
+ new_command_timeout = { caps: { newCommandTimeout: 999_999 }.merge(opts[:caps] || {}) }
9
+ opts = opts.merge(new_command_timeout)
10
+ Appium::Driver.new(opts).start_driver
11
+ end
6
12
 
7
13
  # Load minitest
8
14
  begin
data/osx.md CHANGED
@@ -11,7 +11,7 @@ Changes to these instructions might imply changes to that script as well.
11
11
 
12
12
  #### Steps to install
13
13
 
14
- Install `Xcode` 4.6.3 (iOS 6) or 5.0.0 (iOS 7).
14
+ Install `Xcode` 4.6.3 (iOS 6) or 5.0.2 (iOS 7).
15
15
 
16
16
  - Xcode 5.0.0 shouldn't be used for iOS 6 as it's flaky.
17
17
  - Xcode 5.0.1 is broken.
@@ -20,7 +20,7 @@ Install `Xcode` 4.6.3 (iOS 6) or 5.0.0 (iOS 7).
20
20
  After that, install the command line build tools (Xcode -> Preferences -> Downloads).
21
21
 
22
22
  If you're testing iOS 6, then install `Xcode 4.6.3` from [Apple](https://developer.apple.com/downloads/index.action).
23
- For iOS 7+ make sure to use Xcode 5.
23
+ For iOS 7+ make sure to use Xcode 5.0.2.
24
24
 
25
25
  That done, you'll need to create a symlink for
26
26
  `gcc` to get the ruby build (particularly FFI) to install properly. This isn't required on OS X 10.9.
@@ -123,13 +123,13 @@ grunt v0.4.1
123
123
  ```
124
124
 
125
125
  - Install [ant](http://ant.apache.org/) if it's not already installed.
126
- - Install [maven 3.0.5](http://maven.apache.org/download.cgi) if it's not already installed. Do not use maven 3.1.1.
126
+ - Install [maven 3.1.1 or better](http://maven.apache.org/download.cgi) if it's not already installed. Old maven will not work.
127
127
 
128
128
  ```
129
129
  $ ant -version
130
130
  Apache Ant(TM) version 1.8.2 compiled on June 20 2012
131
131
  $ mvn -version
132
- Apache Maven 3.0.3 (r1075438; 2011-02-28 12:31:09-0500)
132
+ Apache Maven 3.1.1 (0728685237757ffbf44136acec0402957f723d9a; 2013-09-17 11:22:22-0400)
133
133
  ```
134
134
 
135
135
  - Clone appium
@@ -155,7 +155,7 @@ If npm is having issues, you may have to disable https. I don't recommend this,
155
155
 
156
156
  - Start appium.
157
157
 
158
- `node server.js`
158
+ `node .`
159
159
 
160
160
 
161
161
  #### Bash Profile
data/readme.md CHANGED
@@ -16,9 +16,11 @@ gem update bundler
16
16
  ```bash
17
17
  gem uninstall -aIx appium_lib ;\
18
18
  gem uninstall -aIx appium_console ;\
19
- gem install --no-rdoc --no-ri appium_console
19
+ gem install --no-rdoc --no-ri appium_console bond
20
20
  ```
21
21
 
22
+ The bond gem is necessary for proper auto complete. Installing it will fix this error `NameError: uninitialized constant Pry::BondCompleter::Bond`
23
+
22
24
  If `appium_console` is already installed, run `arc upgrade` to automatically update.
23
25
 
24
26
  #### Update Appium
@@ -1,5 +1,14 @@
1
1
  #### v0.5.8 2014-01-27
2
2
 
3
+ - [d7ed421](https://github.com/appium/ruby_console/commit/d7ed421772e94a82a8668b26dd29fa7c180b7ef0) Release 0.5.9
4
+ - [c4ce770](https://github.com/appium/ruby_console/commit/c4ce770815122fba4fe0d4fbbc02d0f594811423) Update appium_console.gemspec
5
+ - [2797c2c](https://github.com/appium/ruby_console/commit/2797c2c52ae48cc7d4ee0403e08acc54d1664394) Use pry 0.9.12.4
6
+ - [0d49700](https://github.com/appium/ruby_console/commit/0d49700ecc2f4951f2bfae46598da69a87984042) Clean up tags
7
+ - [23192f9](https://github.com/appium/ruby_console/commit/23192f9333c656d4fb8701e0a3310c72002e0daf) Clean up release notes generation
8
+
9
+
10
+ #### v0.5.7 2013-11-25
11
+
3
12
  - [28663d7](https://github.com/appium/ruby_console/commit/28663d7c6615f2cf135934fca661138aa5b274b1) Release 0.5.8
4
13
  - [a8d19b1](https://github.com/appium/ruby_console/commit/a8d19b12d7f913b6e6b59c920c80662d2d5c2062) Update reload to support new files
5
14
  - [9baad04](https://github.com/appium/ruby_console/commit/9baad04e4ed78927bbe4b24f86e1b063087d002f) Add RVM note to docs
@@ -10,13 +19,13 @@
10
19
  - [26385c2](https://github.com/appium/ruby_console/commit/26385c28c49070614a10fc146624513e4802820f) Rescue load errors
11
20
 
12
21
 
13
- #### v0.5.7 2013-11-25
22
+ #### v0.5.6 2013-11-18
14
23
 
15
24
  - [d1580ac](https://github.com/appium/ruby_console/commit/d1580acc99b7d7f17b6963f5c96b353a076fac37) Release 0.5.7
16
25
  - [9a7c6d6](https://github.com/appium/ruby_console/commit/9a7c6d610b77df629f5bc2b2357e190775f57946) Rescue load errors
17
26
 
18
27
 
19
- #### v0.5.6 2013-11-18
28
+ #### v0.5.5 2013-08-23
20
29
 
21
30
  - [ce14efa](https://github.com/appium/ruby_console/commit/ce14efa1bb139a2f8a8f391d28588376757739bc) Release 0.5.6
22
31
  - [e6ee1f5](https://github.com/appium/ruby_console/commit/e6ee1f5704ceb5358997af77dc43c4bc401e204e) Add "reload" command
@@ -52,19 +61,19 @@
52
61
  - [afcb37f](https://github.com/appium/ruby_console/commit/afcb37f1b9951ff2caa41f2a4c802ee2b7ebcf16) Update to API 18
53
62
 
54
63
 
55
- #### v0.5.5 2013-08-23
64
+ #### v0.5.4 2013-08-19
56
65
 
57
66
  - [e048325](https://github.com/appium/ruby_console/commit/e04832589c71359fc4c30e45a3da2a04f93fbd66) Release 0.5.5
58
67
  - [fdc7749](https://github.com/appium/ruby_console/commit/fdc7749b7fd074b89643407a1cd4c7ba71ff15f2) Load minitest by default
59
68
 
60
69
 
61
- #### v0.5.4 2013-08-19
70
+ #### v0.5.3 2013-08-07
62
71
 
63
72
  - [97f5c4f](https://github.com/appium/ruby_console/commit/97f5c4f67c8f689f7342336b428262975e3f8421) Release 0.5.4
64
73
  - [54c61b7](https://github.com/appium/ruby_console/commit/54c61b73091cdaef990eb6b1692576c29a2b5325) Enable export session
65
74
 
66
75
 
67
- #### v0.5.3 2013-08-07
76
+ #### v0.5.2 2013-07-26
68
77
 
69
78
  - [595bbe9](https://github.com/appium/ruby_console/commit/595bbe91fd437f95efde7da5a16cf85b0debb4f2) Release 0.5.3
70
79
  - [91b8afc](https://github.com/appium/ruby_console/commit/91b8afcfabb2a2884da343f7f7e7781a6e08da02) Use awesome_print in Pry
@@ -73,7 +82,7 @@
73
82
  - [02850fa](https://github.com/appium/ruby_console/commit/02850faab107e3749334560573061db2ddf034ea) Remove old todo
74
83
 
75
84
 
76
- #### v0.5.2 2013-07-26
85
+ #### v0.5.1 2013-05-24
77
86
 
78
87
  - [0845ddd](https://github.com/appium/ruby_console/commit/0845dddda181f9349a4e1162b3dfea732491a743) Release 0.5.2
79
88
  - [82e83c4](https://github.com/appium/ruby_console/commit/82e83c45fc4af41f0505ac2a00bb6ba2a3689d41) Add Ruby 2.0 notes
@@ -94,14 +103,14 @@
94
103
  - [cce92d9](https://github.com/appium/ruby_console/commit/cce92d9494bbb281aa714be8a39ac0aeaa435372) Add version badge
95
104
 
96
105
 
97
- #### v0.5.1 2013-05-24
106
+ #### v0.5.0 2013-05-24
98
107
 
99
108
  - [3d9aef1](https://github.com/appium/ruby_console/commit/3d9aef1458d0874c5c740faf8e41086ee65da86d) Release 0.5.1
100
109
  - [7242c5e](https://github.com/appium/ruby_console/commit/7242c5e72f9057fd18efa726077f78999e0f53e3) Update appium_console.gemspec
101
110
  - [f9d8b70](https://github.com/appium/ruby_console/commit/f9d8b7031425ab742285e0513520ca17bbbf2cde) Update readme.md
102
111
 
103
112
 
104
- #### v0.5.0 2013-05-24
113
+ #### v0.3.6 2013-05-20
105
114
 
106
115
  - [2734fda](https://github.com/appium/ruby_console/commit/2734fdabed2802e15f161bf81ba56dc51cd76ce3) Release 0.5.0
107
116
  - [b79814c](https://github.com/appium/ruby_console/commit/b79814c1b83c756583038aabe419c6ea81bc41cd) Fix gemspec
@@ -114,7 +123,7 @@
114
123
  - [0bf1dd7](https://github.com/appium/ruby_console/commit/0bf1dd7f517cde84f77f46bcff1fe03aa26f9e95) Update osx.md
115
124
 
116
125
 
117
- #### v0.3.6 2013-05-20
126
+ #### v0.3.5 2013-05-06
118
127
 
119
128
  - [20508c2](https://github.com/appium/ruby_console/commit/20508c2ed00edb3ae1260fe1b0f4b61206658631) Release 0.3.6
120
129
  - [4004daa](https://github.com/appium/ruby_console/commit/4004daa8b388c07599e94c063e327a8e89472980) Fix relative paths
@@ -145,50 +154,50 @@
145
154
  - [bdb9aaa](https://github.com/appium/ruby_console/commit/bdb9aaabe8cd07fc516dc19909fd43323179ea03) Update osx.md
146
155
 
147
156
 
148
- #### v0.3.5 2013-05-06
157
+ #### v0.3.4 2013-04-26
149
158
 
150
159
  - [b031b60](https://github.com/appium/ruby_console/commit/b031b60276b01e86a649cd8db8b250f3d52da9cc) Release 0.3.5
151
160
  - [521639d](https://github.com/appium/ruby_console/commit/521639dc1b53371a472a40304c59e4476ab22197) Add selendroid
152
161
  - [c5456d2](https://github.com/appium/ruby_console/commit/c5456d29d5a1aeed1f1226b90c69a7d0025ad224) Use --local install
153
162
 
154
163
 
155
- #### v0.3.4 2013-04-26
164
+ #### v0.3.3 2013-04-26
156
165
 
157
166
  - [2a621bb](https://github.com/appium/ruby_console/commit/2a621bb1620685577173fdf59daabca036cd30f7) Release 0.3.4
158
167
  - [bd60857](https://github.com/appium/ruby_console/commit/bd60857f39bd17e454a10ad0658c01c20869c33a) Fix arc upgrade
159
168
 
160
169
 
161
- #### v0.3.3 2013-04-26
170
+ #### v0.3.2 2013-04-26
162
171
 
163
172
  - [a4cea5b](https://github.com/appium/ruby_console/commit/a4cea5b9857f5b450ade03cf3f326605b2aff040) Release 0.3.3
164
173
  - [188503c](https://github.com/appium/ruby_console/commit/188503c0f1c884884408896a8351ab34823c5c69) Fix appium.txt support
165
174
 
166
175
 
167
- #### v0.3.2 2013-04-26
176
+ #### v0.3.1 2013-04-26
168
177
 
169
178
  - [521b85e](https://github.com/appium/ruby_console/commit/521b85e570717dc83481e4d2baf0804787031c46) Release 0.3.2
170
179
 
171
180
 
172
- #### v0.3.1 2013-04-26
181
+ #### v0.3.0 2013-04-25
173
182
 
174
183
  - [5e41993](https://github.com/appium/ruby_console/commit/5e41993aa505310b3442b0ea5c8cdf72b01cd62c) Release 0.3.1
175
184
  - [d98d052](https://github.com/appium/ruby_console/commit/d98d052af5e118a099d4abac7c24db41a5ff6974) Fix uninstall
176
185
  - [6b10caa](https://github.com/appium/ruby_console/commit/6b10caa3be482a149e433e8053ccb23c64aa723f) Fix version command
177
186
 
178
187
 
179
- #### v0.3.0 2013-04-25
188
+ #### v0.0.30 2013-04-16
180
189
 
181
190
  - [09ee29c](https://github.com/appium/ruby_console/commit/09ee29c03e4a2222c089f4ab736ec0e0bfa53930) Release 0.3.0
182
191
  - [2f0f38e](https://github.com/appium/ruby_console/commit/2f0f38e86155b41ff49f3419800413589efb19c4) Update for new Appium lib
183
192
  - [1bbc128](https://github.com/appium/ruby_console/commit/1bbc128cd5e7d9cadfc6ff9397179ed38459238e) Remove minitest example
184
193
 
185
194
 
186
- #### v0.0.30 2013-04-16
195
+ #### v0.0.29 2013-04-15
187
196
 
188
197
  - [af1dd74](https://github.com/appium/ruby_console/commit/af1dd74f254c512c9b63a013570638eb13adbe91) Release 0.0.30
189
198
 
190
199
 
191
- #### v0.0.29 2013-04-15
200
+ #### v0.0.28 2013-04-11
192
201
 
193
202
  - [f3251c8](https://github.com/appium/ruby_console/commit/f3251c819e85f5d8fabd3f9a30a3de4307d38098) Release 0.0.29
194
203
  - [83ed1b9](https://github.com/appium/ruby_console/commit/83ed1b9f4a3ca1a3b1eb6770116b0e3d42f39dfa) Update osx.md
@@ -198,7 +207,7 @@
198
207
  - [211fe2e](https://github.com/appium/ruby_console/commit/211fe2ecc681403fa081ff89e7caaf0a97a440c4) Fix notes
199
208
 
200
209
 
201
- #### v0.0.28 2013-04-11
210
+ #### v0.0.27 2013-04-05
202
211
 
203
212
  - [94ae27d](https://github.com/appium/ruby_console/commit/94ae27d54c57f16b45937decfded0cdac9e10160) Release 0.0.28
204
213
  - [8030b11](https://github.com/appium/ruby_console/commit/8030b116ac6b677366a823608fc4de4c68747ecf) Add release notes
@@ -219,12 +228,12 @@
219
228
  - [3f5af60](https://github.com/appium/ruby_console/commit/3f5af6077a872a40314aba9f00b89a519e22b0ba) Update osx.md
220
229
 
221
230
 
222
- #### v0.0.27 2013-04-05
231
+ #### v0.0.26 2013-04-05
223
232
 
224
233
  - [1551adc](https://github.com/appium/ruby_console/commit/1551adc6167b0195d847c14edbc9358f4d23a078) Release 0.0.27
225
234
 
226
235
 
227
- #### v0.0.26 2013-04-05
236
+ #### v0.0.25 2013-03-28
228
237
 
229
238
  - [645578b](https://github.com/appium/ruby_console/commit/645578bed82d11c06ea1e7415d5864edc09e8b31) Release 0.0.26
230
239
  - [d42cfd2](https://github.com/appium/ruby_console/commit/d42cfd228b059202c7b745cb0b69259ce431e04d) Add @keep to cucumber example
@@ -232,19 +241,19 @@
232
241
  - [9d10070](https://github.com/appium/ruby_console/commit/9d10070102c855cb2d5b47bec751c276582c1beb) Update readme.md
233
242
 
234
243
 
235
- #### v0.0.25 2013-03-28
244
+ #### v0.0.24 2013-03-28
236
245
 
237
246
  - [12e40b8](https://github.com/appium/ruby_console/commit/12e40b876136ea987d47f4d419f67d4d8aeaadd5) Release 0.0.25
238
247
 
239
248
 
240
- #### v0.0.24 2013-03-28
249
+ #### v0.0.23 2013-03-27
241
250
 
242
251
  - [c7097e1](https://github.com/appium/ruby_console/commit/c7097e1247c76397196389d2221efc1ae4dac803) Release 0.0.24
243
252
  - [c9a94ea](https://github.com/appium/ruby_console/commit/c9a94ea19890c6b96f5ce4f491d953e651dbf4b9) RubyGems can't detect dependencies properly
244
253
  - [2596610](https://github.com/appium/ruby_console/commit/2596610151f3d939fcc8edc178a65379831095d9) Add name doc
245
254
 
246
255
 
247
- #### v0.0.23 2013-03-27
256
+ #### v0.0.22 2013-03-23
248
257
 
249
258
  - [b9334ff](https://github.com/appium/ruby_console/commit/b9334ff5e5b4070ce0ceff061a07bd57c3386bb3) Release 0.0.23
250
259
  - [62ff36a](https://github.com/appium/ruby_console/commit/62ff36a2224aa6c045efd43520b9f52910d4a2d7) Update readme.md
@@ -258,26 +267,26 @@
258
267
  - [f5e3a5f](https://github.com/appium/ruby_console/commit/f5e3a5f599113d567180768fc79d241d9913184f) Update osx.md
259
268
 
260
269
 
261
- #### v0.0.22 2013-03-23
270
+ #### v0.0.21 2013-03-22
262
271
 
263
272
  - [319554c](https://github.com/appium/ruby_console/commit/319554cc14c34cd981a91ad0e5a84afc574d036e) Release 0.0.22
264
273
  - [e7b4508](https://github.com/appium/ruby_console/commit/e7b45082250c9e17feb4c1529bae634c46580c75) Fix gemspec
265
274
 
266
275
 
267
- #### v0.0.21 2013-03-22
276
+ #### v0.0.20 2013-03-22
268
277
 
269
278
  - [9dc45af](https://github.com/appium/ruby_console/commit/9dc45aff3d369d73b6ed2c3df79cb9845e4fa2eb) Release 0.0.21
270
279
  - [4ad39ca](https://github.com/appium/ruby_console/commit/4ad39caeaafbb58d983adb06b10ca4fc6c962261) Complete rename
271
280
 
272
281
 
273
- #### v0.0.20 2013-03-22
282
+ #### v0.0.19 2013-03-22
274
283
 
275
284
  - [667db43](https://github.com/appium/ruby_console/commit/667db43968c9d584d1fc606c264bc894d08bc74c) Release 0.0.20
276
285
  - [c6b0cad](https://github.com/appium/ruby_console/commit/c6b0cad7b139ecc6f3acaf13c3ae9fdc97254bf8) Update appium_console.gemspec
277
286
  - [f3cfe6f](https://github.com/appium/ruby_console/commit/f3cfe6f835c5cb1c9784c4914ca7555ad82426af) Update readme.md
278
287
 
279
288
 
280
- #### v0.0.19 2013-03-22
289
+ #### v0.0.17 2013-03-21
281
290
 
282
291
  - [217c452](https://github.com/appium/ruby_console/commit/217c452980347c1da0ab1244b58c66076d7b603f) Release 0.0.19
283
292
  - [e77fbf9](https://github.com/appium/ruby_console/commit/e77fbf97f243ecf63b1ff58c49f5fbee0bd71834) Fix gemspec
@@ -294,18 +303,18 @@
294
303
  - [a647bd2](https://github.com/appium/ruby_console/commit/a647bd2c7e3e8e18103317796c57b90df68971a4) Add implicit wait docs
295
304
 
296
305
 
297
- #### v0.0.17 2013-03-21
306
+ #### v0.0.16 2013-03-20
298
307
 
299
308
  - [81f2288](https://github.com/appium/ruby_console/commit/81f2288c9559ae2d1eb893c146e43e7c6455aa29) Release 0.0.17
300
309
  - [6a4f5e6](https://github.com/appium/ruby_console/commit/6a4f5e67c943f08beb8aca599e561e4e7ba4abea) Fix doc
301
310
 
302
311
 
303
- #### v0.0.16 2013-03-20
312
+ #### v0.0.15 2013-03-20
304
313
 
305
314
  - [6548de1](https://github.com/appium/ruby_console/commit/6548de111182df8a6eacf7f2a4f896fb23593ce0) Release 0.0.16
306
315
 
307
316
 
308
- #### v0.0.15 2013-03-20
317
+ #### v0.0.14 2013-03-20
309
318
 
310
319
  - [68b4b80](https://github.com/appium/ruby_console/commit/68b4b8085b95582528fe7769fff3682a88e161da) Release 0.0.15
311
320
  - [e5a4227](https://github.com/appium/ruby_console/commit/e5a4227911880c9ce583bb3914a76f071db03740) Update Rakefile
@@ -317,7 +326,7 @@
317
326
  - [fa9e0a8](https://github.com/appium/ruby_console/commit/fa9e0a86b2d7109991f57e979055b8d26212f23d) Update readme.md
318
327
 
319
328
 
320
- #### v0.0.14 2013-03-20
329
+ #### v0.0.13 2013-03-20
321
330
 
322
331
  - [bb3a695](https://github.com/appium/ruby_console/commit/bb3a69546e6cfa63dc4d71fd77ed1178e75d896b) Release 0.0.14
323
332
  - [cf92263](https://github.com/appium/ruby_console/commit/cf922632cfb8fb2abfe63b4c28d708cb451eff40) Fix app_lib to ruby console version
@@ -334,7 +343,7 @@
334
343
  - [a00c6a9](https://github.com/appium/ruby_console/commit/a00c6a91b53d166afc4b3d2213ef5e44cddee1ad) Update readme.md
335
344
 
336
345
 
337
- #### v0.0.13 2013-03-20
346
+ #### v0.0.12 2013-03-20
338
347
 
339
348
  - [36127e0](https://github.com/appium/ruby_console/commit/36127e0e2250068673d7cff81b6a51c10ef65c7a) Release 0.0.13
340
349
  - [7af75f5](https://github.com/appium/ruby_console/commit/7af75f540043cac96afc4a686204355d4d4fa895) Release 0.0.12
@@ -346,12 +355,12 @@
346
355
  - [433a225](https://github.com/appium/ruby_console/commit/433a2258c3401c13b259ec0faeb5afd5461f142a) Update ruby_console.gemspec
347
356
 
348
357
 
349
- #### v0.0.12 2013-03-20
358
+ #### v0.0.11 2013-03-20
350
359
 
351
360
  - [02d41c7](https://github.com/appium/ruby_console/commit/02d41c7231f3e83fff27ea0463dc6dcf064a2e48) Release 0.0.12
352
361
 
353
362
 
354
- #### v0.0.11 2013-03-20
363
+ ####
355
364
 
356
365
  - [9b4f796](https://github.com/appium/ruby_console/commit/9b4f796b5292025bc7c958f1d1bdd91cebaf3e8e) Release 0.0.11
357
366
  - [59673a5](https://github.com/appium/ruby_console/commit/59673a5891356e2a927cfc3b217765d71596ac78) Bump gemspec
metadata CHANGED
@@ -1,97 +1,97 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appium_console
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.9
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - code@bootstraponline.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-28 00:00:00.000000000 Z
11
+ date: 2014-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: appium_lib
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 0.6.3
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.6.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: pry
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: 0.9.12.5
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: 0.9.12.5
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bond
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: 0.5.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 0.5.0
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: spec
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ~>
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: 5.0.19
61
+ version: 5.3.3
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ~>
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: 5.0.19
68
+ version: 5.3.3
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rake
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ~>
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
75
  version: 10.1.0
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ~>
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: 10.1.0
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: posix-spawn
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ~>
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
89
  version: 0.3.8
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ~>
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: 0.3.8
97
97
  description: Appium Ruby Console.
@@ -102,7 +102,7 @@ executables:
102
102
  extensions: []
103
103
  extra_rdoc_files: []
104
104
  files:
105
- - .gitignore
105
+ - ".gitignore"
106
106
  - Gemfile
107
107
  - LICENSE-2.0.txt
108
108
  - Rakefile
@@ -130,19 +130,18 @@ require_paths:
130
130
  - lib
131
131
  required_ruby_version: !ruby/object:Gem::Requirement
132
132
  requirements:
133
- - - '>='
133
+ - - ">="
134
134
  - !ruby/object:Gem::Version
135
135
  version: 1.9.3
136
136
  required_rubygems_version: !ruby/object:Gem::Requirement
137
137
  requirements:
138
- - - '>='
138
+ - - ">="
139
139
  - !ruby/object:Gem::Version
140
140
  version: '0'
141
141
  requirements: []
142
142
  rubyforge_project:
143
- rubygems_version: 2.1.11
143
+ rubygems_version: 2.2.2
144
144
  signing_key:
145
145
  specification_version: 4
146
146
  summary: Appium Ruby Console
147
147
  test_files: []
148
- has_rdoc: