appium_console 0.5.2 → 0.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +2 -3
- data/appium_console.gemspec +2 -2
- data/lib/appium_console.rb +1 -2
- data/lib/appium_console/version.rb +2 -2
- data/osx.md +4 -4
- data/release_notes.md +21 -0
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 331642bc84fa117252c7fbb23dcdd601f46a5226
|
4
|
+
data.tar.gz: e7c038897d2a0fc257fb02c6624ce865820f7f06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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;
|
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?(
|
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
|
data/appium_console.gemspec
CHANGED
@@ -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
|
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
|
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"
|
data/lib/appium_console.rb
CHANGED
@@ -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.
|
6
|
-
DATE = '2013-07
|
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
|
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=
|
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
|
18
|
+
$ rvm --default use 2.0.0
|
19
19
|
```
|
20
20
|
|
21
|
-
-
|
21
|
+
- If you have an old ruby, you can installing Ruby 2.0 instead
|
22
22
|
|
23
23
|
```
|
24
24
|
$ rvm get stable
|
data/release_notes.md
CHANGED
@@ -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.
|
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
|
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
|
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
|
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
|
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
|
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:
|