claide 1.0.0.beta.3 → 1.0.0.rc.1

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: 06e20928eea4eabc6a9ab3b7e13cb151e56e87f5
4
- data.tar.gz: 4fdc3e561bc02cbe10c9d0abc2625589bd5c02fc
3
+ metadata.gz: a8dfdee02f66a136e7c3774186331e0312848f98
4
+ data.tar.gz: a80364bf957712efff8a0a1da373eb1c1136de60
5
5
  SHA512:
6
- metadata.gz: d46a4e9260a1d06fab489db3a2ef5e985127dd12eb2345d7d5cd490238414f5564d5178cba91104e20a7f8d2b87e36d8c8c3df7abbeaedb5c88f843259258242
7
- data.tar.gz: b79d6085ba8db4351c710a883cb77e5c956a193e6b7bfc3ea005931f7b47d3b64f35807540c44003401e6d635689aad6f2190577639789a7c05936e0e4afcf80
6
+ metadata.gz: 2f0913e74de3ed4dbb09dde546c95940f48ca52a1c692d95264e3a693497f3e4a00eb84d81f6b2f95e21d1e2d5febac82ea50cf75dff89ec0711da771cc6f29b
7
+ data.tar.gz: 7866487555d3572f980cafee839791e57ead0b434d0d76f48b4ae8a3c50fda7fccc45ef3c5bd96102ea2126d37ca85dc1b5dfaac5ab679092879933c9978ef70
@@ -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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- claide (1.0.0.beta.3)
4
+ claide (1.0.0.rc.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -8,7 +8,7 @@ module CLAide
8
8
  #
9
9
  # CLAide’s version, following [semver](http://semver.org).
10
10
  #
11
- VERSION = '1.0.0.beta.3'.freeze
11
+ VERSION = '1.0.0.rc.1'.freeze
12
12
 
13
13
  require 'claide/ansi'
14
14
  require 'claide/argument'
@@ -1,5 +1,3 @@
1
- require 'claide/ansi'
2
-
3
1
  module CLAide
4
2
  class ANSI
5
3
  # Provides support to wrap strings in ANSI sequences according to the
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.beta.3
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-03-15 00:00:00.000000000 Z
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.2
69
+ rubygems_version: 2.6.3
70
70
  signing_key:
71
71
  specification_version: 3
72
72
  summary: A small command-line interface framework.