utter 1.0.15 → 1.0.16
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/bin/utter +3 -3
- data/lib/utter.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f602925ee178d67614c4be296fd44ce8d8b62ef8
|
4
|
+
data.tar.gz: 878ecdeee5f15f4a5cce617c11ff1356579f0753
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb37da6ef392bb5bac9860b262e08fd8fbaefc7cd920063d9e124247b578f031708c0c79e69414cb0ebaa799e7c2f9acfe0ab409b070d7c82c80f21ed55117d4
|
7
|
+
data.tar.gz: 8ded5375888d16603f03c8033b562319bddf558940d39b9e398647f5a8b1f847786e239528dfda135f2e101922cb7de5b1c29b52ab644cd489ce3467916e75fa
|
data/bin/utter
CHANGED
@@ -50,9 +50,9 @@ module Utter
|
|
50
50
|
message = " e.g. api.github.com/v1/repos "
|
51
51
|
puts (info + message)
|
52
52
|
|
53
|
-
project_name = ask(set_color("Organization/Project Name, e.g. 'github': ", :bold)).
|
54
|
-
api_version = ask(set_color("API Version, e.g. 'v1': ",:bold)).
|
55
|
-
service_name = ask(set_color("Microservice Name, e.g. 'repos': ", :bold)).
|
53
|
+
project_name = ask(set_color("Organization/Project Name, e.g. 'github': ", :bold)).downcase
|
54
|
+
api_version = ask(set_color("API Version, e.g. 'v1': ",:bold)).downcase
|
55
|
+
service_name = ask(set_color("Microservice Name, e.g. 'repos': ", :bold)).downcase
|
56
56
|
#domain_name = ask(set_color("Domain Name, e.g. 'scm': ", :bold))
|
57
57
|
|
58
58
|
seprator
|
data/lib/utter.rb
CHANGED
@@ -16,7 +16,7 @@ module Utter
|
|
16
16
|
# MAJOR version when you make incompatible API changes,
|
17
17
|
# MINOR version when you add functionality in a backwards-compatible manner, and
|
18
18
|
# PATCH version when you make backwards-compatible bug fixes.
|
19
|
-
VERSION = "1.0.
|
19
|
+
VERSION = "1.0.16"
|
20
20
|
|
21
21
|
$log = Logger.new(STDOUT)
|
22
22
|
|