cli-mastermind 0.2.0 → 0.2.1

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: 6b685a85669b39aaaf6f66c502c3705f6c3927fb93b719ca511ec1f5ad504b32
4
- data.tar.gz: dd4403bde3e61c28288e4f17e8b7b8f9aa408c15a39e62ff40e73044581d751d
3
+ metadata.gz: b7b6d12ad8040ab9b6a6fefaca23aaca5b9c87751c2fbf20eba9c939ff63ee1d
4
+ data.tar.gz: 4ce3501a447db6a45fb0d3aaf5b56512b8661c893f919bb5ccda5019757d95ee
5
5
  SHA512:
6
- metadata.gz: 0e75a90c7e61ba882085ab1efd9044ee58eb1b6e8f1225314f3449646be530656e5fba2a266f62d2b285c9de688202d674d03cf6520019059cc1f63161cdcec1
7
- data.tar.gz: ed1cee7f906e6ae8983f8b4d75e8c59650c6ed5528aa2cb6a5aeb703ccda2266d06accf35d9a31ff827d0ce8015e41a1aedc5bba27780c6df4221722ce0047e3
6
+ metadata.gz: 2d0e5554916575b0ee3073c815aa4cd923398407d649e3081fd6a4a3cbf7c6511d306331ffbcc35ae94795b0deb542a68d6f6757cad24bee08e2ebfd13f2a2ff
7
+ data.tar.gz: 8366afc5cd05b5699f9b88071b7213ebae28ab55356faad32dec7f2c6b225c671b1fa62d81e2a23aea185effa60154221705f11ede2268171066894523b740e2
@@ -15,15 +15,17 @@ module CLI::Mastermind
15
15
  extend Forwardable
16
16
 
17
17
  def self.included(base)
18
- # The name of the plan. Used to specify the plan from the command line
19
- # or from the interactive menu
20
- base.attr_reader :name
18
+ base.class_eval do
19
+ # The name of the plan. Used to specify the plan from the command line
20
+ # or from the interactive menu
21
+ attr_reader :name
21
22
 
22
- # Displayed in the non-interactive list of available plans
23
- base.attr_reader :description
23
+ # Displayed in the non-interactive list of available plans
24
+ attr_reader :description
24
25
 
25
- # The file this plan was loaded from, if any
26
- base.attr_reader :filename
26
+ # The file this plan was loaded from, if any
27
+ attr_reader :filename
28
+ end
27
29
  end
28
30
 
29
31
  def initialize(name, description=nil, filename=nil, &block)
@@ -8,7 +8,7 @@ module CLI
8
8
  module VERSION
9
9
  RELEASE = 0
10
10
  MAJOR = 2
11
- MINOR = 0
11
+ MINOR = 1
12
12
  PATCH = nil
13
13
 
14
14
  STRING = [RELEASE, MAJOR, MINOR, PATCH].compact.join('.').freeze
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cli-mastermind
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Hall
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.16'
39
+ version: '2.0'
40
40
  type: :development
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.16'
46
+ version: '2.0'
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: rspec
49
49
  requirement: !ruby/object:Gem::Requirement
@@ -61,7 +61,7 @@ dependencies:
61
61
  description: |2
62
62
  Take over the world from your command line!
63
63
  With mastermind, you can quickly build and generate
64
- command line toolkits without having to custom build
64
+ command line tools without having to custom build
65
65
  everything for every project.
66
66
  email:
67
67
  - chall8908@gmail.com
@@ -95,7 +95,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
95
95
  requirements:
96
96
  - - ">="
97
97
  - !ruby/object:Gem::Version
98
- version: '0'
98
+ version: 2.3.0
99
99
  required_rubygems_version: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - ">="
@@ -106,5 +106,5 @@ rubyforge_project:
106
106
  rubygems_version: 2.7.7
107
107
  signing_key:
108
108
  specification_version: 4
109
- summary: Mastermind is a library for constructing command line toolboxes.
109
+ summary: Mastermind is a framework for constructing command line toolboxes.
110
110
  test_files: []