inventarium 0.1.2 → 0.2.0

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
  SHA256:
3
- metadata.gz: 27fda16dcc64bc9bf77aeb45b8efc17abf0c671c621775b152e00977ed302d20
4
- data.tar.gz: ed070f0be91bb2eabad0e1186cd279deaff6c24779c30821858f328ff4997e71
3
+ metadata.gz: 1dce2dfe30e6634640b0e8248c87b45a5de34ef9c41d1c524a63f2d6bd66a62f
4
+ data.tar.gz: 8a66c2006593af39169c6ba0ab7c144fa05d065eccf05d28f9bca506d3d19caf
5
5
  SHA512:
6
- metadata.gz: 154566a0597ee1aa40aa199b4d62b363add319e1e37dc711592f831bc8159486f2d1931f5af7454d2396773b1c40ed20230c8525be74ae2be484fce748b9642a
7
- data.tar.gz: 58326ef545188d14cf3f98dc9119201a54198160da526d5cf4bffa6884b71e08444051bd3f10ad7eb504e7853f85d2b762c2c8effa90c6f602f9b9a8b3feb303
6
+ metadata.gz: 72916d7d94596cf7caa35bb87388d841ef825f50ba49f0574029d55e08ed604ec6d1b737a5ef29788056f6e21b5b2a8c8b0e02cb7779a59b907654317cf23df3
7
+ data.tar.gz: cb83ab763a0e1792d427c39649f2f28b3c0966bb88f33a848774667c6ef9ccf01afd2dc9d91dec34f349143a5582d337b0689ae89263e0a3fb699b77c6b1c9e1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- inventarium (0.1.2)
4
+ inventarium (0.2.0)
5
5
  dry-cli (~> 0.4)
6
6
  pastel
7
7
  tty-progressbar
data/bin/inventarium CHANGED
@@ -1,6 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require "bundler/setup"
4
3
  require_relative "./../lib/inventarium"
5
-
6
4
  Dry::CLI.new(Inventarium::CLI).call
data/lib/inventarium.rb CHANGED
@@ -1,3 +1,4 @@
1
+ require "pastel"
1
2
  require_relative './inventarium/version'
2
3
  require_relative './inventarium/cli'
3
4
 
@@ -1,5 +1,3 @@
1
- require "pastel"
2
-
3
1
  module Inventarium
4
2
  module CLI
5
3
  class Init < Dry::CLI::Command
@@ -19,8 +17,6 @@ module Inventarium
19
17
 
20
18
  FileUtils.cp(template_file_path, dir)
21
19
  puts "[#{pastel.green('DONE')}]"
22
-
23
- # puts "Created a new service.yml file in '#{dir}' directory"
24
20
  end
25
21
 
26
22
  private
@@ -1,5 +1,4 @@
1
1
  require 'tty-progressbar'
2
- require "pastel"
3
2
  require 'net/http'
4
3
  require 'yaml'
5
4
  require 'json'
@@ -1,3 +1,3 @@
1
1
  module Inventarium
2
- VERSION = '0.1.2'
2
+ VERSION = '0.2.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inventarium
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anton Davydov