yk_command 0.1.0 → 0.1.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: e26d4aff59fe975142ce189b3883e38ef828a4bd6549b1db7beb67b5dafe576f
4
- data.tar.gz: 53b2966b6ca74aae05e891469e24209753fdf77ecbf6d3b97c6680fa55709fea
3
+ metadata.gz: bf3c8bb84f51d7b34d6a1b56f7373a4178671cf416e1c1012896791418a97ccc
4
+ data.tar.gz: 3b8b5231d1de9ca25b8f0c5c677b69720fa58deade6d0432afda4830962600f4
5
5
  SHA512:
6
- metadata.gz: 7a62309d589d6bb552ecbe56624ec6182e71de6f5b04ca9eb3997c4236675e02906f93549aa948a1a93a440339bca049dbc34cfd3dd31af091886f3c0f71ac8c
7
- data.tar.gz: dcacd0947865326e9c2dd73f6bafae24bba36a4aef6f2390b00c8ccd63fb11f217d49a419282cb6af83bc794242400718e0f725c806c522b5b96f100d1b2dcdd
6
+ metadata.gz: 273d7a937ada5e0a0bc66a2636cd1802383fe81d258a40d2291ccdf1984bafb437494640c9848c3e11b82aa6fcc1d94d2275299656735e880b744ddf5149b429
7
+ data.tar.gz: cac978bd3ea105f0c8798a8e7de57f33801830dbf1636e39ebe9dd2b3dbd223527e8b2d92f46a6b8902680773605680055a203ffb267f8e50d2f1f528870e8f5
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- yk_command (0.1.0)
4
+ yk_command (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/bin/yk_command ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+ lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
3
+ $LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)
4
+
5
+ require 'yk_command'
6
+
7
+
8
+ YkCommand::CLI.start
@@ -4,7 +4,8 @@ require 'thor'
4
4
  module YkCommand
5
5
  class CLI < Thor
6
6
  include Thor::Actions
7
- desc 'hello world', 'hello a word'
7
+
8
+ desc 'hello', 'hello a world'
8
9
  method_option :name, aliases: '-n'
9
10
  def hello_world(name)
10
11
  say "hello world #{name}", :yellow
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module YkCommand
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yk_command
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Major Tom
@@ -86,6 +86,7 @@ email:
86
86
  executables:
87
87
  - console
88
88
  - setup
89
+ - yk_command
89
90
  extensions: []
90
91
  extra_rdoc_files: []
91
92
  files:
@@ -100,6 +101,7 @@ files:
100
101
  - Rakefile
101
102
  - bin/console
102
103
  - bin/setup
104
+ - bin/yk_command
103
105
  - lib/yk_command.rb
104
106
  - lib/yk_command/commands.rb
105
107
  - lib/yk_command/version.rb