bogo-cli 0.1.8 → 0.1.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a5e484ba82ada50db7903104079c504bee1a9487
4
- data.tar.gz: 0bbe67721baf757288c866aa2543405fe542efe7
3
+ metadata.gz: 6496e4592603ec28d442abc2f66c5d39a4c51469
4
+ data.tar.gz: fd61579ed6f641e2d7e66fb2984d1ac1865c8a5f
5
5
  SHA512:
6
- metadata.gz: ad79d357b8e70838c76b90d4f511989b93e2102fd538a0feb3f54bc337a162ecb907c67ece0c27deca2221b233bd9af33cc50f15de92441bfd1900315dd594af
7
- data.tar.gz: 2f6444988b7249e27015127605f2e382027caad593ee6633012776373e03e0d283e304626cafe2095d9dc75c58676108f6e691f7b9abb2eacf1a26768e89d8f7
6
+ metadata.gz: 407792bce6252ae2c5dca9670f49c366e58881e7a8e05331546ae05a8a45292ebdcf3b2d0a5b319ca3973f34a6f835c81abfd3d44d50e24273d91b6428f94d64
7
+ data.tar.gz: f7883b46ead57227688a85df247ae9be02c3a39d71d1fdfed6e08137841bdff5389239c5e64c0cc5101fc3888b705a294d2b5c4a949501878650196139cd229c
@@ -1,3 +1,6 @@
1
+ ## v0.1.10
2
+ * Pass namespaced configuration through to UI
3
+
1
4
  ## v0.1.8
2
5
  * Always load bogo-config
3
6
 
@@ -17,14 +17,14 @@ module Bogo
17
17
  # Build new command instance
18
18
  #
19
19
  # @return [self]
20
- def initialize(opts, args)
21
- @options = opts.to_hash.to_smash(:snake)
20
+ def initialize(cli_opts, args)
21
+ @options = cli_opts.to_hash.to_smash(:snake)
22
22
  @arguments = args
23
23
  ui_args = Smash.new(
24
24
  :app_name => options.fetch(:app_name,
25
25
  self.class.name.split('::').first
26
26
  )
27
- ).merge(@options)
27
+ ).merge(opts)
28
28
  @ui = options.delete(:ui) || Ui.new(ui_args)
29
29
  load_config!
30
30
  end
@@ -1,6 +1,6 @@
1
1
  module Bogo
2
2
  module Cli
3
3
  # Current library version
4
- VERSION = Gem::Version.new('0.1.8')
4
+ VERSION = Gem::Version.new('0.1.10')
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bogo-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Roberts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-06 00:00:00.000000000 Z
11
+ date: 2015-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bogo