utter 1.0.12 → 1.0.13
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/{cli.rb → utter} +4 -3
- data/{bin/quotes.rb → lib/generators/tips.rb} +1 -1
- data/lib/utter.rb +1 -1
- metadata +4 -4
- /data/{bin → lib/generators}/generators.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 370965966bd77c11c82df575a8082c792d7525ed
|
4
|
+
data.tar.gz: 894b20b135ade42f969f9bdbb22292993f52277f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 194c886edfce45e709114366799713dc0d741c0dff2a2d8b477ec78964b48513d6864e87634ec320dd1b0518dd5619361fe1f26bfb2ea16a0f6708d923450a8b
|
7
|
+
data.tar.gz: 989307757d0529944712756b1c3f2081b5b31c8cc73f2a8a763c5f35706a13a0cdc38b26ff66f60e036dcad7ce023489f626b7908a2376f1c72a7b0f6cfa7c37
|
data/bin/{cli.rb → utter}
RENAMED
@@ -1,8 +1,9 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
3
|
require "thor"
|
4
|
-
require_relative '
|
5
|
-
require_relative 'generators'
|
4
|
+
require_relative './../lib/utter'
|
5
|
+
require_relative './../lib/generators/tips'
|
6
|
+
require_relative './../lib/generators/generators'
|
6
7
|
|
7
8
|
module Utter
|
8
9
|
#This directory contains common microservice templates
|
@@ -13,7 +14,7 @@ module Utter
|
|
13
14
|
#- User generate a template and specifiy certain attr to customize the template to their own needs.
|
14
15
|
#- User then use/further developm the generated microservice.
|
15
16
|
class CLI < Thor
|
16
|
-
include Utter::
|
17
|
+
include Utter::Tips
|
17
18
|
|
18
19
|
no_commands do
|
19
20
|
def 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.13"
|
20
20
|
|
21
21
|
$log = Logger.new(STDOUT)
|
22
22
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: utter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- zotherstupidguy
|
@@ -332,12 +332,12 @@ files:
|
|
332
332
|
- Gemfile
|
333
333
|
- README.md
|
334
334
|
- Rakefile
|
335
|
-
- bin/cli.rb
|
336
335
|
- bin/console
|
337
|
-
- bin/generators.rb
|
338
336
|
- bin/highline.rb
|
339
|
-
- bin/quotes.rb
|
340
337
|
- bin/setup
|
338
|
+
- bin/utter
|
339
|
+
- lib/generators/generators.rb
|
340
|
+
- lib/generators/tips.rb
|
341
341
|
- lib/internals/core/auth.rb
|
342
342
|
- lib/internals/core/microservice.rb
|
343
343
|
- lib/internals/core/service_discovery.rb
|
File without changes
|