toys 0.8.0 → 0.8.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
  SHA256:
3
- metadata.gz: 4b496ae16cf08a819091313e3b0ae83db93f7f7fa47430845fae2c254d35cf17
4
- data.tar.gz: 2d23c96333efb627ee8a89ff91acc841aabaa08e413f3aaa89cc693993edeb82
3
+ metadata.gz: 5fffc7d29ef71d7c1efc9579c2d15a4d117b7be774f6f5e96060e6d11ecaf2b6
4
+ data.tar.gz: a1f74b4bfe86a6a2d7a1fa8e2ccf77bc167e2f272b532fe4cb550193fe74ec55
5
5
  SHA512:
6
- metadata.gz: 8df0872e8a6753a0a8e3a79640b45e96486b8bdf1d5ea7b9bebff4cb7575932ba1fddd634b9deaa637d1e88507d161c563dae885ab6b357bf156c8522ee384a1
7
- data.tar.gz: 4034d1dfec8d5aa21314adcebce48d8351f978f90eb1ea28333f2a12b8007adde48711baadb41f2299a0180ab1a4ee548fed9a753828861e6d284195d84f5887
6
+ metadata.gz: 384dbe2a70efa42a991e4aff7b5b3537b5544dfe432b408cc961a398afd3c5f933ae75431787c8a1c50ab4064b4d5dbab1ba869dc3513f25d793037f9ad78b8b
7
+ data.tar.gz: 5162543351ba210831a9fe6f409ebe64174bdb3da69662b5e9441b51a21f43a4d06d60e46910a64d29434f5cf42988a8bf08a8e8b8d8f361b625f090d6a752b5
data/.yardopts CHANGED
@@ -1,7 +1,7 @@
1
1
  --no-private
2
2
  --title=Toys
3
3
  --markup=markdown
4
- --markup-provider redcarpet
4
+ --markup-provider kramdown
5
5
  --main=README.md
6
6
  ./lib/**/*.rb
7
7
  -
@@ -1,5 +1,7 @@
1
1
  # Release History
2
2
 
3
+ ### 0.8.1 / Unreleased
4
+
3
5
  ### 0.8.0 / 2019-06-20
4
6
 
5
7
  This is a major update with significant new features and a bunch of fixes.
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Toys
2
2
 
3
- Toys is a configurable command line tool. Write commands in config files using
4
- a simple DSL, and Toys will provide the command line executable and take care
5
- of all the details such as argument parsing, online help, and error reporting.
3
+ Toys is a configurable command line tool. Write commands in Ruby using a simple
4
+ DSL, and Toys will provide the command line executable and take care of all the
5
+ details such as argument parsing, online help, and error reporting.
6
6
 
7
7
  Toys is designed for software developers, IT professionals, and other power
8
8
  users who want to write and organize scripts to automate their workflows. It
@@ -2,9 +2,9 @@
2
2
 
3
3
  # Toys User Guide
4
4
 
5
- Toys is a configurable command line tool. Write commands in config files using
6
- a simple DSL, and Toys will provide the command line executable and take care
7
- of all the details such as argument parsing, online help, and error reporting.
5
+ Toys is a configurable command line tool. Write commands in Ruby using a simple
6
+ DSL, and Toys will provide the command line executable and take care of all the
7
+ details such as argument parsing, online help, and error reporting.
8
8
 
9
9
  Toys is designed for software developers, IT professionals, and other power
10
10
  users who want to write and organize scripts to automate their workflows. It
@@ -662,7 +662,7 @@ Inferred flags will convert underscores to hyphens. So the following two
662
662
  definitions are also equivalent:
663
663
 
664
664
  flag :call_out
665
- flag :call_out, "--call-out
665
+ flag :call_out, "--call-out"
666
666
 
667
667
  #### Handling optional values
668
668
 
@@ -26,5 +26,5 @@ module Toys
26
26
  # Current version of the Toys command line executable.
27
27
  # @return [String]
28
28
  #
29
- VERSION = "0.8.0"
29
+ VERSION = "0.8.1"
30
30
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: toys
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Azuma
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-21 00:00:00.000000000 Z
11
+ date: 2019-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: toys-core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.8.0
19
+ version: 0.8.1
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.8.0
26
+ version: 0.8.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: highline
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '2.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: kramdown
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.1'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.1'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: minitest
43
57
  requirement: !ruby/object:Gem::Requirement
@@ -94,20 +108,6 @@ dependencies:
94
108
  - - "~>"
95
109
  - !ruby/object:Gem::Version
96
110
  version: '12.0'
97
- - !ruby/object:Gem::Dependency
98
- name: redcarpet
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - "~>"
102
- - !ruby/object:Gem::Version
103
- version: '3.4'
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - "~>"
109
- - !ruby/object:Gem::Version
110
- version: '3.4'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: rspec
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -128,31 +128,31 @@ dependencies:
128
128
  requirements:
129
129
  - - "~>"
130
130
  - !ruby/object:Gem::Version
131
- version: 0.71.0
131
+ version: 0.74.0
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
- version: 0.71.0
138
+ version: 0.74.0
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: yard
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
143
  - - "~>"
144
144
  - !ruby/object:Gem::Version
145
- version: 0.9.19
145
+ version: 0.9.20
146
146
  type: :development
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - "~>"
151
151
  - !ruby/object:Gem::Version
152
- version: 0.9.19
153
- description: Toys is a configurable command line tool. Write commands in config files
154
- using a simple DSL, and Toys will provide the command line executable and take care
155
- of all the details such as argument parsing, online help, and error reporting. Toys
152
+ version: 0.9.20
153
+ description: Toys is a configurable command line tool. Write commands in Ruby using
154
+ a simple DSL, and Toys will provide the command line executable and take care of
155
+ all the details such as argument parsing, online help, and error reporting. Toys
156
156
  is designed for software developers, IT professionals, and other power users who
157
157
  want to write and organize scripts to automate their workflows. It can also be used
158
158
  as a replacement for Rake, providing a more natural command line interface for your