boothby 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 3a50187c4df9bbd138400be332c4da6063d6c6d5dd636f20b8795859034aa968
4
+ data.tar.gz: efb1401d2c069b1871a74db81b990eeeeb0f420d535f2cf2dd7031daf0a3590d
5
+ SHA512:
6
+ metadata.gz: 6f65e00cc1fdbcb89ac69c6269573c1452588699adcb38b6a3276baca450cdd4fa021491b9acff3b4ba887bf05b9b92dde85550da1c9c1661d7a2677446de590
7
+ data.tar.gz: ac9a4a2c967c14f9fdc486e95e9f181f3b4c980f8e5c315edbf6e6c358bfc226242513995d0aaf68dd4bc8a0c3e2f2612a099762f068a33f6d238b877d351cec
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,164 @@
1
+ # rubocop version: 1.10.0
2
+ # rubocop-performance version: 1.9.2
3
+ # rubocop-rspec version: 2.2.0
4
+ #
5
+
6
+ AllCops:
7
+ Exclude:
8
+ - '**/*.gemspec'
9
+ - '**/Gemfile'
10
+ NewCops: enable
11
+ TargetRubyVersion: 2.7
12
+
13
+ require:
14
+ - rubocop-performance
15
+ - rubocop-rspec
16
+
17
+ Layout/CaseIndentation:
18
+ IndentOneStep: true
19
+ Layout/ClassStructure:
20
+ Enabled: true
21
+ Layout/EmptyLineAfterMultilineCondition:
22
+ Enabled: true
23
+ Layout/FirstArrayElementLineBreak:
24
+ Enabled: true
25
+ Layout/FirstHashElementLineBreak:
26
+ Enabled: true
27
+ Layout/FirstMethodArgumentLineBreak:
28
+ Enabled: true
29
+ Layout/FirstMethodParameterLineBreak:
30
+ Enabled: true
31
+ Layout/LineEndStringConcatenationIndentation:
32
+ EnforcedStyle: indented
33
+ Layout/LineLength:
34
+ Max: 120
35
+ Layout/MultilineArrayLineBreaks:
36
+ Enabled: true
37
+ Layout/MultilineHashKeyLineBreaks:
38
+ Enabled: true
39
+ Layout/MultilineMethodArgumentLineBreaks:
40
+ Enabled: true
41
+ Layout/MultilineMethodCallIndentation:
42
+ EnforcedStyle: indented
43
+ Layout/MultilineOperationIndentation:
44
+ EnforcedStyle: indented
45
+ Layout/EmptyLineAfterGuardClause:
46
+ Enabled: true
47
+
48
+ Metrics/CyclomaticComplexity:
49
+ Max: 5
50
+ Metrics/MethodLength:
51
+ Max: 20
52
+ Metrics/ModuleLength:
53
+ Max: 150
54
+ Metrics/PerceivedComplexity:
55
+ Max: 5
56
+
57
+ Naming/BlockParameterName:
58
+ AllowedNames:
59
+ - id
60
+ - x
61
+ - y
62
+ - k
63
+ - v
64
+ - _
65
+ Naming/MethodParameterName:
66
+ AllowedNames:
67
+ - id
68
+ - x
69
+ - y
70
+ - _
71
+ Naming/VariableNumber:
72
+ EnforcedStyle: snake_case
73
+
74
+ Performance/AncestorsInclude:
75
+ Enabled: false
76
+ Performance/ArraySemiInfiniteRangeSlice:
77
+ Enabled: true
78
+ Performance/Casecmp:
79
+ Enabled: false
80
+ Performance/CaseWhenSplat:
81
+ Enabled: true
82
+ Performance/IoReadlines:
83
+ Enabled: true
84
+
85
+ RSpec/BeEql:
86
+ Enabled: false
87
+ RSpec/DescribedClassModuleWrapping:
88
+ Enabled: true
89
+ RSpec/EmptyLineAfterExample:
90
+ Enabled: false
91
+ RSpec/ExampleLength:
92
+ Enabled: false
93
+ RSpec/ExpectChange:
94
+ EnforcedStyle: block
95
+ RSpec/ImplicitSubject:
96
+ Enabled: false
97
+ RSpec/LeadingSubject:
98
+ Enabled: false
99
+ RSpec/MessageChain:
100
+ Enabled: false
101
+ RSpec/MultipleExpectations:
102
+ Enabled: false
103
+ RSpec/NamedSubject:
104
+ Enabled: false
105
+ RSpec/NestedGroups:
106
+ Enabled: false
107
+ RSpec/ReturnFromStub:
108
+ Enabled: false
109
+ RSpec/SubjectStub:
110
+ Enabled: false
111
+
112
+ Style/AccessModifierDeclarations:
113
+ EnforcedStyle: inline
114
+ Style/ArrayCoercion:
115
+ Enabled: true
116
+ Style/AutoResourceCleanup:
117
+ Enabled: true
118
+ Style/ClassMethodsDefinitions:
119
+ Enabled: true
120
+ Style/CollectionMethods:
121
+ Enabled: true
122
+ Style/ConditionalAssignment:
123
+ EnforcedStyle: assign_inside_condition
124
+ IncludeTernaryExpressions: false
125
+ Style/DateTime:
126
+ Enabled: true
127
+ Style/EmptyMethod:
128
+ EnforcedStyle: expanded
129
+ Style/ExponentialNotation:
130
+ EnforcedStyle: scientific
131
+ Style/FormatStringToken:
132
+ Enabled: false
133
+ Style/HashAsLastArrayItem:
134
+ Enabled: false
135
+ Style/IpAddresses:
136
+ Enabled: true
137
+ Style/Lambda:
138
+ EnforcedStyle: literal
139
+ Style/MethodCallWithArgsParentheses:
140
+ Enabled: true
141
+ Style/MultilineMethodSignature:
142
+ Enabled: true
143
+ Style/NumericPredicate:
144
+ Enabled: false
145
+ Style/OptionHash:
146
+ Enabled: true
147
+ Style/RedundantArgument:
148
+ Enabled: false
149
+ Style/RegexpLiteral:
150
+ AllowInnerSlashes: true
151
+ Style/Send:
152
+ Enabled: true
153
+ Style/SlicingWithRange:
154
+ Enabled: false
155
+ Style/StringMethods:
156
+ Enabled: true
157
+ Style/TrailingCommaInBlockArgs:
158
+ Enabled: true
159
+ Style/DocumentationMethod:
160
+ Enabled: true
161
+ Style/RedundantBegin:
162
+ Enabled: true
163
+ Style/ZeroLengthPredicate:
164
+ Enabled: true
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ # Specify your gem's dependencies in boothby.gemspec
6
+ gemspec
7
+
8
+ gem 'pg'
9
+
10
+ gem 'rake'
11
+ gem 'rspec'
12
+ gem 'rubocop'
13
+ gem 'rubocop-performance'
14
+ gem 'rubocop-rspec'
data/Gemfile.lock ADDED
@@ -0,0 +1,221 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ boothby (0.1.0)
5
+ pastel
6
+ rails (>= 5.2)
7
+ thor
8
+ tty-command
9
+ tty-spinner
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ actioncable (7.0.2.4)
15
+ actionpack (= 7.0.2.4)
16
+ activesupport (= 7.0.2.4)
17
+ nio4r (~> 2.0)
18
+ websocket-driver (>= 0.6.1)
19
+ actionmailbox (7.0.2.4)
20
+ actionpack (= 7.0.2.4)
21
+ activejob (= 7.0.2.4)
22
+ activerecord (= 7.0.2.4)
23
+ activestorage (= 7.0.2.4)
24
+ activesupport (= 7.0.2.4)
25
+ mail (>= 2.7.1)
26
+ net-imap
27
+ net-pop
28
+ net-smtp
29
+ actionmailer (7.0.2.4)
30
+ actionpack (= 7.0.2.4)
31
+ actionview (= 7.0.2.4)
32
+ activejob (= 7.0.2.4)
33
+ activesupport (= 7.0.2.4)
34
+ mail (~> 2.5, >= 2.5.4)
35
+ net-imap
36
+ net-pop
37
+ net-smtp
38
+ rails-dom-testing (~> 2.0)
39
+ actionpack (7.0.2.4)
40
+ actionview (= 7.0.2.4)
41
+ activesupport (= 7.0.2.4)
42
+ rack (~> 2.0, >= 2.2.0)
43
+ rack-test (>= 0.6.3)
44
+ rails-dom-testing (~> 2.0)
45
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
46
+ actiontext (7.0.2.4)
47
+ actionpack (= 7.0.2.4)
48
+ activerecord (= 7.0.2.4)
49
+ activestorage (= 7.0.2.4)
50
+ activesupport (= 7.0.2.4)
51
+ globalid (>= 0.6.0)
52
+ nokogiri (>= 1.8.5)
53
+ actionview (7.0.2.4)
54
+ activesupport (= 7.0.2.4)
55
+ builder (~> 3.1)
56
+ erubi (~> 1.4)
57
+ rails-dom-testing (~> 2.0)
58
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
59
+ activejob (7.0.2.4)
60
+ activesupport (= 7.0.2.4)
61
+ globalid (>= 0.3.6)
62
+ activemodel (7.0.2.4)
63
+ activesupport (= 7.0.2.4)
64
+ activerecord (7.0.2.4)
65
+ activemodel (= 7.0.2.4)
66
+ activesupport (= 7.0.2.4)
67
+ activestorage (7.0.2.4)
68
+ actionpack (= 7.0.2.4)
69
+ activejob (= 7.0.2.4)
70
+ activerecord (= 7.0.2.4)
71
+ activesupport (= 7.0.2.4)
72
+ marcel (~> 1.0)
73
+ mini_mime (>= 1.1.0)
74
+ activesupport (7.0.2.4)
75
+ concurrent-ruby (~> 1.0, >= 1.0.2)
76
+ i18n (>= 1.6, < 2)
77
+ minitest (>= 5.1)
78
+ tzinfo (~> 2.0)
79
+ ast (2.4.2)
80
+ builder (3.2.4)
81
+ coderay (1.1.3)
82
+ concurrent-ruby (1.1.10)
83
+ crass (1.0.6)
84
+ diff-lcs (1.5.0)
85
+ digest (3.1.0)
86
+ erubi (1.10.0)
87
+ globalid (1.0.0)
88
+ activesupport (>= 5.0)
89
+ i18n (1.10.0)
90
+ concurrent-ruby (~> 1.0)
91
+ loofah (2.17.0)
92
+ crass (~> 1.0.2)
93
+ nokogiri (>= 1.5.9)
94
+ mail (2.7.1)
95
+ mini_mime (>= 0.1.1)
96
+ marcel (1.0.2)
97
+ method_source (1.0.0)
98
+ mini_mime (1.1.2)
99
+ minitest (5.15.0)
100
+ net-imap (0.2.3)
101
+ digest
102
+ net-protocol
103
+ strscan
104
+ net-pop (0.1.1)
105
+ digest
106
+ net-protocol
107
+ timeout
108
+ net-protocol (0.1.3)
109
+ timeout
110
+ net-smtp (0.3.1)
111
+ digest
112
+ net-protocol
113
+ timeout
114
+ nio4r (2.5.8)
115
+ nokogiri (1.13.4-x86_64-darwin)
116
+ racc (~> 1.4)
117
+ parallel (1.22.1)
118
+ parser (3.1.1.0)
119
+ ast (~> 2.4.1)
120
+ pastel (0.8.0)
121
+ tty-color (~> 0.5)
122
+ pg (1.3.5)
123
+ pry (0.14.1)
124
+ coderay (~> 1.1)
125
+ method_source (~> 1.0)
126
+ racc (1.6.0)
127
+ rack (2.2.3)
128
+ rack-test (1.1.0)
129
+ rack (>= 1.0, < 3)
130
+ rails (7.0.2.4)
131
+ actioncable (= 7.0.2.4)
132
+ actionmailbox (= 7.0.2.4)
133
+ actionmailer (= 7.0.2.4)
134
+ actionpack (= 7.0.2.4)
135
+ actiontext (= 7.0.2.4)
136
+ actionview (= 7.0.2.4)
137
+ activejob (= 7.0.2.4)
138
+ activemodel (= 7.0.2.4)
139
+ activerecord (= 7.0.2.4)
140
+ activestorage (= 7.0.2.4)
141
+ activesupport (= 7.0.2.4)
142
+ bundler (>= 1.15.0)
143
+ railties (= 7.0.2.4)
144
+ rails-dom-testing (2.0.3)
145
+ activesupport (>= 4.2.0)
146
+ nokogiri (>= 1.6)
147
+ rails-html-sanitizer (1.4.2)
148
+ loofah (~> 2.3)
149
+ railties (7.0.2.4)
150
+ actionpack (= 7.0.2.4)
151
+ activesupport (= 7.0.2.4)
152
+ method_source
153
+ rake (>= 12.2)
154
+ thor (~> 1.0)
155
+ zeitwerk (~> 2.5)
156
+ rainbow (3.1.1)
157
+ rake (13.0.6)
158
+ regexp_parser (2.2.1)
159
+ rexml (3.2.5)
160
+ rspec (3.11.0)
161
+ rspec-core (~> 3.11.0)
162
+ rspec-expectations (~> 3.11.0)
163
+ rspec-mocks (~> 3.11.0)
164
+ rspec-core (3.11.0)
165
+ rspec-support (~> 3.11.0)
166
+ rspec-expectations (3.11.0)
167
+ diff-lcs (>= 1.2.0, < 2.0)
168
+ rspec-support (~> 3.11.0)
169
+ rspec-mocks (3.11.1)
170
+ diff-lcs (>= 1.2.0, < 2.0)
171
+ rspec-support (~> 3.11.0)
172
+ rspec-support (3.11.0)
173
+ rubocop (1.26.1)
174
+ parallel (~> 1.10)
175
+ parser (>= 3.1.0.0)
176
+ rainbow (>= 2.2.2, < 4.0)
177
+ regexp_parser (>= 1.8, < 3.0)
178
+ rexml
179
+ rubocop-ast (>= 1.16.0, < 2.0)
180
+ ruby-progressbar (~> 1.7)
181
+ unicode-display_width (>= 1.4.0, < 3.0)
182
+ rubocop-ast (1.16.0)
183
+ parser (>= 3.1.1.0)
184
+ rubocop-performance (1.13.3)
185
+ rubocop (>= 1.7.0, < 2.0)
186
+ rubocop-ast (>= 0.4.0)
187
+ rubocop-rspec (2.9.0)
188
+ rubocop (~> 1.19)
189
+ ruby-progressbar (1.11.0)
190
+ strscan (3.0.1)
191
+ thor (1.2.1)
192
+ timeout (0.2.0)
193
+ tty-color (0.6.0)
194
+ tty-command (0.10.1)
195
+ pastel (~> 0.8)
196
+ tty-cursor (0.7.1)
197
+ tty-spinner (0.9.3)
198
+ tty-cursor (~> 0.7)
199
+ tzinfo (2.0.4)
200
+ concurrent-ruby (~> 1.0)
201
+ unicode-display_width (2.1.0)
202
+ websocket-driver (0.7.5)
203
+ websocket-extensions (>= 0.1.0)
204
+ websocket-extensions (0.1.5)
205
+ zeitwerk (2.5.4)
206
+
207
+ PLATFORMS
208
+ x86_64-darwin-20
209
+
210
+ DEPENDENCIES
211
+ boothby!
212
+ pg
213
+ pry
214
+ rake
215
+ rspec
216
+ rubocop
217
+ rubocop-performance
218
+ rubocop-rspec
219
+
220
+ BUNDLED WITH
221
+ 2.3.9
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Christopher Hagmann
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # Boothby
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/boothby`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Install the gem and add to the application's Gemfile by executing:
10
+
11
+ $ bundle add boothby
12
+
13
+ If bundler is not being used to manage dependencies, install the gem by executing:
14
+
15
+ $ gem install boothby
16
+
17
+ ## Usage
18
+
19
+ TODO: Write usage instructions here
20
+
21
+ ## Development
22
+
23
+ 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.
24
+
25
+ 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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
26
+
27
+ ## Contributing
28
+
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/boothby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/boothby/blob/main/CODE_OF_CONDUCT.md).
30
+
31
+ ## Code of Conduct
32
+
33
+ Everyone interacting in the Boothby project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/boothby/blob/main/CODE_OF_CONDUCT.md).
34
+
35
+ ## Copyright
36
+
37
+ Copyright (c) 2022 Christopher Hagmann. See [MIT License](LICENSE.txt) for further details.
data/Rakefile ADDED
@@ -0,0 +1,12 @@
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
+ require 'rubocop/rake_task'
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
data/boothby.gemspec ADDED
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/boothby/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "boothby"
7
+ spec.license= "MIT"
8
+ spec.version = Boothby::VERSION
9
+ spec.authors = ["Christopher Hagmann"]
10
+ spec.email = ["cdhagmann@gmail.com"]
11
+
12
+ spec.summary = "Groundskeeper to manage your rails application"
13
+ spec.description = "Groundskeeper to manage your rails application"
14
+ spec.homepage = "https://cdhagmann.com/Boothby"
15
+ spec.required_ruby_version = ">= 2.7.0"
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = "https://github.com/cdhagmann/Boothby"
19
+ spec.metadata["changelog_uri"] = "https://cdhagmann.com/Boothby/CHANGELOG.html"
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
+ `git ls-files -z`.split("\x0").reject do |f|
25
+ (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
26
+ end
27
+ end
28
+ spec.bindir = "exe"
29
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
30
+ spec.require_paths = ["lib"]
31
+
32
+ # Uncomment to register a new dependency of your gem
33
+ spec.add_dependency "thor"
34
+ spec.add_dependency "pastel"
35
+ spec.add_dependency "tty-spinner"
36
+ spec.add_dependency "tty-command"
37
+ spec.add_dependency "rails", ">= 5.2"
38
+
39
+ spec.add_development_dependency 'pry'
40
+ spec.add_development_dependency "rspec"
41
+
42
+ # For more information and examples about making a new gem, check out our
43
+ # guide at: https://bundler.io/guides/creating_gem.html
44
+ end
@@ -0,0 +1,12 @@
1
+ default: &default
2
+ adapter: postgresql
3
+ pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
4
+ timeout: 5000
5
+
6
+ development:
7
+ <<: *default
8
+ database: boothby_development
9
+
10
+ test:
11
+ <<: *default
12
+ database: boothby_test
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ Boothby.configure do |config|
4
+ config.root = Rails.root
5
+ end
data/db/seeds.yml ADDED
File without changes
data/docs/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2022-04-30
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at chris.hagmann@scimedsolutions.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/docs/_config.yml ADDED
@@ -0,0 +1 @@
1
+ theme: jekyll-theme-midnight
data/docs/index.md ADDED
@@ -0,0 +1,37 @@
1
+ ## Welcome to GitHub Pages
2
+
3
+ You can use the [editor on GitHub](https://github.com/cdhagmann/boothby/edit/main/docs/index.md) to maintain and preview the content for your website in Markdown files.
4
+
5
+ Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://jekyllrb.com/) to rebuild the pages in your site, from the content in your Markdown files.
6
+
7
+ ### Markdown
8
+
9
+ Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for
10
+
11
+ ```markdown
12
+ Syntax highlighted code block
13
+
14
+ # Header 1
15
+ ## Header 2
16
+ ### Header 3
17
+
18
+ - Bulleted
19
+ - List
20
+
21
+ 1. Numbered
22
+ 2. List
23
+
24
+ **Bold** and _Italic_ and `Code` text
25
+
26
+ [Link](url) and ![Image](src)
27
+ ```
28
+
29
+ For more details see [Basic writing and formatting syntax](https://docs.github.com/en/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax).
30
+
31
+ ### Jekyll Themes
32
+
33
+ Your Pages site will use the layout and styles from the Jekyll theme you have selected in your [repository settings](https://github.com/cdhagmann/boothby/settings/pages). The name of this theme is saved in the Jekyll `_config.yml` configuration file.
34
+
35
+ ### Support or Contact
36
+
37
+ Having trouble with Pages? Check out our [documentation](https://docs.github.com/categories/github-pages-basics/) or [contact support](https://support.github.com/contact) and we’ll help you sort it out.