geny 1.0.0 → 1.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
  SHA1:
3
- metadata.gz: 46e41ae2c77c16d67afc70f779435a8698e742b1
4
- data.tar.gz: a8388419c14c4af33934deb9c60ea9628e447579
3
+ metadata.gz: fd2c052d9f741cbe22bc07f6a332f9cff359f1b8
4
+ data.tar.gz: a6d6c1a14bebd8595fd9f7728884d47a5051d4d6
5
5
  SHA512:
6
- metadata.gz: 99d2a29982aeaf49a8630893e912441fafccfc279514235da13ab5d431075db6087fc7ad75c7e7eeaea774a31aadd0d52428c77a6ea33af4d559b70d1cbadf5b
7
- data.tar.gz: 61d5ca7ae6f8efe681f0046da27523e1a4dc6f3dcfd99d36a2e7635297c5ccabeeb877c6e2f58278e42299cff59dba4e21570a60bec1f14034bd7b8c95b93a71
6
+ metadata.gz: d3dc0a083fa1b61ace358d50698763c0d9f230b4d4b7fa9e3ecb6e04d9e8520e99e0a7ace4813627fbc44f6dd9571f552e77165d8a8a73c21c8b4984b9bca41c
7
+ data.tar.gz: 4038ffaab463379e9ec4db8b9fe625e019ad3c15fc94ef7ea897358553d58932b0714aefb480da022eadf0dd1cb2275555015192a883a6e2ad818a30d306e54a
data/lib/geny/command.rb CHANGED
@@ -17,6 +17,10 @@ module Geny
17
17
  # @return [String]
18
18
  attr_reader :root
19
19
 
20
+ # The registry that was used to find this command
21
+ # @return [Registry]
22
+ attr_reader :registry
23
+
20
24
  # Create a new command
21
25
  # @param registry [Registry] registry used to find this command
22
26
  # @param name [String] name of the command
@@ -24,6 +28,7 @@ module Geny
24
28
  def initialize(name:, root:, registry:)
25
29
  @name = name
26
30
  @root = root
31
+ @registry = registry
27
32
  end
28
33
 
29
34
  # The path where the command is located
data/lib/geny/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Geny
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geny
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ray Zane