foundation_kit 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: afa1fd9ebda35a8589566b0a03c83501f0f897a5
4
+ data.tar.gz: 91b595a9e1d85428f3b2bcc30a18300a6cb80b8c
5
+ SHA512:
6
+ metadata.gz: 1bf5eedaf8fe98c78267a0f22f5e69bfcd12be37cbaeba7c94705a97a36dfe5f1d849413bf9cf183b955280e220d9e135bfd3dae3bf78e064749cac7d6c806a4
7
+ data.tar.gz: eacae966c7ab6433de20de2a3d8244f2fdcd5dde1b8886c53968c010016cd5fe382dfac6e8008b3ca7fcfedca4bfc4fd9201b0cddb7167e84acc84366ab467f2
data/.gitignore ADDED
@@ -0,0 +1,50 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+ .rspec_status
13
+
14
+ # Used by dotenv library to load environment variables.
15
+ # .env
16
+
17
+ ## Specific to RubyMotion:
18
+ .dat*
19
+ .repl_history
20
+ build/
21
+ *.bridgesupport
22
+ build-iPhoneOS/
23
+ build-iPhoneSimulator/
24
+
25
+ ## Specific to RubyMotion (use of CocoaPods):
26
+ #
27
+ # We recommend against adding the Pods directory to your .gitignore. However
28
+ # you should judge for yourself, the pros and cons are mentioned at:
29
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
30
+ #
31
+ # vendor/Pods/
32
+
33
+ ## Documentation cache and generated files:
34
+ /.yardoc/
35
+ /_yardoc/
36
+ /doc/
37
+ /rdoc/
38
+
39
+ ## Environment normalization:
40
+ /.bundle/
41
+ /vendor/bundle
42
+ /lib/bundler/man/
43
+
44
+ # for a library or gem, you might want to ignore these files since the code is
45
+ # intended to run in multiple environments; otherwise, check them in:
46
+ Gemfile.lock
47
+ # .ruby-version
48
+ # .ruby-gemset
49
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
50
+ .rvmrc
data/.rubocop.yml ADDED
@@ -0,0 +1 @@
1
+ inherit_from: .rubocop_todo.yml
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,25 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2018-03-24 13:50:32 -0800 using RuboCop version 0.54.0.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 2
10
+ Style/Documentation:
11
+ Exclude:
12
+ - 'spec/**/*'
13
+ - 'test/**/*'
14
+ - 'lib/foundation_kit/version.rb'
15
+
16
+ # Offense count: 2
17
+ # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
18
+ # URISchemes: http, https
19
+ Metrics/LineLength:
20
+ Enabled: false
21
+
22
+
23
+ Metrics/BlockLength:
24
+ Exclude:
25
+ - 'spec/**/*'
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
+
7
+ # Specify your gem's dependencies in foundation_kit.gemspec
8
+ gemspec
9
+
10
+ gem 'guard'
11
+ gem 'guard-rspec'
12
+ gem 'guard-rubocop'
13
+ gem 'rubocop', require: false
data/Guardfile ADDED
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ # A sample Guardfile
4
+ # More info at https://github.com/guard/guard#readme
5
+
6
+ ## Uncomment and set this to only include directories you want to watch
7
+ # directories %w(app lib config test spec features) \
8
+ # .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}
9
+
10
+ ## Note: if you are using the `directories` clause above and you are not
11
+ ## watching the project directory ('.'), then you will want to move
12
+ ## the Guardfile to a watched dir and symlink it back, e.g.
13
+ #
14
+ # $ mkdir config
15
+ # $ mv Guardfile config/
16
+ # $ ln -s config/Guardfile .
17
+ #
18
+ # and, you'll have to watch "config/Guardfile" instead of "Guardfile"
19
+
20
+ # Note: The cmd option is now required due to the increasing number of ways
21
+ # rspec may be run, below are examples of the most common uses.
22
+ # * bundler: 'bundle exec rspec'
23
+ # * bundler binstubs: 'bin/rspec'
24
+ # * spring: 'bin/rspec' (This will use spring if running and you have
25
+ # installed the spring binstubs per the docs)
26
+ # * zeus: 'zeus rspec' (requires the server to be started separately)
27
+ # * 'just' rspec: 'rspec'
28
+
29
+ guard :rspec, cmd: 'bundle exec rspec' do
30
+ require 'guard/rspec/dsl'
31
+ dsl = Guard::RSpec::Dsl.new(self)
32
+
33
+ # Feel free to open issues for suggestions and improvements
34
+
35
+ # RSpec files
36
+ rspec = dsl.rspec
37
+ watch(rspec.spec_helper) { rspec.spec_dir }
38
+ watch(rspec.spec_support) { rspec.spec_dir }
39
+ watch(rspec.spec_files)
40
+
41
+ # Ruby files
42
+ ruby = dsl.ruby
43
+ dsl.watch_spec_files_for(ruby.lib_files)
44
+ end
45
+
46
+ guard :rubocop do
47
+ watch(/.+\.rb$/)
48
+ watch(%r{(?:.+/)?\.rubocop(?:_todo)?\.yml$}) { |m| File.dirname(m[0]) }
49
+ end
data/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
data/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # FoundationKit
2
+ ## Installation
3
+
4
+ Add this line to your application's Gemfile:
5
+
6
+ ```ruby
7
+ gem 'foundation_kit'
8
+ ```
9
+
10
+ And then execute:
11
+
12
+ $ bundle
13
+
14
+ Or install it yourself as:
15
+
16
+ $ gem install foundation_kit
17
+
18
+ ## Usage
19
+
20
+ TODO
21
+
22
+ ## Development
23
+
24
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
25
+
26
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
27
+
28
+ ## Contributing
29
+
30
+ Bug reports and pull requests are welcome on GitHub at https://github.com/jcrum/foundation_kit.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'bundler/setup'
5
+ require 'foundation_kit'
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require 'irb'
15
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,38 @@
1
+
2
+ # frozen_string_literal: true
3
+
4
+ lib = File.expand_path('lib', __dir__)
5
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
6
+ require 'foundation_kit/version'
7
+
8
+ Gem::Specification.new do |spec|
9
+ spec.name = 'foundation_kit'
10
+ spec.version = FoundationKit::VERSION::STRING
11
+ spec.authors = ['Jason Crum']
12
+ spec.email = ['me@jasonmcrum.com']
13
+
14
+ spec.summary = 'FoundationKit provides....'
15
+ spec.description = 'FoundationKit provides....'
16
+ spec.homepage = 'https://github.com/jcrum/foundation_kit'
17
+
18
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
19
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
20
+ if spec.respond_to?(:metadata)
21
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
22
+ else
23
+ raise 'RubyGems 2.0 or newer is required to protect against ' \
24
+ 'public gem pushes.'
25
+ end
26
+
27
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
28
+ f.match(%r{^(test|spec|features)/})
29
+ end
30
+ spec.bindir = 'exe'
31
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
32
+ spec.require_paths = ['lib']
33
+
34
+ spec.add_development_dependency 'bundler', '~> 1.16'
35
+ spec.add_development_dependency 'rake', '~> 10.0'
36
+ spec.add_development_dependency 'rspec', '~> 3.0'
37
+ spec.add_development_dependency 'yard'
38
+ end
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FoundationKit
4
+ #
5
+ # BaseCass provides a core set of functionality for all
6
+ # classes that extend from it.
7
+ #
8
+ # @author [jmc]
9
+ #
10
+ class BaseClass
11
+ # The initialize method - DUH
12
+ # @param **args it accepts all of the children arguments
13
+ def initialize(**args)
14
+ after_initialize(args)
15
+ end
16
+
17
+ # Returns a Hash representation of the current object
18
+ # @return [Hash]
19
+ # @example Convert an instance to a hash
20
+ # myobj.to_h
21
+ def to_h
22
+ temp = {}
23
+ instance_variables.each do |var|
24
+ temp[var.to_s.delete('@').to_sym] = hide_instance_variables(var)
25
+ end
26
+ temp
27
+ end
28
+
29
+ def to_s
30
+ to_s_string = "#{self.class}: "
31
+ instance_variables.each do |var|
32
+ to_s_string += "#{var}: #{hide_instance_variables(var)}, "
33
+ end
34
+ to_s_string += "object_id: 0x00#{(object_id << 1).to_s(16)}"
35
+ to_s_string
36
+ end
37
+ alias inspect to_s
38
+
39
+ private
40
+
41
+ # After initialize hook - should be defined in children class
42
+ # @param **args should simple take in all the parameters from the initialize method by default
43
+ def hide_instance_variables(var)
44
+ if !%i[@password @pwd @pass].include? var
45
+ instance_variable_get(var)
46
+ else
47
+ '**************'
48
+ end
49
+ end
50
+
51
+ def after_initialize(**_args)
52
+ nil
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ #
4
+ # Adds additional behavior to Class
5
+ #
6
+ # @author [jcrum]
7
+ #
8
+ class Class
9
+ #
10
+ # Provides the ability to define an abstract method on a class
11
+ # @param *args
12
+ #
13
+ # @raise [FoundationKit::Errors::ClassNotImplmentedError]
14
+ # @raise [FoundationKit::Errors::MethodNotImplmentedError]
15
+ def abstract_definition(*args)
16
+ # rubocop:disable Style/GuardClause, Lint/UnusedBlockArgument, Lint/ShadowingOuterLocalVariable
17
+ args.each do |method_name|
18
+ define_method(method_name) do |*args|
19
+ if method_name == :initialize
20
+ raise FoundationKit::Errors::ClassNotImplementedError.new(class_name: self.class.name)
21
+ else
22
+ raise FoundationKit::Errors::MethodNotImplementedError.new(class_name: self.class.name, method_name: method_name)
23
+ end
24
+ end
25
+ # rubocop:enable Style/GuardClause, Lint/UnusedBlockArgument, Lint/ShadowingOuterLocalVariable
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,75 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FoundationKit
4
+ #
5
+ # Implements an abstract class for the command design pattern.
6
+ #
7
+ # @author jcrum
8
+ #
9
+ class Command < BaseClass
10
+ attr_reader :description
11
+ attr_reader :execution_order
12
+ attr_reader :result
13
+
14
+ #
15
+ # Creates an instance of the Command class
16
+ #
17
+ # @param description: nil [String] Description of the command.
18
+ # @param execution_order: nil [Integer] Used to determine order of execution
19
+ # . if it is part of a composite command exection plan and order matters.
20
+ # @param **args Additional arguments used for subclasses to pass to
21
+ # . post initialization hooks.
22
+ #
23
+ # @return [FoundationKit::Command]
24
+ def initialize(description: nil, execution_order: nil, **args)
25
+ @description = description
26
+ @execution_order = execution_order
27
+ @success = false
28
+
29
+ super(description: description, execution_order: execution_order, **args)
30
+ end
31
+
32
+ #
33
+ # Executes the logic for the command
34
+ #
35
+ # @abstract
36
+ # @raise [FoundationKit::Errors::MethodNotImplmentedError]
37
+ abstract_definition :execute
38
+
39
+ #
40
+ # Successful execution checker
41
+ #
42
+ # @return [Boolean] Was the execution of the command successful?
43
+ def success?
44
+ @success || false
45
+ end
46
+
47
+ #
48
+ # Hook to execute if the command was successful
49
+ #
50
+ # @abstract
51
+ # @raise [FoundationKit::Errors::MethodNotImplmentedError]
52
+ abstract_definition :on_success
53
+
54
+ #
55
+ # Hook to execute if the command was not successful
56
+ #
57
+ # @abstract
58
+ # @raise [FoundationKit::Errors::MethodNotImplmentedError]
59
+ abstract_definition :on_failure
60
+
61
+ #
62
+ # Hook to execute before the command executes the core logic
63
+ #
64
+ # @abstract
65
+ # @raise [FoundationKit::Errors::MethodNotImplmentedError]
66
+ abstract_definition :before_execution
67
+
68
+ #
69
+ # Hook to execute after the command executes the core logic
70
+ #
71
+ # @abstract
72
+ # @raise [FoundationKit::Errors::MethodNotImplmentedError]
73
+ abstract_definition :after_execution
74
+ end
75
+ end
@@ -0,0 +1,43 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FoundationKit
4
+ #
5
+ # Implements the Composite Command design pattern.
6
+ #
7
+ # @author jcrum
8
+ #
9
+ class CompositeCommand < BaseClass
10
+ attr_reader :commands
11
+
12
+ #
13
+ # Creates an instance of the Composite Command
14
+ # @param **args Additional arguments used for subclasses to pass to
15
+ # . post initialization hooks.
16
+ #
17
+ # @return [FoundationKit::CompositeCommand]
18
+ #
19
+ def initialize(**args)
20
+ @commands = []
21
+
22
+ super(args)
23
+ end
24
+
25
+ #
26
+ # Adds a command for execution
27
+ # @param command [FoundationKit::Command] and instance of a class that
28
+ # . extends FoundationKit::Command
29
+ #
30
+ def add_command(command)
31
+ commands << command
32
+ end
33
+
34
+ #
35
+ # Executes the commands
36
+ #
37
+ # @todo Implement execution order
38
+ #
39
+ def execute
40
+ commands.each(&:execute)
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FoundationKit
4
+ #
5
+ # Base connector class
6
+ #
7
+ # @author [jcrum]
8
+ #
9
+ class Connector < BaseClass
10
+ #
11
+ # Connect method
12
+ #
13
+ # @abstract
14
+ # @raise [FoundationKit::Errors::MethodNotImplmentedError]
15
+ abstract_definition :connect
16
+ abstract_definition :disconnect
17
+
18
+ def initialize(**args)
19
+ @user = args[:user]
20
+ @password = args[:password]
21
+ @host = args[:host]
22
+ @port = args[:port]
23
+ @database = args[:database]
24
+ @options = args[:options]
25
+ @adapter = args[:adapter]
26
+ super(args)
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,43 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FoundationKit
4
+ #
5
+ # FoundationKit::Errors
6
+ #
7
+ # @author [jcrum]
8
+ #
9
+ module Errors
10
+ #
11
+ # Abstract Method Error
12
+ #
13
+ # @author [jcrum]
14
+ #
15
+ class MethodNotImplementedError < StandardError
16
+ #
17
+ # @param class_name: [String] name of the class where the abstract method is called
18
+ # @param method_name: [String] name of the abstract method called
19
+ # @param message: 'is an abstract method and has not been implemented yet.' [String] message to override
20
+ #
21
+ # @return MethodNotImplementedError
22
+ def initialize(class_name:, method_name:, message: 'is an abstract method and has not been implemented yet.')
23
+ super("#{class_name}##{method_name} #{message}")
24
+ end
25
+ end
26
+
27
+ #
28
+ # Abstract Class Error
29
+ #
30
+ # @author [jcrum]
31
+ #
32
+ class ClassNotImplementedError < StandardError
33
+ #
34
+ # @param class_name: [String] name of the class where the abstract method is called
35
+ # @param message: 'is an abstract class and has not been implmented yet.' [String] message to override
36
+ #
37
+ # @return ClassNotImplementedError
38
+ def initialize(class_name:, message: 'is an abstract class and has not been implmented yet.')
39
+ super("#{class_name} #{message}")
40
+ end
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,76 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FoundationKit
4
+ #
5
+ # Inventory mixin methods
6
+ #
7
+ # @author [jcrum]
8
+ #
9
+ module InventoryMixin
10
+ #
11
+ # Adds an item to inventory
12
+ # @param name: [String,Symbol] Name of the item being added
13
+ # @param item: [Object] The item being added to inventory
14
+ def add(name:, item:)
15
+ stock[name.to_sym] = item
16
+ end
17
+
18
+ #
19
+ # Returns the inventory count
20
+ #
21
+ # @return [Integer]
22
+ def count
23
+ stock.count
24
+ end
25
+
26
+ #
27
+ # Returns whether or not the inventory has items
28
+ #
29
+ # @return [Boolean]
30
+ def stock?
31
+ !stock.count.zero?
32
+ end
33
+
34
+ #
35
+ # Returns whether or not the Inventory is empty
36
+ #
37
+ # @return [type] [description]
38
+ def out_of_stock?
39
+ stock.count.zero?
40
+ end
41
+
42
+ #
43
+ # Removes an item from Inventory
44
+ # @param name: [String, Symbol] Item name to be removed
45
+ def remove(name:)
46
+ stock.delete(name.to_sym)
47
+ end
48
+
49
+ #
50
+ # Returns the current items in Inventory
51
+ #
52
+ # @return [Hash]
53
+ def stock
54
+ @stock ||= {}
55
+ end
56
+
57
+ #
58
+ # Allows an item in inventory to be used
59
+ # @param name: [String, Symbol]
60
+ #
61
+ # @return [Object] Item referenced by the supplied name
62
+ def use(name:)
63
+ stock[name.to_sym]
64
+ end
65
+ end
66
+
67
+ #
68
+ # Inventory provides ability to Store related items
69
+ # and 'use' them by referencing their names
70
+ #
71
+ # @author [jcrum]
72
+ #
73
+ class Inventory
74
+ include FoundationKit::InventoryMixin
75
+ end
76
+ end
@@ -0,0 +1,50 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FoundationKit
4
+ #
5
+ # Base repository class
6
+ #
7
+ # @author [jcrum]
8
+ #
9
+ class Repository < BaseClass
10
+ #
11
+ # [initialize description]
12
+ # @param connector: nil [FoundationKit::Connector] Connector to use
13
+ # @param source: nil [type] [description]
14
+ #
15
+ # @return [type] [description]
16
+ def initialize(connector: nil, source: nil)
17
+ @connector = connector
18
+ @source = source
19
+ super
20
+ end
21
+
22
+ #
23
+ # Fetch method
24
+ #
25
+ # @abstract
26
+ # @raise [FoundationKit::Errors::MethodNotImplmentedError]
27
+ abstract_definition :fetch
28
+
29
+ #
30
+ # Create method
31
+ #
32
+ # @abstract
33
+ # @raise [FoundationKit::Errors::MethodNotImplmentedError]
34
+ abstract_definition :create
35
+
36
+ #
37
+ # Update method
38
+ #
39
+ # @abstract
40
+ # @raise [FoundationKit::Errors::MethodNotImplmentedError]
41
+ abstract_definition :update
42
+
43
+ #
44
+ # Delete method
45
+ #
46
+ # @abstract
47
+ # @raise [FoundationKit::Errors::MethodNotImplmentedError]
48
+ abstract_definition :delete
49
+ end
50
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FoundationKit
4
+ # Blatently stolen from Rails/version.rb
5
+ # https://github.com/rails/rails/blob/master/version.rb
6
+ def self.gem_version
7
+ Gem::Version.new VERSION::STRING
8
+ end
9
+
10
+ module VERSION
11
+ MAJOR = 0
12
+ MINOR = 1
13
+ TINY = 0
14
+ PRE = nil
15
+
16
+ STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
17
+ end
18
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ Dir.glob("#{File.dirname(__FILE__)}/**/*.rb").sort.each { |path| require path }
4
+
5
+ #
6
+ # TODO
7
+ #
8
+ # @author [jcrum]
9
+ #
10
+ module FoundationKit
11
+ end
metadata ADDED
@@ -0,0 +1,121 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: foundation_kit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jason Crum
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-03-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: yard
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: FoundationKit provides....
70
+ email:
71
+ - me@jasonmcrum.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".rubocop.yml"
78
+ - ".rubocop_todo.yml"
79
+ - Gemfile
80
+ - Guardfile
81
+ - LICENSE
82
+ - README.md
83
+ - Rakefile
84
+ - bin/console
85
+ - bin/setup
86
+ - foundation_kit.gemspec
87
+ - lib/foundation_kit.rb
88
+ - lib/foundation_kit/base_class.rb
89
+ - lib/foundation_kit/class.rb
90
+ - lib/foundation_kit/command.rb
91
+ - lib/foundation_kit/composite_command.rb
92
+ - lib/foundation_kit/connector.rb
93
+ - lib/foundation_kit/errors.rb
94
+ - lib/foundation_kit/inventory.rb
95
+ - lib/foundation_kit/repository.rb
96
+ - lib/foundation_kit/version.rb
97
+ homepage: https://github.com/jcrum/foundation_kit
98
+ licenses: []
99
+ metadata:
100
+ allowed_push_host: https://rubygems.org
101
+ post_install_message:
102
+ rdoc_options: []
103
+ require_paths:
104
+ - lib
105
+ required_ruby_version: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ required_rubygems_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ requirements: []
116
+ rubyforge_project:
117
+ rubygems_version: 2.6.11
118
+ signing_key:
119
+ specification_version: 4
120
+ summary: FoundationKit provides....
121
+ test_files: []