appium_console 0.5.2 → 0.5.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 40771e9fa754c4149e36a1d77b74723be93b2a2d
4
- data.tar.gz: 699f6691404a64f22a13c0b1c0742841f7f179a0
3
+ metadata.gz: 331642bc84fa117252c7fbb23dcdd601f46a5226
4
+ data.tar.gz: e7c038897d2a0fc257fb02c6624ce865820f7f06
5
5
  SHA512:
6
- metadata.gz: 9fcf217c4c1dc90f35a0b5eb3b23baba9cd8ee01ede172bb3944138b5a69b41b418b9470cfcc126c7a5b1fa1bb28cfcb6ce125e8b824faf1c65570a0c8e20670
7
- data.tar.gz: 5acad561d5da6a49ee5056f0e8df3c444b9ff78cf1097536a6d0fccd2cc0a07fd4e1265b775361c5f7f3c8be7df5ded5b83fc77968d780a9a2a1b0c6565de3f4
6
+ metadata.gz: 7242d1560e685abec5613c5cc937ba34fcedd1dc2e68febeb3ab678e4fa4576384449491924cdff7e62c770964f78cd02bf7c4232cd2a899edce493695749eff
7
+ data.tar.gz: 56042ffb04e833e2f5eb1189c10912cc077aaeee94305cf0adc3e5a878c1512bf5d54f40d76488ed767720798ff98c6f524e41fd2cf4135ed435925f94e2c32c
data/Rakefile CHANGED
@@ -83,9 +83,8 @@ end
83
83
  desc 'Uninstall gem'
84
84
  task :uninstall do
85
85
  cmd = "gem uninstall -aIx #{repo_name}"
86
- puts cmd
87
86
  # rescue on gem not installed error.
88
- begin; `cmd`; rescue; end
87
+ begin; sh "#{cmd}"; rescue; end
89
88
  end
90
89
 
91
90
  desc 'Install gem'
@@ -118,7 +117,7 @@ task :notes do
118
117
  tag = pair.split('...').last
119
118
  dates.each do |line|
120
119
  # regular tag, or tag on master.
121
- if line.include?('(' + tag + ')') || line.include?(tag + ',')
120
+ if line.include?(tag + ')') || line.include?(tag + ',')
122
121
  tag_date.push tag + ' ' + line.match(/\d{4}-\d{2}-\d{2}/)[0]
123
122
  break
124
123
  end
@@ -24,9 +24,9 @@ Gem::Specification.new do |s|
24
24
  s.require_paths = [ 'lib' ]
25
25
 
26
26
  # appium_lib version must match ruby console version.
27
- s.add_runtime_dependency 'appium_lib', '>= 0.3.13'
27
+ s.add_runtime_dependency 'appium_lib', '>= 0.6.3'
28
28
  s.add_runtime_dependency 'pry', '~> 0.9.12.2'
29
- s.add_development_dependency 'rake', '~> 10.0.4'
29
+ s.add_development_dependency 'rake', '~> 10.1.0'
30
30
 
31
31
  s.executables = [ 'arc' ]
32
32
  s.files = `git ls-files`.split "\n"
@@ -7,11 +7,10 @@ module Appium; end unless defined? Appium
7
7
 
8
8
  module Appium::Console
9
9
  require 'appium_lib'
10
+ AwesomePrint.pry!
10
11
  to_require = load_appium_txt file: Dir.pwd + '/appium.txt', verbose: true
11
12
 
12
13
  start = File.expand_path '../start.rb', __FILE__
13
- # to do:
14
- # -e switch to pass require string
15
14
  cmd = ['-r', start]
16
15
 
17
16
  if to_require && !to_require.empty?
@@ -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.2' unless defined? ::Appium::Console::VERSION
6
- DATE = '2013-07-26' unless defined? ::Appium::Console::DATE
5
+ VERSION = '0.5.3' unless defined? ::Appium::Console::VERSION
6
+ DATE = '2013-08-07' unless defined? ::Appium::Console::DATE
7
7
  end
data/osx.md CHANGED
@@ -7,18 +7,18 @@ Install `Xcode` from the Mac app store and the command line build tools (Xcode -
7
7
  - Install Java 7 if there's no Java on the system.
8
8
  - [JDK 7](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
9
9
 
10
- - Ensure you have Ruby 1.9.3-p392 or better (1.8 is not supported). Install the latest stable patch release of Ruby 1.9.3 (not Ruby 2.0).
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.
11
11
 
12
- `$ \curl -L https://get.rvm.io | bash -s stable --ruby=1.9.3`
12
+ `$ \curl -L https://get.rvm.io | bash -s stable --ruby=2.0.0`
13
13
 
14
14
  - Make sure RVM is using the correct Ruby by default
15
15
 
16
16
  ```
17
17
  $ rvm list
18
- $ rvm --default use 1.9.3
18
+ $ rvm --default use 2.0.0
19
19
  ```
20
20
 
21
- - Installing Ruby 2.0 instead
21
+ - If you have an old ruby, you can installing Ruby 2.0 instead
22
22
 
23
23
  ```
24
24
  $ rvm get stable
@@ -1,3 +1,24 @@
1
+ #### v0.5.2 2013-07-26
2
+
3
+ - [0845ddd](https://github.com/appium/ruby_console/commit/0845dddda181f9349a4e1162b3dfea732491a743) Release 0.5.2
4
+ - [82e83c4](https://github.com/appium/ruby_console/commit/82e83c45fc4af41f0505ac2a00bb6ba2a3689d41) Add Ruby 2.0 notes
5
+ - [c36701b](https://github.com/appium/ruby_console/commit/c36701b11f1d2eab4885a6492cb320d48e3c7d1f) Require Ruby files listed in appium.txt
6
+ - [7648bda](https://github.com/appium/ruby_console/commit/7648bda1aea63b65af63901a61e94c07ed6e2721) Add commands to fix permission issues
7
+ - [2750b5e](https://github.com/appium/ruby_console/commit/2750b5ecc0f15ad5fde864dd237a01f2af85c693) Update osx.md
8
+ - [65d7e45](https://github.com/appium/ruby_console/commit/65d7e4545a62f72cf6af6fb839f30cbada85c007) Update readme.md
9
+ - [bfe9738](https://github.com/appium/ruby_console/commit/bfe9738efc4af3bde8ee73eb4df367ef4f12e2c8) Update osx.md
10
+ - [bf83b65](https://github.com/appium/ruby_console/commit/bf83b65bf28546f9f5339b537b6a75cfff33327e) Update osx.md
11
+ - [f31041d](https://github.com/appium/ruby_console/commit/f31041d9b6f9afb5576a806ea49166140b8b0843) Fix grunt command
12
+ - [e4d7e42](https://github.com/appium/ruby_console/commit/e4d7e4293e1549a31ccc3b9622a85c5d4a6384ce) Update osx.md
13
+ - [9906226](https://github.com/appium/ruby_console/commit/9906226bec455aa7025efe6cb1f13b0ccd501b9d) Update osx.md
14
+ - [0f3059f](https://github.com/appium/ruby_console/commit/0f3059fe95527f9b3641a2f4afb9b9c7a8aee3eb) Update ios_v_android.md
15
+ - [1b97d06](https://github.com/appium/ruby_console/commit/1b97d06c7ca825a67f21d71b5eaee7cfce058a6f) Update ios_v_android.md
16
+ - [415c64c](https://github.com/appium/ruby_console/commit/415c64c14f9990e1790e75434526673a449ef505) Update osx.md
17
+ - [2beb4d7](https://github.com/appium/ruby_console/commit/2beb4d70bdf955e056c72d7d5f7b8052e0fe8f38) Update osx.md
18
+ - [254b66c](https://github.com/appium/ruby_console/commit/254b66ca80d75d7da3336217e75b5f0fea4ab0b7) Update readme.md
19
+ - [cce92d9](https://github.com/appium/ruby_console/commit/cce92d9494bbb281aa714be8a39ac0aeaa435372) Add version badge
20
+
21
+
1
22
  #### v0.5.1 2013-05-24
2
23
 
3
24
  - [3d9aef1](https://github.com/appium/ruby_console/commit/3d9aef1458d0874c5c740faf8e41086ee65da86d) Release 0.5.1
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.2
4
+ version: 0.5.3
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-07-26 00:00:00.000000000 Z
11
+ date: 2013-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: appium_lib
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '>='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.3.13
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
- version: 0.3.13
26
+ version: 0.6.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: pry
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - ~>
46
46
  - !ruby/object:Gem::Version
47
- version: 10.0.4
47
+ version: 10.1.0
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ~>
53
53
  - !ruby/object:Gem::Version
54
- version: 10.0.4
54
+ version: 10.1.0
55
55
  description: Appium Ruby Console.
56
56
  email:
57
57
  - code@bootstraponline.com
@@ -102,3 +102,4 @@ signing_key:
102
102
  specification_version: 4
103
103
  summary: Appium Ruby Console
104
104
  test_files: []
105
+ has_rdoc: