hubber 0.1.1 → 0.1.2
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/Gemfile.lock +20 -0
- data/exe/hubber +6 -2
- data/lib/Hubber/cli.rb +3 -0
- data/lib/Hubber/command.rb +20 -0
- data/lib/Hubber/command/base.rb +13 -0
- data/lib/Hubber/commands/application/application_command.rb +11 -0
- data/lib/Hubber/version.rb +1 -1
- metadata +6 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0fda1cfc959553b1fa5aaa3024edceb199afc86e2e51fe4268646f0da271ecf7
|
4
|
+
data.tar.gz: 494b90b2bcb7afcce6c54a6d0fc1d62671a2d633d0faf629d245f0c522f66d9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3452779411fcc8a3df645759ab586ac448ec8ce424d1db07efca73473574681c7d47089cf7bbd1c005dcebf25a9dac172e9a40d4d7c5cb2710840b5317aa7e08
|
7
|
+
data.tar.gz: 5f8e65dd14110d927e76d96a4c4a9d4c24f316ca3f0bd120e5f3145012b3665f58052edbb48af26537f745a8d20a2f58da9f49f98a30082915ceea85dabf0379
|
data/Gemfile.lock
ADDED
data/exe/hubber
CHANGED
data/lib/Hubber/cli.rb
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
require "active_support"
|
2
|
+
require "active_support/dependencies/autoload"
|
3
|
+
|
4
|
+
require "thor"
|
5
|
+
|
6
|
+
module Hubber
|
7
|
+
module Command
|
8
|
+
extend ActiveSupport::Autoload
|
9
|
+
|
10
|
+
autoload :Base
|
11
|
+
|
12
|
+
class << self
|
13
|
+
def invoke(full_namespace, args = [], **config)
|
14
|
+
require_relative "commands/application/application_command"
|
15
|
+
|
16
|
+
ApplicationCommand.perform(:perform, args, config)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
data/lib/Hubber/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hubber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jimmy Fan
|
@@ -49,6 +49,7 @@ files:
|
|
49
49
|
- ".gitignore"
|
50
50
|
- CODE_OF_CONDUCT.md
|
51
51
|
- Gemfile
|
52
|
+
- Gemfile.lock
|
52
53
|
- Hubber.gemspec
|
53
54
|
- LICENSE.txt
|
54
55
|
- README.md
|
@@ -57,6 +58,10 @@ files:
|
|
57
58
|
- bin/setup
|
58
59
|
- exe/hubber
|
59
60
|
- lib/Hubber.rb
|
61
|
+
- lib/Hubber/cli.rb
|
62
|
+
- lib/Hubber/command.rb
|
63
|
+
- lib/Hubber/command/base.rb
|
64
|
+
- lib/Hubber/commands/application/application_command.rb
|
60
65
|
- lib/Hubber/version.rb
|
61
66
|
homepage: https://github.com/j105/hubber
|
62
67
|
licenses:
|