appium_console 0.5.5 → 0.5.6

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: ab6b9095d3d5615359f7e8820357a484600ce5f0
4
- data.tar.gz: 261214de26a655a9c1c0cf39a52da04d3cc3de06
3
+ metadata.gz: 74be2d00f202b86c997aba0ea94b95dbe2ed6954
4
+ data.tar.gz: d6f971c2792cbb3b2bca32f5b1e7ed382356fd6b
5
5
  SHA512:
6
- metadata.gz: 4e8e5bf3ed0acb0654a0d0ec9a6fb191fcfa7912cec059ca7a7ca765d76540afc5938cb13e8665bd9adf66491fe8947d563227f102bd7e15c2925d4494cd779d
7
- data.tar.gz: b17f506cc7fd35614f99c7b4607ffecc3675a7d7cee19e967788a3b7621f4f659fe9f8c9b8ae1b167bac5b9d1a874a76acceb4f9faad24fc4de6b364c4e9eb47
6
+ metadata.gz: 525d836b48afdc521142be2175cae6758a595c20aef31d607b9005be0094dbb12a91e818da673be1fd61b95b6d84019cd43c9d11560ac01515a0c56abcec7815
7
+ data.tar.gz: 94aeba1407b2e96b8c2c236aa09909d27bceecbbfe47165da3527d816e1c28cdaac035d4c290af5682b0172494511f97682513154b0fb8c0395e3e3532ccf78c
Binary file
@@ -1,5 +1,13 @@
1
1
  #### Notes on iOS and Android Appium compatibility
2
2
 
3
+ #### iOS Ghosting
4
+
5
+ It's not uncommon to have multiple elements from different pages. To find the correct back button for example,
6
+ it's necessary to find all the back buttons `names('Back')` and then return the first one that's displayed.
7
+
8
+ This has implications for searching by index. If you select textfield 1 for the 1st textfield, then you may
9
+ be getting a textfield from a previous page. The solution is to ensure each element has a unique accessibility identifier
10
+ and to verify visibility and type.
3
11
 
4
12
  #### iPhone vs iPad
5
13
 
@@ -5,6 +5,13 @@ require 'pry'
5
5
 
6
6
  module Appium; end unless defined? Appium
7
7
 
8
+ def define_reload paths
9
+ Pry.send(:define_singleton_method, :reload) do
10
+ paths.each { |p| load p }
11
+ end
12
+ nil
13
+ end
14
+
8
15
  module Appium::Console
9
16
  require 'appium_lib'
10
17
  AwesomePrint.pry!
@@ -14,6 +21,7 @@ module Appium::Console
14
21
  cmd = ['-r', start]
15
22
 
16
23
  if to_require && !to_require.empty?
24
+ define_reload to_require
17
25
  load_files = to_require.map { |f| %(require "#{f}";) }.join "\n"
18
26
  cmd += [ '-e', load_files ]
19
27
  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.5' unless defined? ::Appium::Console::VERSION
6
- DATE = '2013-08-23' unless defined? ::Appium::Console::DATE
5
+ VERSION = '0.5.6' unless defined? ::Appium::Console::VERSION
6
+ DATE = '2013-11-18' unless defined? ::Appium::Console::DATE
7
7
  end
@@ -12,4 +12,9 @@ begin
12
12
  # NoMethodError: undefined method `assert_equal' for nil:NilClass
13
13
  Minitest::Spec.new 'pry'
14
14
  rescue
15
+ end
16
+
17
+ def reload
18
+ Pry.reload
19
+ nil
15
20
  end
data/osx.md CHANGED
@@ -1,13 +1,43 @@
1
- #### Getting Started
1
+ ### Getting Started
2
2
 
3
- This document is written for OS X 10.8.3 or better. iOS testing requires OS X. Android testing works on OS X, Windows, and Linux.
3
+ This document is written for OS X 10.8.4 or better. iOS testing requires OS X. Android testing works on OS X, Windows, and Linux.
4
4
 
5
- Install `Xcode` from the Mac app store and the command line build tools (Xcode -> Preferences -> Downloads).
5
+ For OS X, there is rake script which will attempt to do most of this for you, with
6
+ ```
7
+ rake -f osx_install.rake
8
+ ```
9
+ The rake script will not install Xcode, etc., nor Java, but should take care of everything else.
10
+ Changes to these instructions might imply changes to that script as well.
11
+
12
+ #### Steps to install
13
+
14
+ Install `Xcode` 4.6.3 (iOS 6) or 5.0.0 (iOS 7).
15
+
16
+ - Xcode 5.0.0 shouldn't be used for iOS 6 as it's flaky.
17
+ - Xcode 5.0.1 is broken.
18
+ - Xcode 4.6.3 doesn't support iOS 7.
19
+
20
+ After that, install the command line build tools (Xcode -> Preferences -> Downloads).
21
+
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.
24
+
25
+ That done, you'll need to create a symlink for
26
+ `gcc` to get the ruby build (particularly FFI) to install properly. This isn't required on OS X 10.9.
27
+ If `/usr/local/bin` is in your path, you can do:
28
+ ```
29
+ ln -s /usr/bin/gcc /usr/local/bin/gcc-4.2
30
+ ```
31
+ Otherwise
32
+ ```
33
+ sudo ln -s /usr/bin/gcc /usr/bin/gcc-4.2
34
+ ```
35
+ Reinstall Ruby if you didn't set this symlink and have FFI issues.
6
36
 
7
37
  - Install Java 7 if there's no Java on the system.
8
38
  - [JDK 7](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
9
39
 
10
- - Ensure you have Ruby 1.9.3-p392 or better (1.8 is not supported). Install the latest stable patch release of Ruby 2.0.
40
+ - Install the latest stable patch release of Ruby 2.0.
11
41
 
12
42
  `$ \curl -L https://get.rvm.io | bash -s stable --ruby=2.0.0`
13
43
 
@@ -21,7 +51,8 @@ $ rvm --default use 2.0.0
21
51
  - If you have an old ruby, you can installing Ruby 2.0 instead
22
52
 
23
53
  ```
24
- $ rvm get stable
54
+ $ rvm get head
55
+ $ rvm autolibs homebrew
25
56
  $ rvm install 2.0.0
26
57
  ```
27
58
 
@@ -38,6 +69,13 @@ gem update ;\
38
69
  gem cleanup
39
70
  ```
40
71
 
72
+ - Check that RubyGems is >= 2.1.5
73
+
74
+ ```bash
75
+ $ gem --version
76
+ 2.1.5
77
+ ```
78
+
41
79
  - Install appium_console gem.
42
80
 
43
81
  ```ruby
@@ -46,6 +84,13 @@ gem uninstall -aIx appium_console ;\
46
84
  gem install --no-rdoc --no-ri appium_console
47
85
  ```
48
86
 
87
+ - Install [flaky](https://github.com/appium/flaky) gem.
88
+
89
+ ```ruby
90
+ gem uninstall -aIx flaky ;\
91
+ gem install --no-rdoc --no-ri flaky
92
+ ```
93
+
49
94
  - Install [brew](http://mxcl.github.io/homebrew/)
50
95
 
51
96
  `ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"`
@@ -58,7 +103,7 @@ brew upgrade node ;\
58
103
  brew install node
59
104
  ```
60
105
 
61
- - Node should be `v0.10.2` or better.
106
+ - Node should be `v0.10.5` or better.
62
107
  Don't use the big green install button on nodejs.org or all npm commands will require sudo.
63
108
 
64
109
  `$ node --version`
@@ -69,6 +114,8 @@ Don't use the big green install button on nodejs.org or all npm commands will re
69
114
 
70
115
  `npm install -g grunt grunt-cli`
71
116
 
117
+ - Run the version command from the appium folder. If you're not in that folder, the grunt version will not display.
118
+
72
119
  ```bash
73
120
  $ grunt --version
74
121
  grunt-cli v0.1.6
@@ -76,7 +123,7 @@ grunt v0.4.1
76
123
  ```
77
124
 
78
125
  - Install [ant](http://ant.apache.org/) if it's not already installed.
79
- - Install [maven](http://maven.apache.org/download.cgi) 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.
80
127
 
81
128
  ```
82
129
  $ ant -version
@@ -97,6 +144,10 @@ If you see config errors, try cleaning git. `git clean -dfx; git reset --hard`
97
144
 
98
145
  You can also reset by platform. `./reset.sh --android`
99
146
 
147
+ If npm is having issues, you may have to disable https. I don't recommend this, however if you must this is how to do so:
148
+
149
+ `npm config set registry http://registry.npmjs.org/`
150
+
100
151
 
101
152
  - Authorize for iOS testing. Must run reset.sh as mentioned above before running the grunt task.
102
153
 
@@ -107,7 +158,7 @@ You can also reset by platform. `./reset.sh --android`
107
158
  `node server.js`
108
159
 
109
160
 
110
- # Bash Profile
161
+ #### Bash Profile
111
162
  - Add the Android SDK tools folder to your path so you can run `android`.
112
163
  - Define the `ANDROID_HOME` env var pointing to SDK root. On OSX place it in `~/.bash_profile`
113
164
  - You may have to add grunt as well `/usr/local/share/npm/bin/grunt`
@@ -118,8 +169,9 @@ export ANDROID_HOME=$HOME/Downloads/android-sdk-macosx
118
169
  export ANDROID_SDK=$ANDROID_HOME
119
170
  PATH=$PATH:/Applications/apache-ant-1.8.4/bin
120
171
  PATH=$PATH:/usr/local/share/npm/bin/
121
- PATH=$PATH:$HOME/Downloads/android-sdk-macosx/platform-tools
122
- PATH=$PATH:$HOME/Downloads/android-sdk-macosx/tools
172
+ PATH=$PATH:$ANDROID_HOME/build-tools
173
+ PATH=$PATH:$ANDROID_HOME/platform-tools
174
+ PATH=$PATH:$ANDROID_HOME/tools
123
175
  export JAVA_HOME="`/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java_home`"
124
176
  export APP_PATH="/path/to/MyiOS.app"
125
177
  export APK_PATH="/path/to/my.apk"
@@ -132,22 +184,23 @@ export PATH
132
184
 
133
185
  - Run `android` to open the SDK manager.
134
186
  - Install `Intel x86 Emulator Accelerator (HAXM)` under Extras
135
- - Install API 17 `SDK Platform`, `Intel x86 Atom System Image`, `Google APIs` as in the picture.
187
+ - Install API 18 `SDK Platform`, `Intel x86 Atom System Image`, `Google APIs`
136
188
  If there are any problems viewing or downloading the packages, go to `Packages -> Reload` and try again.
137
189
 
138
- ![](img/packages.png)
139
-
140
190
  - Create a new Android virtual device that uses the Intel image. Ensure `Use Host GPU` is checked. Set `VM Heap` to `64`. `32` is too small.
141
191
 
142
- `android avd`
143
-
144
192
  ![](img/avd_settings.png)
145
193
 
194
+ `android avd`
195
+
146
196
  - Check that `hax is working` If it's not, install hax [directly from Intel](http://software.intel.com/en-us/articles/intel-hardware-accelerated-execution-manager)
147
197
 
148
- ![](img/hax.png)
198
+ ```bash
199
+ $ emulator @t18
200
+ HAX is working and emulator runs in fast virt mode
201
+ ```
149
202
 
150
- - Launch the emulator with `emulator @t17`
203
+ - Launch the emulator with `emulator @t18`
151
204
 
152
205
  - After launching the emulator, check that it's listed in adb devices. Run the following commands a few times until it's listed.
153
206
 
@@ -167,6 +220,10 @@ If you see `error: protocol fault (no status)` just keep running the command unt
167
220
 
168
221
  - See [running on OS X](https://github.com/appium/appium/blob/master/docs/running-on-osx.md)
169
222
 
223
+ #### Troubleshooting
224
+
225
+ - If install fails, keep trying to install a few times.
226
+
170
227
  When using `Appium.app` make sure to set Appium -> Preferences... -> Check "Use External Appium Package" and set it to the path of Appium cloned from GitHub.
171
228
 
172
229
  Fix permission errors. npm shouldn't require sudo.
@@ -175,7 +232,40 @@ Fix permission errors. npm shouldn't require sudo.
175
232
  brew uninstall node
176
233
  brew install node
177
234
  rm -rf ./node_modules # run from the appium folder
178
- rm -rf /Users/`whoami`/.npm
235
+ rm -rf "/Users/`whoami`/.npm"
236
+ rm -rf /usr/local/lib/node_modules/
179
237
  ./reset.sh --ios
180
238
  ./reset.sh --android
181
239
  ```
240
+
241
+ - [Helper bash methods](https://gist.github.com/bootstraponline/5580587)
242
+
243
+ #### SSL Issues
244
+
245
+ > Unable to download data from https://rubygems.org/ - SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed
246
+
247
+ - [Fix SSL issues](http://railsapps.github.io/openssl-certificate-verify-failed.html) with:
248
+
249
+ ```bash
250
+ $ rvm osx-ssl-certs update all
251
+ $ rvm osx-ssl-certs status all
252
+ ```
253
+
254
+ #### Maven on OS X 10.9
255
+
256
+ ```bash
257
+ $ cd /usr/local
258
+ $ git reset --hard origin/master
259
+
260
+ $ brew update
261
+ $ brew install maven
262
+ ```
263
+
264
+ #### HAXM on OS X 10.9
265
+
266
+ Install the [HAXM 10.9 hotfix](http://software.intel.com/en-us/articles/intel-hardware-accelerated-execution-manager-end-user-license-agreement-macos-hotfix
267
+ ).
268
+
269
+ #### Restore dev tools on 10.9
270
+
271
+ `xcode-select --install`
@@ -0,0 +1,135 @@
1
+ # For OS X, installs all the dependencies for Appium's ruby console, per these instructions:
2
+ #
3
+ # https://github.com/appium/ruby_console/blob/master/osx.md
4
+ #
5
+ # Changes to this file might imply changes to those instructions as well.
6
+
7
+ def sh_success(cmd)
8
+ success = false
9
+ begin
10
+ success, status = sh cmd
11
+ rescue
12
+ # do nothing
13
+ end
14
+
15
+ success
16
+ end
17
+
18
+ def has_cmd(cmd)
19
+ sh_success "which #{cmd}"
20
+ end
21
+
22
+ THIS_DIR = File.expand_path(File.dirname(__FILE__))
23
+ APPIUM_DIR = "#{THIS_DIR}/appium"
24
+
25
+ GCC = '/usr/bin/gcc'
26
+ GCC42_CMD = 'gcc-4.2'
27
+ GCC42 = "/usr/local/bin/#{GCC42_CMD}"
28
+
29
+ file GCC do
30
+ fail "#{GCC} does not exist. This is likely because you do not have Xcode command line tools installed."
31
+ end
32
+
33
+ file GCC42 => [GCC] do
34
+ sh "ln -s #{GCC} #{GCC42}"
35
+ end
36
+
37
+ task :gcc do
38
+ if !has_cmd('gcc-4.2') then
39
+ Rake::Task[GCC42].invoke
40
+ end
41
+ end
42
+
43
+ task :java do
44
+ if !has_cmd('java') then
45
+ puts "You must install java to continue."
46
+ puts "cf. http://www.oracle.com/technetwork/java/javase/downloads/index.html"
47
+ end
48
+ end
49
+
50
+ task :ruby => [:gcc] do
51
+ if has_cmd('rvm') then
52
+ # doesn't hurt anything if already installed
53
+ sh 'rvm install 2.0.0'
54
+ else
55
+ sh '\curl -L https://get.rvm.io | bash -s stable --ruby=2.0.0'
56
+ end
57
+
58
+ system '/bin/bash --login -i -c "rvm use --default 2.0.0"'
59
+ sh 'rvm osx-ssl-certs update all'
60
+ end
61
+
62
+ task :gems => [:ruby] do
63
+ sh 'gem update --system'
64
+ sh 'gem install --no-rdoc --no-ri bundler'
65
+ sh 'gem update'
66
+ sh 'gem cleanup'
67
+ sh 'gem uninstall -aIx appium_lib'
68
+ sh 'gem uninstall -aIx appium_console'
69
+ sh 'gem install --no-rdoc --no-ri appium_console'
70
+ sh 'gem uninstall -aIx flaky'
71
+ sh 'gem install --no-rdoc --no-ri flaky'
72
+ end
73
+
74
+ task :brew do
75
+ if has_cmd('brew') then
76
+ sh 'brew update'
77
+ else
78
+ sh 'ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"'
79
+ end
80
+ end
81
+
82
+ task :ant do
83
+ if !has_cmd('ant') then
84
+ fail "Ant must be installed to complete this setup."
85
+ end
86
+ end
87
+
88
+ task :maven do
89
+ if !has_cmd('mvn') then
90
+ Rake::Task[:brew].invoke
91
+ sh 'brew install maven'
92
+ end
93
+ end
94
+
95
+ task :nodejs => [:brew] do
96
+ sh 'brew install node' # noop if already installed
97
+ if sh_success 'brew outdated | grep node' then
98
+ sh 'brew upgrade node'
99
+ end if
100
+
101
+ # make sure it's installed
102
+ sh 'node --version'
103
+ sh 'npm --version'
104
+ end
105
+
106
+ task :grunt => [:nodejs] do
107
+ if !sh_success('grunt --version') then
108
+ sh 'npm install -g grunt grunt-cli'
109
+ sh 'grunt --version'
110
+ end
111
+ end
112
+
113
+ # we only clone when the directory doesn't already exist
114
+ directory APPIUM_DIR do
115
+ cd THIS_DIR
116
+ sh 'git clone git://github.com/appium/appium.git'
117
+ end
118
+
119
+ # appium goes into the directory below where this Rakefile is
120
+ desc 'Downloads appium and all dependencies, and starts up appium. May require a superuser password.'
121
+ task :appium => [APPIUM_DIR, :grunt, :maven, :ant, :gems, :ruby, :java] do
122
+ cd APPIUM_DIR
123
+ sh 'git pull origin master'
124
+ sh './reset.sh'
125
+
126
+ begin
127
+ sh 'sudo `which grunt` authorize'
128
+ rescue
129
+ # grunt errors if it has already been authorized, so ... I guess we'll ignore errors then
130
+ end
131
+
132
+ sh 'node server.js'
133
+ end
134
+
135
+ task :default => :appium
@@ -1,3 +1,45 @@
1
+ #### v0.5.6 2013-11-18
2
+
3
+ - [ce14efa](https://github.com/appium/ruby_console/commit/ce14efa1bb139a2f8a8f391d28588376757739bc) Release 0.5.6
4
+ - [e6ee1f5](https://github.com/appium/ruby_console/commit/e6ee1f5704ceb5358997af77dc43c4bc401e204e) Add "reload" command
5
+ - [877a42b](https://github.com/appium/ruby_console/commit/877a42b728ac8d3d7093ce92feab69010701893a) Update ios_v_android.md
6
+ - [86eed78](https://github.com/appium/ruby_console/commit/86eed78ebcb4ab06bf148e629aad1f4de35c3309) Update osx.md
7
+ - [c32fa78](https://github.com/appium/ruby_console/commit/c32fa7859afa659dce46ec61494544b3a9b9f2b9) Add note about iOS duplicate elements
8
+ - [cdd23c7](https://github.com/appium/ruby_console/commit/cdd23c7e8a21e83f19763796b33a17b163de1e43) Update hotfix section
9
+ - [a4800ab](https://github.com/appium/ruby_console/commit/a4800abc1e366fd31c1cfa5fddd2f00ae6253fe6) Merge pull request #32 from bkone/patch-2
10
+ - [2e24615](https://github.com/appium/ruby_console/commit/2e24615366622cd658a0516850d07dda45ab7428) Update osx.md
11
+ - [bb90e04](https://github.com/appium/ruby_console/commit/bb90e048b9835f6ee43ec43ee537ca2a5691aea5) Merge pull request #31 from bkone/patch-1
12
+ - [c85b39d](https://github.com/appium/ruby_console/commit/c85b39d375b8dce6e97ade8701f8ab57d48e5833) install_osx.rake to osx_install.rake
13
+ - [ff59f4d](https://github.com/appium/ruby_console/commit/ff59f4dba3557a69867af5bb53008ed2d0fb15dd) Add rvm fix for OS X 10.9
14
+ - [add328a](https://github.com/appium/ruby_console/commit/add328a34506915f9b453722730d4f7217504658) Clarify maven version
15
+ - [db263d3](https://github.com/appium/ruby_console/commit/db263d36fac3ef673e363cf36d93d5bb8bab03db) Clarify Xcode versions
16
+ - [7cdd5de](https://github.com/appium/ruby_console/commit/7cdd5dead03fc08eb495e9118c337fe465b7d66e) Update osx.md
17
+ - [869e4a4](https://github.com/appium/ruby_console/commit/869e4a4454d115a8b171e92b61b420e7e4c0152b) HAXM on OS X 10.9
18
+ - [85f9f39](https://github.com/appium/ruby_console/commit/85f9f39eadf12b993d4389759bdcd863aaac4fbc) Add Maven OS X 10.9 doc
19
+ - [793d780](https://github.com/appium/ruby_console/commit/793d7805705e5709c990714e545013a16189e743) Update osx.md
20
+ - [78fbc94](https://github.com/appium/ruby_console/commit/78fbc9473b009af39043f89b50fe34105dad0870) Merge pull request #30 from claybridges/clay-rake-install
21
+ - [604a385](https://github.com/appium/ruby_console/commit/604a3857a4612c5db7c0c2c157a51e513235f385) Add osx_install.rake, and associated changes
22
+ - [0efa857](https://github.com/appium/ruby_console/commit/0efa857b561edf7370e27a165f9fb8b2dc68dff7) Recommend RubyGems >= 2.1.5
23
+ - [7ba2e04](https://github.com/appium/ruby_console/commit/7ba2e042b62b1c8c6658f390b0db66b356791a33) Add flaky gem to osx.md
24
+ - [0574a34](https://github.com/appium/ruby_console/commit/0574a3400b9f489838ace4894fde787a3361a88e) Update SSL issue docs
25
+ - [ccb94ce](https://github.com/appium/ruby_console/commit/ccb94cebaceccdc067e646be8c6016803afd1ffe) Add SSL issue fix
26
+ - [594c8c3](https://github.com/appium/ruby_console/commit/594c8c3100576f0168874e70bab551ae6b226a52) Use quotes
27
+ - [763e6d4](https://github.com/appium/ruby_console/commit/763e6d48296459044b112fcfe1fb3fc3ae9dc0e4) Improve troubleshooting
28
+ - [f60791e](https://github.com/appium/ruby_console/commit/f60791eca5166c7925f4dc8f35663142fbf5414d) Update osx.md
29
+ - [e79b668](https://github.com/appium/ruby_console/commit/e79b6684e5321c4b393fafe0892bad7b72651b3f) Update osx.md
30
+ - [3e2a8ae](https://github.com/appium/ruby_console/commit/3e2a8aece693227a83ab79b61c84bd400005a31a) Update osx.md
31
+ - [21b0240](https://github.com/appium/ruby_console/commit/21b0240194a03bc4f4a33abbfc0063e1af19d48f) Update avd settings to API 18
32
+ - [5390c80](https://github.com/appium/ruby_console/commit/5390c80febeb15ecb0d9b667694181850065a7c4) Update osx.md
33
+ - [05e312c](https://github.com/appium/ruby_console/commit/05e312c3918686fe5e9a9769e3f1571623915dc7) Add helper bash methods for launching Appium
34
+ - [afcb37f](https://github.com/appium/ruby_console/commit/afcb37f1b9951ff2caa41f2a4c802ee2b7ebcf16) Update to API 18
35
+
36
+
37
+ #### v0.5.5 2013-08-23
38
+
39
+ - [e048325](https://github.com/appium/ruby_console/commit/e04832589c71359fc4c30e45a3da2a04f93fbd66) Release 0.5.5
40
+ - [fdc7749](https://github.com/appium/ruby_console/commit/fdc7749b7fd074b89643407a1cd4c7ba71ff15f2) Load minitest by default
41
+
42
+
1
43
  #### v0.5.4 2013-08-19
2
44
 
3
45
  - [97f5c4f](https://github.com/appium/ruby_console/commit/97f5c4f67c8f689f7342336b428262975e3f8421) Release 0.5.4
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appium_console
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 0.5.6
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: 2013-08-23 00:00:00.000000000 Z
11
+ date: 2013-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: appium_lib
@@ -88,6 +88,7 @@ files:
88
88
  - lib/appium_console/version.rb
89
89
  - lib/start.rb
90
90
  - osx.md
91
+ - osx_install.rake
91
92
  - readme.md
92
93
  - release_notes.md
93
94
  - test/simple.rb
@@ -111,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
112
  version: '0'
112
113
  requirements: []
113
114
  rubyforge_project:
114
- rubygems_version: 2.0.6
115
+ rubygems_version: 2.1.11
115
116
  signing_key:
116
117
  specification_version: 4
117
118
  summary: Appium Ruby Console