appium_console 0.5.8 → 0.5.9
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 +4 -4
- data/Rakefile +8 -2
- data/appium_console.gemspec +2 -1
- data/lib/appium_console/version.rb +2 -2
- data/release_notes.md +14 -8
- metadata +18 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34347313bd6e6996cddb3611befdd66e0dadd155
|
4
|
+
data.tar.gz: 5af70b219063429fb3d41aca295c593e0fba1dbb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c83f50b9939e0c7ced5181109813bd8cca5939061728a8b7ea7d9622a5478bc830221d6bc93056d58949503fd5d876ffb66c70a791c67c847cc52a035926c907
|
7
|
+
data.tar.gz: 79443980a319c32d4f9717b791cf113f23465c66f34c253f55f5d9d2f91e69cee578f2401ec3a3d8d6fc9fbcd3149acfc375e2297078d9f2b859e8aabb6ecbb8
|
data/Rakefile
CHANGED
@@ -106,26 +106,32 @@ end
|
|
106
106
|
desc 'Update release notes'
|
107
107
|
task :notes do
|
108
108
|
tag_sort = ->(tag1,tag2) do
|
109
|
+
begin
|
109
110
|
tag1_numbers = tag1.match(/\.?v(\d+\.\d+\.\d+)$/)[1].split('.').map! { |n| n.to_i }
|
110
111
|
tag2_numbers = tag2.match(/\.?v(\d+\.\d+\.\d+)$/)[1].split('.').map! { |n| n.to_i }
|
111
112
|
tag1_numbers <=> tag2_numbers
|
113
|
+
rescue
|
114
|
+
raise "Match failed on\n'#{tag1}'\n'#{tag2}'"
|
115
|
+
end
|
112
116
|
end
|
113
117
|
|
114
118
|
tags = `git tag`.split "\n"
|
115
119
|
tags.sort! &tag_sort
|
116
120
|
pairs = []
|
117
|
-
tags.each_index { |a| pairs.push tags[a] + '
|
121
|
+
tags.each_index { |a| pairs.push tags[a] + '..' + tags[a+1] unless tags[a+1].nil? }
|
118
122
|
|
119
123
|
notes = ''
|
120
124
|
|
121
125
|
dates = `git log --tags --simplify-by-decoration --pretty="format:%d %ad" --date=short`.split "\n"
|
126
|
+
# " (tag: v0.0.21) 2013-03-22"
|
127
|
+
dates.reject! { |d| ! d.match /\(tag: v\d+\.\d+\.\d+\) \d+-\d+-\d+/ }
|
122
128
|
|
123
129
|
pairs.sort! &tag_sort
|
124
130
|
pairs.reverse! # pairs are in reverse order.
|
125
131
|
|
126
132
|
tag_date = []
|
127
133
|
pairs.each do |pair|
|
128
|
-
tag = pair.split('
|
134
|
+
tag = pair.split('..').last
|
129
135
|
dates.each do |line|
|
130
136
|
# regular tag, or tag on master.
|
131
137
|
if line.include?(tag + ')') || line.include?(tag + ',')
|
data/appium_console.gemspec
CHANGED
@@ -25,7 +25,8 @@ Gem::Specification.new do |s|
|
|
25
25
|
|
26
26
|
# appium_lib version must match ruby console version.
|
27
27
|
s.add_runtime_dependency 'appium_lib', '>= 0.6.3'
|
28
|
-
s.add_runtime_dependency 'pry', '~> 0.9.12.
|
28
|
+
s.add_runtime_dependency 'pry', '~> 0.9.12.5'
|
29
|
+
s.add_runtime_dependency 'bond', '~> 0.5.0'
|
29
30
|
s.add_runtime_dependency 'spec', '~> 5.0.19'
|
30
31
|
s.add_development_dependency 'rake', '~> 10.1.0'
|
31
32
|
s.add_development_dependency 'posix-spawn', '~> 0.3.8'
|
@@ -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 = '2014-01-
|
5
|
+
VERSION = '0.5.9' unless defined? ::Appium::Console::VERSION
|
6
|
+
DATE = '2014-01-28' unless defined? ::Appium::Console::DATE
|
7
7
|
end
|
data/release_notes.md
CHANGED
@@ -1,8 +1,19 @@
|
|
1
|
+
#### v0.5.8 2014-01-27
|
2
|
+
|
3
|
+
- [28663d7](https://github.com/appium/ruby_console/commit/28663d7c6615f2cf135934fca661138aa5b274b1) Release 0.5.8
|
4
|
+
- [a8d19b1](https://github.com/appium/ruby_console/commit/a8d19b12d7f913b6e6b59c920c80662d2d5c2062) Update reload to support new files
|
5
|
+
- [9baad04](https://github.com/appium/ruby_console/commit/9baad04e4ed78927bbe4b24f86e1b063087d002f) Add RVM note to docs
|
6
|
+
- [0a077c0](https://github.com/appium/ruby_console/commit/0a077c0f35ed0d043987b4912f91336c63b0d0b0) Fix homebrew install link
|
7
|
+
- [772816b](https://github.com/appium/ruby_console/commit/772816b2fc87145bc8c7bfae31659e3a68ca73da) Fix posix-spawn
|
8
|
+
- [79e59fd](https://github.com/appium/ruby_console/commit/79e59fd2c5e653a3f5e43873283f41d29aa5bdc5) Update docs
|
9
|
+
- [e3e8a9c](https://github.com/appium/ruby_console/commit/e3e8a9c53f58a7d444b89ddcb3fe47f95aa9e381) Check for duplicate tags
|
10
|
+
- [26385c2](https://github.com/appium/ruby_console/commit/26385c28c49070614a10fc146624513e4802820f) Rescue load errors
|
11
|
+
|
12
|
+
|
1
13
|
#### v0.5.7 2013-11-25
|
2
14
|
|
3
|
-
- [
|
4
|
-
- [
|
5
|
-
- [027af76](https://github.com/appium/ruby_console/commit/027af763e8563c1b91dd195e978b7410ece9ec76) Release 0.5.6
|
15
|
+
- [d1580ac](https://github.com/appium/ruby_console/commit/d1580acc99b7d7f17b6963f5c96b353a076fac37) Release 0.5.7
|
16
|
+
- [9a7c6d6](https://github.com/appium/ruby_console/commit/9a7c6d610b77df629f5bc2b2357e190775f57946) Rescue load errors
|
6
17
|
|
7
18
|
|
8
19
|
#### v0.5.6 2013-11-18
|
@@ -331,13 +342,8 @@
|
|
331
342
|
- [6423db3](https://github.com/appium/ruby_console/commit/6423db32896af21697071bd74ca867742384bb88) Bump gemspec
|
332
343
|
- [718ea73](https://github.com/appium/ruby_console/commit/718ea735320b76080f776a28b3ca090c735f6b95) Update readme.md
|
333
344
|
- [4c27218](https://github.com/appium/ruby_console/commit/4c272185c8b29370811d5cac5bd410d30ae98a80) Release 0.0.9
|
334
|
-
- [02d41c7](https://github.com/appium/ruby_console/commit/02d41c7231f3e83fff27ea0463dc6dcf064a2e48) Release 0.0.12
|
335
345
|
- [ad0c8d2](https://github.com/appium/ruby_console/commit/ad0c8d2340d245ab448dde2783e5cdea751a83b0) Update ruby_console.gemspec
|
336
|
-
- [9b4f796](https://github.com/appium/ruby_console/commit/9b4f796b5292025bc7c958f1d1bdd91cebaf3e8e) Release 0.0.11
|
337
|
-
- [59673a5](https://github.com/appium/ruby_console/commit/59673a5891356e2a927cfc3b217765d71596ac78) Bump gemspec
|
338
346
|
- [433a225](https://github.com/appium/ruby_console/commit/433a2258c3401c13b259ec0faeb5afd5461f142a) Update ruby_console.gemspec
|
339
|
-
- [27f2a6c](https://github.com/appium/ruby_console/commit/27f2a6cbb3065bf32051f5fa3cc5a3779487890f) Update readme.md
|
340
|
-
- [69f24f6](https://github.com/appium/ruby_console/commit/69f24f6b9afb775143af97e8fd8287d2f9bf5f4c) Release 0.0.9
|
341
347
|
|
342
348
|
|
343
349
|
#### v0.0.12 2013-03-20
|
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.9
|
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-
|
11
|
+
date: 2014-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: appium_lib
|
@@ -30,14 +30,28 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - ~>
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.9.12.
|
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
|
-
version: 0.9.12.
|
40
|
+
version: 0.9.12.5
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bond
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.5.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.5.0
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: spec
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|