gemsmith 13.7.0 → 13.7.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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/README.md +1 -1
- data/lib/gemsmith/identity.rb +1 -1
- data/lib/gemsmith/templates/%gem_name%/spec/lib/%gem_path%/cli_spec.rb.tt +6 -2
- metadata +3 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 748bbbbcbae6f336a186596783f19202e80deb04a658f17f125cc96a557f52f7
|
|
4
|
+
data.tar.gz: 93f894dfdc1df5caa8896312dba320b830c1239512457b6b66b01a7e52dff570
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d94aac63920f59c6d2e54237d1951655da60ce2249a6c0a962197e3c41f4562ce4ae93676fef07225235e33e86e37d47199b0fb3791797b5e05b741aa14c0bba
|
|
7
|
+
data.tar.gz: 61b596ee8cd6d9eb8a957a6c291c31553612ff4d22bbd35d5d45fd3c9520e848f9fdb1a1481c71e182efd5da903095e983f31002cc3ed4854339e7839ddc3280
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/README.md
CHANGED
|
@@ -79,7 +79,7 @@ A command line interface for smithing new Ruby gems.
|
|
|
79
79
|
|
|
80
80
|
## Screencasts
|
|
81
81
|
|
|
82
|
-
[](https://asciinema.org/a/263058)
|
|
83
83
|
|
|
84
84
|
## Requirements
|
|
85
85
|
|
data/lib/gemsmith/identity.rb
CHANGED
|
@@ -19,14 +19,18 @@ RSpec.describe <%= config.dig(:gem, :class) %>::CLI do
|
|
|
19
19
|
shared_examples_for "a version command" do
|
|
20
20
|
it "prints version" do
|
|
21
21
|
result = -> { cli }
|
|
22
|
-
|
|
22
|
+
pattern = /#{Regexp.escape <%= config.dig(:gem, :class) %>::Identity.version_label}\n/
|
|
23
|
+
|
|
24
|
+
expect(result).to output(pattern).to_stdout
|
|
23
25
|
end
|
|
24
26
|
end
|
|
25
27
|
|
|
26
28
|
shared_examples_for "a help command" do
|
|
27
29
|
it "prints usage" do
|
|
28
30
|
result = -> { cli }
|
|
29
|
-
|
|
31
|
+
pattern = /#{Regexp.escape <%= config.dig(:gem, :class) %>::Identity.version_label}\scommands:\n/
|
|
32
|
+
|
|
33
|
+
expect(result).to output(pattern).to_stdout
|
|
30
34
|
end
|
|
31
35
|
end
|
|
32
36
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gemsmith
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 13.7.
|
|
4
|
+
version: 13.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brooke Kuhlmann
|
|
@@ -28,7 +28,7 @@ cert_chain:
|
|
|
28
28
|
dKvURM+1PwDCzC5tvRwjhUJIizau6+MtkFCvJHmaAj1aZL3odcPejHj5Hxt/0CUW
|
|
29
29
|
y84=
|
|
30
30
|
-----END CERTIFICATE-----
|
|
31
|
-
date: 2019-
|
|
31
|
+
date: 2019-09-01 00:00:00.000000000 Z
|
|
32
32
|
dependencies:
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: milestoner
|
|
@@ -472,7 +472,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
472
472
|
- !ruby/object:Gem::Version
|
|
473
473
|
version: '0'
|
|
474
474
|
requirements: []
|
|
475
|
-
rubygems_version: 3.0.
|
|
475
|
+
rubygems_version: 3.0.6
|
|
476
476
|
signing_key:
|
|
477
477
|
specification_version: 4
|
|
478
478
|
summary: A command line interface for smithing new Ruby gems.
|
metadata.gz.sig
CHANGED
|
Binary file
|