toys 0.3.8 → 0.3.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/.yardopts +0 -1
- data/CHANGELOG.md +10 -0
- data/README.md +7 -9
- data/docs/guide.md +729 -19
- data/lib/toys/standard_cli.rb +32 -14
- data/lib/toys/templates/clean.rb +1 -1
- data/lib/toys/templates/gem_build.rb +8 -9
- data/lib/toys/templates/minitest.rb +18 -6
- data/lib/toys/templates/rdoc.rb +145 -0
- data/lib/toys/templates/rubocop.rb +13 -2
- data/lib/toys/templates/yardoc.rb +132 -10
- data/lib/toys/version.rb +1 -1
- metadata +5 -5
- data/docs/tutorial.md +0 -11
data/lib/toys/version.rb
CHANGED
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.3.
|
4
|
+
version: 0.3.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Azuma
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-06-
|
11
|
+
date: 2018-06-25 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.3.
|
19
|
+
version: 0.3.9
|
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.3.9
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: minitest
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -114,12 +114,12 @@ files:
|
|
114
114
|
- builtins/do.rb
|
115
115
|
- builtins/system.rb
|
116
116
|
- docs/guide.md
|
117
|
-
- docs/tutorial.md
|
118
117
|
- lib/toys.rb
|
119
118
|
- lib/toys/standard_cli.rb
|
120
119
|
- lib/toys/templates/clean.rb
|
121
120
|
- lib/toys/templates/gem_build.rb
|
122
121
|
- lib/toys/templates/minitest.rb
|
122
|
+
- lib/toys/templates/rdoc.rb
|
123
123
|
- lib/toys/templates/rubocop.rb
|
124
124
|
- lib/toys/templates/yardoc.rb
|
125
125
|
- lib/toys/version.rb
|
data/docs/tutorial.md
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
# @title Toys Tutorial
|
2
|
-
|
3
|
-
# Toys Tutorial
|
4
|
-
|
5
|
-
Toys is a command line binary that lets you build your own personal suite of
|
6
|
-
command line tools using a Ruby DSL. Toys handles argument parsing, error
|
7
|
-
reporting, logging, help text, and many other details for you. Toys is designed
|
8
|
-
for software developers, IT specialists, and other power users who want to
|
9
|
-
write and organize scripts to automate their workflows.
|
10
|
-
|
11
|
-
(To be written)
|