claide 1.0.0.beta.3 → 1.0.0.rc.1
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/CHANGELOG.md +13 -0
- data/Gemfile.lock +1 -1
- data/lib/claide.rb +1 -1
- data/lib/claide/ansi/string_escaper.rb +0 -2
- metadata +12 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8dfdee02f66a136e7c3774186331e0312848f98
|
4
|
+
data.tar.gz: a80364bf957712efff8a0a1da373eb1c1136de60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f0913e74de3ed4dbb09dde546c95940f48ca52a1c692d95264e3a693497f3e4a00eb84d81f6b2f95e21d1e2d5febac82ea50cf75dff89ec0711da771cc6f29b
|
7
|
+
data.tar.gz: 7866487555d3572f980cafee839791e57ead0b434d0d76f48b4ae8a3c50fda7fccc45ef3c5bd96102ea2126d37ca85dc1b5dfaac5ab679092879933c9978ef70
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# CLAide Changelog
|
2
2
|
|
3
|
+
## 1.0.0.rc.1 (2016-04-30)
|
4
|
+
|
5
|
+
##### Enhancements
|
6
|
+
|
7
|
+
* None.
|
8
|
+
|
9
|
+
##### Bug Fixes
|
10
|
+
|
11
|
+
* Fix circular require of `claide/ansi` in `claide/ansi/string_escaper`.
|
12
|
+
[bootstraponline](https://github.com/bootstraponline)
|
13
|
+
[#66](https://github.com/CocoaPods/CLAide/issues/66)
|
14
|
+
|
15
|
+
|
3
16
|
## 1.0.0.beta.3 (2016-03-15)
|
4
17
|
|
5
18
|
##### Enhancements
|
data/Gemfile.lock
CHANGED
data/lib/claide.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: claide
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-
|
12
|
+
date: 2016-04-30 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description:
|
15
15
|
email:
|
@@ -19,13 +19,13 @@ executables: []
|
|
19
19
|
extensions: []
|
20
20
|
extra_rdoc_files: []
|
21
21
|
files:
|
22
|
-
- .gitignore
|
23
|
-
- .kick
|
24
|
-
- .rubocop.yml
|
25
|
-
- .rubocop_cocoapods.yml
|
26
|
-
- .rubocop_todo.yml
|
27
|
-
- .travis.yml
|
28
|
-
- .yardopts
|
22
|
+
- ".gitignore"
|
23
|
+
- ".kick"
|
24
|
+
- ".rubocop.yml"
|
25
|
+
- ".rubocop_cocoapods.yml"
|
26
|
+
- ".rubocop_todo.yml"
|
27
|
+
- ".travis.yml"
|
28
|
+
- ".yardopts"
|
29
29
|
- CHANGELOG.md
|
30
30
|
- Gemfile
|
31
31
|
- Gemfile.lock
|
@@ -56,17 +56,17 @@ require_paths:
|
|
56
56
|
- lib
|
57
57
|
required_ruby_version: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
62
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
63
|
requirements:
|
64
|
-
- -
|
64
|
+
- - ">="
|
65
65
|
- !ruby/object:Gem::Version
|
66
66
|
version: '0'
|
67
67
|
requirements: []
|
68
68
|
rubyforge_project:
|
69
|
-
rubygems_version: 2.6.
|
69
|
+
rubygems_version: 2.6.3
|
70
70
|
signing_key:
|
71
71
|
specification_version: 3
|
72
72
|
summary: A small command-line interface framework.
|