minfra-cli 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a3935821334bdae6ba17cf1073ab2f45e0dcae4587bb1483d833bd1fb6106672
4
- data.tar.gz: 99c16f2c6eb5debdeb83e1c25356cae7c1c2e2b48d58805897c50b20968d608e
3
+ metadata.gz: 424233e63c75e0e9b9d65bd7dba78a3f3d2132c547f3cf37b7acb3fdb66784c5
4
+ data.tar.gz: 0ad7e2960fff01802a047e33e955d0b77e8cf3284c4033a18111ccde42175aec
5
5
  SHA512:
6
- metadata.gz: 0fcb53d62afde75285eb6e7f5d9fd29eeb196cd2872f29be992272e2584e508486bf645f6b1a5f180af965817a3de7e8b07e6115add457b6d6d49c29d7fcf4fb
7
- data.tar.gz: e05c55fc240b2e40c6b9c5796988cc42522f0c7c64c9bf4927f9206601ccd0da174f9338c302dfc91964db0b4639242f4b1a64a11d227eae7348ac8df70a1873
6
+ metadata.gz: c689a675040c603ef5acf7f04a6c147212d40749652536599dee68fe0bd078c3e79b4e3f41aec92c2850f5106c72ccee79ad5f9d31e509a7498f8d1bdf4f5644
7
+ data.tar.gz: 93816f96aab379a0bf972808359e7298ae55afea97f204683d07878cb1937689dd2054d3ff3aba5bd3d1a4d49796bf32dc164e8692e3a37f765047331de6d094
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # 2.0.1
2
+ Refactorings
3
+ * installing into Kernel only when 'exec' not at 'init' time
1
4
  # 2.0.0
2
5
  Incompatibility
3
6
  * dropping ruby < 3.1 support
@@ -35,8 +35,7 @@ module Minfra
35
35
  init_plugins
36
36
 
37
37
  register_subcommands
38
-
39
- install # don't like this, but some plugins need the lookup....not good
38
+
40
39
  @plugins.setup
41
40
  require_relative 'main_command'
42
41
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Minfra
4
4
  module Cli
5
- VERSION = '2.0.0'
5
+ VERSION = '2.0.1'
6
6
  end
7
7
  end
data/lib/minfra/cli.rb CHANGED
@@ -51,6 +51,7 @@ module Minfra
51
51
 
52
52
  def self.exec(argv)
53
53
  init(argv) unless init?
54
+ cli.install
54
55
  cli.run
55
56
  end
56
57
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minfra-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Schrammel