hov 0.0.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 +7 -0
- data/.codeclimate.yml +2 -0
- data/.gitignore +26 -0
- data/.hov/.env +8 -0
- data/.hov/logs/hov.log +10 -0
- data/.rubocop.yml +13 -0
- data/.travis.yml +6 -0
- data/Gemfile +8 -0
- data/LICENSE +201 -0
- data/README.md +13 -0
- data/Rakefile +12 -0
- data/bin/hov +31 -0
- data/features/hov.feature +20 -0
- data/features/init.feature +29 -0
- data/features/step_definitions/hov_steps.rb +29 -0
- data/features/support/env.rb +6 -0
- data/hov.gemspec +36 -0
- data/lib/hov.rb +34 -0
- data/lib/hov/cli.rb +37 -0
- data/lib/hov/command.rb +16 -0
- data/lib/hov/commands/init.rb +15 -0
- data/lib/hov/config.rb +38 -0
- data/lib/hov/logging.rb +51 -0
- data/lib/hov/templates/.env +8 -0
- data/lib/hov/version.rb +18 -0
- data/spec/hov_spec.rb +51 -0
- data/spec/spec_helper.rb +4 -0
- metadata +196 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 5d768cdfde5c2795a76fe9b6568a00b875288ff0
|
|
4
|
+
data.tar.gz: 5a896e3b29ce8b423294a7baf6d6ddaa3c563d88
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: e169e699bd5a9bdbc14f8e1b27284e837622b93399ca0fbefe0bdbf2aec6244c0e7787525b45edc64a468f4189c8f9568b2cc9b03bb78bf8d91eb006e73006b3
|
|
7
|
+
data.tar.gz: 926d5d5012d27f8432f55930ed5e8c158fd96d99ac865cabd24e86967b1a0658a62d74f9b144302eb82eafc868984d88818457e1185666bcdf9c0ae9b8795b24
|
data/.codeclimate.yml
ADDED
data/.gitignore
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
|
|
13
|
+
## Documentation cache and generated files:
|
|
14
|
+
/.yardoc/
|
|
15
|
+
/_yardoc/
|
|
16
|
+
/doc/
|
|
17
|
+
/rdoc/
|
|
18
|
+
.idea/
|
|
19
|
+
|
|
20
|
+
## Environment normalization:
|
|
21
|
+
/.bundle/
|
|
22
|
+
/vendor/bundle
|
|
23
|
+
/lib/bundler/man/
|
|
24
|
+
|
|
25
|
+
Gemfile.lock
|
|
26
|
+
.ruby-version
|
data/.hov/.env
ADDED
data/.hov/logs/hov.log
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
F, [2016-02-18T11:32:02.872446 #60510] FATAL -- hov: init expects a single argument
|
|
2
|
+
F, [2016-02-18T11:32:02.872517 #60510] FATAL -- hov: init expects a single argument (IOError)
|
|
3
|
+
/Users/ncheneweth/Documents/toolkit/hov/lib/hov/commands/init.rb:11:in `call'
|
|
4
|
+
/Users/ncheneweth/Documents/toolkit/hov/lib/hov/cli.rb:15:in `do_command'
|
|
5
|
+
/Users/ncheneweth/Documents/toolkit/hov/lib/hov/cli.rb:34:in `init'
|
|
6
|
+
/Users/ncheneweth/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/thor-0.19.1/lib/thor/command.rb:27:in `run'
|
|
7
|
+
/Users/ncheneweth/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/thor-0.19.1/lib/thor/invocation.rb:126:in `invoke_command'
|
|
8
|
+
/Users/ncheneweth/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/thor-0.19.1/lib/thor.rb:359:in `dispatch'
|
|
9
|
+
/Users/ncheneweth/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/thor-0.19.1/lib/thor/base.rb:440:in `start'
|
|
10
|
+
bin/hov:26:in `<main>'
|
data/.rubocop.yml
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
AllCops:
|
|
2
|
+
TargetRubyVersion: 2.0
|
|
3
|
+
Exclude:
|
|
4
|
+
- vendor/**/*
|
|
5
|
+
- '*.gemspec'
|
|
6
|
+
Metrics/LineLength:
|
|
7
|
+
Max: 100
|
|
8
|
+
# To make it possible to copy or click on URIs in the code, we allow lines
|
|
9
|
+
# contaning a URI to be longer than Max.
|
|
10
|
+
AllowURI: true
|
|
11
|
+
URISchemes:
|
|
12
|
+
- http
|
|
13
|
+
- https
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
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,13 @@
|
|
|
1
|
+
[][travis]
|
|
2
|
+
[][codeclimate]
|
|
3
|
+
[][coverage]
|
|
4
|
+
[][gemnasium]
|
|
5
|
+
|
|
6
|
+
[travis]: http://travis-ci.org/ncheneweth/hov
|
|
7
|
+
[codeclimate]: https://codeclimate.com/github/ncheneweth/hov
|
|
8
|
+
[coverage]: (https://codeclimate.com/github/ncheneweth/hov/coverage)
|
|
9
|
+
[gemnasium]: https://gemnasium.com/ncheneweth/hov
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# hov
|
|
13
|
+
HOV lane for AWS *Under Construction*
|
data/Rakefile
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
require 'bundler'
|
|
2
|
+
require 'rubocop/rake_task'
|
|
3
|
+
require 'rspec/core/rake_task'
|
|
4
|
+
require 'cucumber/rake/task'
|
|
5
|
+
# require 'yard'
|
|
6
|
+
|
|
7
|
+
Bundler::GemHelper.install_tasks
|
|
8
|
+
RuboCop::RakeTask.new(:style)
|
|
9
|
+
RSpec::Core::RakeTask.new(:spec)
|
|
10
|
+
Cucumber::Rake::Task.new(:features)
|
|
11
|
+
|
|
12
|
+
task default: [:style, :spec, :features]
|
data/bin/hov
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# Copyright (c) 2016
|
|
3
|
+
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
# Simple trap. As long running jobs become possible, this could be upgraded
|
|
17
|
+
# to provide better interrupt (ctrl-c) handling.
|
|
18
|
+
Signal.trap('INT') { exit 1 }
|
|
19
|
+
|
|
20
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), %w(.. lib))
|
|
21
|
+
require 'rubygems'
|
|
22
|
+
require 'hov'
|
|
23
|
+
require 'hov/cli'
|
|
24
|
+
|
|
25
|
+
begin
|
|
26
|
+
Hov::CLI.start
|
|
27
|
+
rescue => err
|
|
28
|
+
Hov.log.fatal(err.message)
|
|
29
|
+
Hov.config.write_log.fatal(err)
|
|
30
|
+
exit 1
|
|
31
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Feature: Behavior of hov CLI with general features and commands
|
|
2
|
+
|
|
3
|
+
As an Infracoder developing a command line tool
|
|
4
|
+
I need to have the basic structure of the tool created
|
|
5
|
+
In order to engage in the BDD of the tool
|
|
6
|
+
|
|
7
|
+
Scenario: Request help with commands
|
|
8
|
+
|
|
9
|
+
When I get general help for "hov"
|
|
10
|
+
Then the exit status should be 0
|
|
11
|
+
And the banner should be present
|
|
12
|
+
And the following commands should be documented:
|
|
13
|
+
|help|
|
|
14
|
+
|init|
|
|
15
|
+
|version|
|
|
16
|
+
|
|
17
|
+
Scenario: Display gem version
|
|
18
|
+
|
|
19
|
+
When I run `hov -v`
|
|
20
|
+
Then the output should display the version
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Feature: New platform definition files for specified product
|
|
2
|
+
|
|
3
|
+
As an Infracoder developing the hov command line tool
|
|
4
|
+
I want to test the ability to init hov platform definition template files
|
|
5
|
+
In order to assist the user in creating and maintaining definition files for product platforms
|
|
6
|
+
|
|
7
|
+
Scenario: Request help with init command
|
|
8
|
+
|
|
9
|
+
When I get general help for "hov help init"
|
|
10
|
+
Then the exit status should be 0
|
|
11
|
+
And the output should contain "Usage:"
|
|
12
|
+
And the output should contain "init PRODUCT"
|
|
13
|
+
|
|
14
|
+
Scenario: Attempt to initialize platform template files without specifying a product name
|
|
15
|
+
|
|
16
|
+
When I run `hov init`
|
|
17
|
+
Then the exit status should be 1
|
|
18
|
+
And the output should contain "hov: init expects a single argument"
|
|
19
|
+
And the file ".hov/logs/hov.log" should contain:
|
|
20
|
+
"""
|
|
21
|
+
FATAL -- hov: init expects a single argument
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
Scenario: Creating a new platform definition results in a new template and local env files
|
|
25
|
+
|
|
26
|
+
When I run `hov init PLATFORM`
|
|
27
|
+
Then the exit status should be 0
|
|
28
|
+
And the following files should exist:
|
|
29
|
+
|.hov/.env|
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
require 'cucumber'
|
|
2
|
+
require 'aruba/cucumber'
|
|
3
|
+
require 'fileutils'
|
|
4
|
+
|
|
5
|
+
When(/^I get general help for "([^"]*)"$/) do |app_name|
|
|
6
|
+
@app_name = app_name
|
|
7
|
+
step %(I run `#{app_name} --help`)
|
|
8
|
+
step %(I run `#{app_name}`)
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
Then(/^the banner should be present$/) do
|
|
12
|
+
step %(the output should match /Commands:/)
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
Then(/^the following commands should be documented:$/) do |options|
|
|
16
|
+
options.raw.each do |option|
|
|
17
|
+
step %(the command "#{option[0]}" should be documented)
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
Then(/^the command "([^"]*)" should be documented$/) do |options|
|
|
22
|
+
options.split(',').map(&:strip).each do |option|
|
|
23
|
+
step %(the output should match /\\s*#{Regexp.escape(option)}[\\s\\W]+\\w[\\s\\w][\\s\\w]+/)
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
Then(/^the output should display the version$/) do
|
|
28
|
+
step %(the output should match /\\d+\\.\\d+\\.\\d+/)
|
|
29
|
+
end
|
data/hov.gemspec
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
|
+
require 'hov/version'
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |gem|
|
|
6
|
+
gem.name = Hov::APP_NAME
|
|
7
|
+
gem.version = Hov::VERSION
|
|
8
|
+
gem.platform = Gem::Platform::RUBY
|
|
9
|
+
gem.author = 'Nic Cheneweth'
|
|
10
|
+
gem.email = 'nic.cheneweth@thoughtworks.com'
|
|
11
|
+
gem.summary = 'High Occupancy Lane for product development'
|
|
12
|
+
gem.description = 'Under Construction'
|
|
13
|
+
gem.license = 'Apache 2.0'
|
|
14
|
+
gem.homepage = 'https://github.com/ncheneweth/awsplan'
|
|
15
|
+
|
|
16
|
+
gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
|
17
|
+
gem.executables = %w(hov)
|
|
18
|
+
gem.test_files = gem.files.grep(%r{/^\/(test|spec|features)/})
|
|
19
|
+
gem.require_paths = ['lib']
|
|
20
|
+
gem.required_ruby_version = '>= 2.2.0'
|
|
21
|
+
|
|
22
|
+
gem.add_dependency 'thor', '~> 0.19'
|
|
23
|
+
gem.add_dependency 'dotenv', '~> 2'
|
|
24
|
+
gem.add_dependency 'remote_syslog_logger', '~> 1' # support for papertrail.com
|
|
25
|
+
# gem.add_dependency 'erubis', '~> 2.7'
|
|
26
|
+
# gem.add_dependency 'command_line_reporter', '~> 3.3'
|
|
27
|
+
# gem.add_dependency 'aws-sdk', '~> 2'
|
|
28
|
+
|
|
29
|
+
gem.add_development_dependency 'bundler', '~> 1.11'
|
|
30
|
+
gem.add_development_dependency 'rake', '~> 10.5'
|
|
31
|
+
gem.add_development_dependency 'rubocop', '~> 0.37'
|
|
32
|
+
gem.add_development_dependency 'rspec', '~> 3.4'
|
|
33
|
+
gem.add_development_dependency 'aruba', '~> 0.13'
|
|
34
|
+
gem.add_development_dependency 'cucumber', '~> 2.3'
|
|
35
|
+
# gem.add_development_dependency 'yard', '~> 0.8'
|
|
36
|
+
end
|
data/lib/hov.rb
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Copyright information in version.rb
|
|
2
|
+
#
|
|
3
|
+
require 'dotenv'
|
|
4
|
+
require 'pathname'
|
|
5
|
+
require 'logger'
|
|
6
|
+
require 'fileutils'
|
|
7
|
+
require 'hov/version'
|
|
8
|
+
require 'hov/config'
|
|
9
|
+
require 'hov/command'
|
|
10
|
+
require 'hov/logging'
|
|
11
|
+
# Gem is wrapped in Hov module
|
|
12
|
+
module Hov
|
|
13
|
+
# global variables and environment initialization
|
|
14
|
+
class << self
|
|
15
|
+
attr_accessor :config
|
|
16
|
+
attr_accessor :log
|
|
17
|
+
|
|
18
|
+
# source root global
|
|
19
|
+
def source_root
|
|
20
|
+
@source_root ||= Pathname.new(File.expand_path('../../', __FILE__))
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
# directory where command is being executed, typically the platform definition
|
|
24
|
+
def root_dir
|
|
25
|
+
@root_dir = Dir.pwd
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
# Global logging variables
|
|
31
|
+
Hov.config = Hov::Config.new
|
|
32
|
+
Hov.log = Hov::Logging::MultiLogger.new(Hov.config.stdout_log,
|
|
33
|
+
Hov.config.local_log,
|
|
34
|
+
Hov.config.remote_log)
|
data/lib/hov/cli.rb
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Copyright information in version.rb
|
|
2
|
+
require 'thor'
|
|
3
|
+
require 'hov'
|
|
4
|
+
# comment
|
|
5
|
+
module Hov
|
|
6
|
+
# Command Line Interface
|
|
7
|
+
class CLI < Thor
|
|
8
|
+
# single function to include required files and process request based on parameters
|
|
9
|
+
module RunCommands
|
|
10
|
+
# pull in desired command file based on param
|
|
11
|
+
def do_command(command, action, args, options)
|
|
12
|
+
require "hov/commands/#{command}"
|
|
13
|
+
|
|
14
|
+
cmd = Hov::Command.const_get(Thor::Util.camel_case(command))
|
|
15
|
+
cmd.new(action, args, options).call
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
include RunCommands
|
|
20
|
+
|
|
21
|
+
def initialize(*args)
|
|
22
|
+
super
|
|
23
|
+
# $stdout.sync = true
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
desc 'version, -v', 'Print hov version information'
|
|
27
|
+
map %w(-v --version) => :version
|
|
28
|
+
def version
|
|
29
|
+
puts "hov #{Hov::VERSION}"
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
desc 'init PRODUCT', 'Initialize a new hov defined platform by creating template files'
|
|
33
|
+
def init(*args)
|
|
34
|
+
do_command('init', 'init', args, options)
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
data/lib/hov/command.rb
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Copyright information in version.rb
|
|
2
|
+
#
|
|
3
|
+
module Hov
|
|
4
|
+
# main Command module definition
|
|
5
|
+
module Command
|
|
6
|
+
# base class used in command files
|
|
7
|
+
class Base
|
|
8
|
+
attr_reader :action, :args, :options
|
|
9
|
+
def initialize(cmd_action, cmd_args, cmd_options)
|
|
10
|
+
@action = cmd_action
|
|
11
|
+
@args = cmd_args
|
|
12
|
+
@options = cmd_options
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Copyright information in version.rb
|
|
2
|
+
#
|
|
3
|
+
module Hov
|
|
4
|
+
# included in Command module
|
|
5
|
+
module Command
|
|
6
|
+
# command class definition
|
|
7
|
+
class Init < Hov::Command::Base
|
|
8
|
+
# Invoke the command.
|
|
9
|
+
def call
|
|
10
|
+
puts 'command> init'
|
|
11
|
+
raise IOError, 'init expects a single argument' if @args.count != 1
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
data/lib/hov/config.rb
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Copyright information in version.rb
|
|
2
|
+
#
|
|
3
|
+
module Hov
|
|
4
|
+
# environment variables. Modify .env file to use
|
|
5
|
+
ENV_VARS = %w(HOV_OVERWRITE_LOGS
|
|
6
|
+
HOV_REMOTE_LOGGER).freeze
|
|
7
|
+
|
|
8
|
+
ENV_FILE = '.hov/.env'.freeze
|
|
9
|
+
ENV_TEMPLATE = 'lib/hov/templates/.env'.freeze
|
|
10
|
+
|
|
11
|
+
# Log defaults
|
|
12
|
+
DEFAULT_LOG_LEVEL = Logger::INFO
|
|
13
|
+
LOG_FILE = '.hov/logs/hov.log'.freeze
|
|
14
|
+
|
|
15
|
+
# instantiates a global log definition - smells but simple
|
|
16
|
+
class Config
|
|
17
|
+
attr_accessor :stdout_log, :local_log, :remote_log
|
|
18
|
+
attr_accessor :write_log
|
|
19
|
+
|
|
20
|
+
def initialize
|
|
21
|
+
local_environment # create default .hov/.env if it does not already exist
|
|
22
|
+
@stdout_log = Hov::Logging.stdout_logger
|
|
23
|
+
@local_log = Hov::Logging.file_logger
|
|
24
|
+
@remote_log = Hov::Logging.remote_logger
|
|
25
|
+
@write_log = Hov::Logging::MultiLogger.new(@local_log, @remote_log)
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
private
|
|
29
|
+
|
|
30
|
+
def local_environment
|
|
31
|
+
unless File.exist?(Hov::ENV_FILE)
|
|
32
|
+
FileUtils.mkdir_p(File.dirname(Hov::ENV_FILE))
|
|
33
|
+
FileUtils.cp(Hov.source_root + Hov::ENV_TEMPLATE, Hov::ENV_FILE)
|
|
34
|
+
end
|
|
35
|
+
Dotenv.load(Hov::ENV_FILE)
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
data/lib/hov/logging.rb
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Copyright information in version.rb
|
|
2
|
+
#
|
|
3
|
+
module Hov
|
|
4
|
+
# misc methods and classes
|
|
5
|
+
module Logging
|
|
6
|
+
# send log info to both console and log file
|
|
7
|
+
class MultiLogger
|
|
8
|
+
def initialize(*targets)
|
|
9
|
+
@targets = targets.compact
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
%w(log debug info warn error fatal unknown).each do |level|
|
|
13
|
+
define_method(level) { |*args| @targets.map { |target| target.send(level, *args) } }
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def self.stdout_logger
|
|
18
|
+
# Log level and format for stdout message
|
|
19
|
+
log = Logger.new($stdout)
|
|
20
|
+
log.level = Hov::DEFAULT_LOG_LEVEL
|
|
21
|
+
log.progname = Hov::APP_NAME
|
|
22
|
+
log.formatter = proc { |_severity, _datetime, _progname, msg| "hov: #{msg}\n" }
|
|
23
|
+
log
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def self.file_logger
|
|
27
|
+
mode = ENV['HOV_OVERWRITE_LOGS'].to_s.casecmp('true') == 0 ? 'wb' : 'ab'
|
|
28
|
+
FileUtils.mkdir_p(File.dirname(Hov::LOG_FILE))
|
|
29
|
+
file = File.open(File.expand_path(Hov::LOG_FILE), mode)
|
|
30
|
+
file.sync = true
|
|
31
|
+
log = Logger.new(file)
|
|
32
|
+
log.level = Hov::DEFAULT_LOG_LEVEL
|
|
33
|
+
log.progname = Hov::APP_NAME
|
|
34
|
+
log
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def self.remote_logger
|
|
38
|
+
if ENV['HOV_REMOTE_LOGGER']
|
|
39
|
+
log = Hov::Logging.send(ENV['HOV_REMOTE_LOGGER'])
|
|
40
|
+
log.level = Hov::DEFAULT_LOG_LEVEL
|
|
41
|
+
log.progname = Hov::APP_NAME
|
|
42
|
+
end
|
|
43
|
+
log
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
def self.papertrail
|
|
47
|
+
require 'remote_syslog_logger'
|
|
48
|
+
RemoteSyslogLogger.new(ENV['HOV_PAPERTRAIL_URL'], ENV['HOV_PAPERTRAIL_PORT'])
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
end
|
data/lib/hov/version.rb
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Copyright (c) 2016 nic cheneweth
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
module Hov
|
|
16
|
+
APP_NAME = 'hov'.freeze
|
|
17
|
+
VERSION = '0.0.1'.freeze
|
|
18
|
+
end
|
data/spec/hov_spec.rb
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
require_relative 'spec_helper'
|
|
2
|
+
require 'hov'
|
|
3
|
+
require 'hov/command'
|
|
4
|
+
# basic tests of initialized module
|
|
5
|
+
describe 'hov' do
|
|
6
|
+
# samples of items defined during startup
|
|
7
|
+
describe 'initial defaults and logging setup' do
|
|
8
|
+
before do
|
|
9
|
+
@command_class = Hov::Command::Base.new('action', 'args', 'options')
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
it 'correctly instantiates a Command::Base' do
|
|
13
|
+
expect(@command_class.action).to eq('action')
|
|
14
|
+
expect(@command_class.args).to eq('args')
|
|
15
|
+
expect(@command_class.options).to eq('options')
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
it '.source_root returns the root path of the gem' do
|
|
19
|
+
expect(Hov.source_root).to eq Pathname.new(File.expand_path('../..', __FILE__))
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
it 'root_dir return the present working directory' do
|
|
23
|
+
expect(Hov.root_dir).to eq Dir.pwd
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
it 'sets DEFAULT_LOG_LEVEL to :info' do
|
|
27
|
+
expect(Hov::DEFAULT_LOG_LEVEL).to eq Logger::INFO
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
it 'sets ENV_FILE to .hov/.env, which is frozen' do
|
|
31
|
+
expect(Hov::ENV_FILE).to eq '.hov/.env'
|
|
32
|
+
expect(Hov::ENV_FILE.frozen?).to eq true
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
it 'sets LOG_FILE to .hov/logs/hov.log, which is frozen' do
|
|
36
|
+
expect(Hov::LOG_FILE).to eq '.hov/logs/hov.log'
|
|
37
|
+
expect(Hov::LOG_FILE.frozen?).to eq true
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
it '.stdout_log and .file_log are Loggers' do
|
|
41
|
+
expect(Hov.config.stdout_log).to be_a Logger
|
|
42
|
+
expect(Hov.config.local_log).to be_a Logger
|
|
43
|
+
expect(Hov.config.stdout_log.progname).to eq(Hov::APP_NAME)
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
it 'default logging should be to a Hov::Logging::MultiLogger' do
|
|
47
|
+
expect(Hov.config.write_log).to be_a Hov::Logging::MultiLogger
|
|
48
|
+
expect(Hov.log).to be_a Hov::Logging::MultiLogger
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: hov
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Nic Cheneweth
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-02-18 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: thor
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0.19'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0.19'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: dotenv
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '2'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '2'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: remote_syslog_logger
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '1'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '1'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: bundler
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '1.11'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '1.11'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: rake
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '10.5'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '10.5'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: rubocop
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0.37'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0.37'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: rspec
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - "~>"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '3.4'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - "~>"
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '3.4'
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: aruba
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - "~>"
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '0.13'
|
|
118
|
+
type: :development
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - "~>"
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '0.13'
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: cucumber
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - "~>"
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '2.3'
|
|
132
|
+
type: :development
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - "~>"
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: '2.3'
|
|
139
|
+
description: Under Construction
|
|
140
|
+
email: nic.cheneweth@thoughtworks.com
|
|
141
|
+
executables:
|
|
142
|
+
- hov
|
|
143
|
+
extensions: []
|
|
144
|
+
extra_rdoc_files: []
|
|
145
|
+
files:
|
|
146
|
+
- ".codeclimate.yml"
|
|
147
|
+
- ".gitignore"
|
|
148
|
+
- ".hov/.env"
|
|
149
|
+
- ".hov/logs/hov.log"
|
|
150
|
+
- ".rubocop.yml"
|
|
151
|
+
- ".travis.yml"
|
|
152
|
+
- Gemfile
|
|
153
|
+
- LICENSE
|
|
154
|
+
- README.md
|
|
155
|
+
- Rakefile
|
|
156
|
+
- bin/hov
|
|
157
|
+
- features/hov.feature
|
|
158
|
+
- features/init.feature
|
|
159
|
+
- features/step_definitions/hov_steps.rb
|
|
160
|
+
- features/support/env.rb
|
|
161
|
+
- hov.gemspec
|
|
162
|
+
- lib/hov.rb
|
|
163
|
+
- lib/hov/cli.rb
|
|
164
|
+
- lib/hov/command.rb
|
|
165
|
+
- lib/hov/commands/init.rb
|
|
166
|
+
- lib/hov/config.rb
|
|
167
|
+
- lib/hov/logging.rb
|
|
168
|
+
- lib/hov/templates/.env
|
|
169
|
+
- lib/hov/version.rb
|
|
170
|
+
- spec/hov_spec.rb
|
|
171
|
+
- spec/spec_helper.rb
|
|
172
|
+
homepage: https://github.com/ncheneweth/awsplan
|
|
173
|
+
licenses:
|
|
174
|
+
- Apache 2.0
|
|
175
|
+
metadata: {}
|
|
176
|
+
post_install_message:
|
|
177
|
+
rdoc_options: []
|
|
178
|
+
require_paths:
|
|
179
|
+
- lib
|
|
180
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
181
|
+
requirements:
|
|
182
|
+
- - ">="
|
|
183
|
+
- !ruby/object:Gem::Version
|
|
184
|
+
version: 2.2.0
|
|
185
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
186
|
+
requirements:
|
|
187
|
+
- - ">="
|
|
188
|
+
- !ruby/object:Gem::Version
|
|
189
|
+
version: '0'
|
|
190
|
+
requirements: []
|
|
191
|
+
rubyforge_project:
|
|
192
|
+
rubygems_version: 2.5.1
|
|
193
|
+
signing_key:
|
|
194
|
+
specification_version: 4
|
|
195
|
+
summary: High Occupancy Lane for product development
|
|
196
|
+
test_files: []
|