release_stage 1.0.0

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: fac574ebb170922c51cf6071a41409ead8960cc7cd85545f1f2ac4adbde8cd58
4
+ data.tar.gz: fa424fdff192dc86926dedad132cc0812bc9f7631067f5eaff40800dc42f4ea8
5
+ SHA512:
6
+ metadata.gz: 3015186f3e28e2eb06b1bc70429bdf6d43f5b1d95f6ae71841bdb24c61b64c4eb86c5212c34e03f0a50a5dc587e65036a60327c5e6d2597393fe7c44546d8170
7
+ data.tar.gz: 19b9a505eeb50fd5893641eea3c573bf2011f6a8fab2e1ec64a9ed7393490a3a144b66234208a4db7766b8ccab6431566bbd7c01cd03cd8c595f55b41df020b0
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,233 @@
1
+ require:
2
+ - rubocop-rspec
3
+
4
+ AllCops:
5
+ NewCops: enable
6
+ TargetRubyVersion: 3.3
7
+ Include:
8
+ - '.github/**/*.rb'
9
+ - '**/*.rb'
10
+ - '**/*.gemfile'
11
+ - '**/*.gemspec'
12
+ - '**/*.rake'
13
+ - '**/*.ru'
14
+ - '**/Gemfile'
15
+ - '**/Rakefile'
16
+
17
+ Exclude:
18
+ <% `git status --ignored --porcelain`.lines.grep(/^!! /).each do |path| %>
19
+ - <%= path.sub(/^!! /, '').sub(/\/$/, '/**/*') %>
20
+ <% end %>
21
+ - bin/*
22
+ - Rakefile
23
+
24
+ # Disabled because this requires comments at the top of every file
25
+ Style/FrozenStringLiteralComment:
26
+ Enabled: false
27
+
28
+ # Disabled because this requires comments for every class
29
+ Style/Documentation:
30
+ Enabled: false
31
+
32
+ Layout/LineLength:
33
+ AllowedPatterns:
34
+ - !ruby/regexp /\A#/
35
+
36
+ RSpec/MultipleExpectations:
37
+ Enabled: false
38
+
39
+ RSpec/ExampleLength:
40
+ Max: 50
41
+ CountAsOne:
42
+ - array
43
+ - hash
44
+ - heredoc
45
+
46
+ Style/BlockDelimiters:
47
+ EnforcedStyle: semantic
48
+ AllowBracesOnProceduralOneLiners: true
49
+
50
+ RSpec/NamedSubject:
51
+ EnforcedStyle: named_only
52
+
53
+ RSpec/Focus:
54
+ AutoCorrect: false
55
+
56
+ RSpec/MultipleMemoizedHelpers:
57
+ Enabled: false
58
+
59
+ Naming/MethodParameterName:
60
+ Enabled: false
61
+
62
+ Metrics/AbcSize:
63
+ Max: 30
64
+
65
+ Metrics/BlockLength:
66
+ Max: 30
67
+ CountAsOne:
68
+ - array
69
+ - hash
70
+ - heredoc
71
+ - method_call
72
+
73
+ Metrics/ClassLength:
74
+ Max: 200
75
+ CountAsOne:
76
+ - array
77
+ - hash
78
+ - heredoc
79
+ - method_call
80
+
81
+ Metrics/ModuleLength:
82
+ Max: 200
83
+ CountAsOne:
84
+ - array
85
+ - hash
86
+ - heredoc
87
+ - method_call
88
+
89
+ Metrics/CyclomaticComplexity:
90
+ Max: 15
91
+
92
+ Metrics/MethodLength:
93
+ CountAsOne:
94
+ - array
95
+ - hash
96
+ - heredoc
97
+ - method_call
98
+ Max: 30
99
+
100
+ Metrics/PerceivedComplexity:
101
+ Max: 15
102
+
103
+ Style/MultilineBlockChain:
104
+ Enabled: false
105
+
106
+ Style/ParallelAssignment:
107
+ Enabled: false
108
+
109
+ Style/RedundantReturn:
110
+ AllowMultipleReturnValues: true
111
+
112
+ Lint/UnusedMethodArgument:
113
+ AutoCorrect: false
114
+
115
+ RSpec/EmptyExampleGroup:
116
+ AutoCorrect: false
117
+
118
+ Lint/UnusedBlockArgument:
119
+ AutoCorrect: false
120
+
121
+ RSpec/NestedGroups:
122
+ Enabled: false
123
+
124
+ RSpec/ContextWording:
125
+ Enabled: false
126
+
127
+ # Intended to avoid this situation:
128
+ # ```
129
+ # aggregate_yearly_allowance = calculator(month1,
130
+ # month2: fetch_grouped_month_data_for_month(2))
131
+ # ```
132
+ # where we
133
+ # a) dangle code way out there
134
+ # b) sometimes wind up with an odd number of spaces in the indent
135
+ # c) eat up valuable line length
136
+ Layout/ArgumentAlignment:
137
+ EnforcedStyle: with_fixed_indentation
138
+
139
+ # Intended to avoid this situation:
140
+ # ```
141
+ # aggregate_yearly_allowance = case month
142
+ # when "feb"
143
+ # fetch_grouped_month_data_for_month(2)
144
+ # end
145
+ # ```
146
+ # where we
147
+ # a) dangle code way out there
148
+ # b) sometimes wind up with an odd number of spaces in the indent
149
+ # c) eat up valuable line length
150
+ # d) what's with that `end` way off to the left
151
+ Layout/CaseIndentation:
152
+ EnforcedStyle: end
153
+
154
+ # Intended to avoid this situation:
155
+ # ```
156
+ # aggregate_yearly_allowance = if month == "feb"
157
+ # fetch_grouped_month_data_for_month(2)
158
+ # end
159
+ # ```
160
+ # where we
161
+ # a) dangle code way out there
162
+ # b) sometimes wind up with an odd number of spaces in the indent
163
+ # c) eat up valuable line length
164
+ # d) what's with that `end` way off to the left (for `start_of_line` setting)
165
+ Layout/EndAlignment:
166
+ EnforcedStyleAlignWith: variable
167
+
168
+ # Intended to avoid this situation:
169
+ # ```
170
+ # aggregate_yearly_allowance = AllowanceCalculator
171
+ # .calculate
172
+ # .month("feb")
173
+ # .add(fetch_grouped_month_data_for_month(2))
174
+ # ```
175
+ # where we
176
+ # a) dangle code way out there
177
+ # b) sometimes wind up with an odd number of spaces in the indent
178
+ # c) eat up valuable line length
179
+ Layout/MultilineMethodCallIndentation:
180
+ EnforcedStyle: indented
181
+
182
+ # Intended to avoid enforcing this:
183
+ # ```
184
+ # scan = create(:scan,
185
+ # started_at: "2023-01-01 12:00",)
186
+ # ```
187
+ # and allow this:
188
+ # ```
189
+ # scan = create(:scan,
190
+ # started_at: "2023-01-01 12:00",
191
+ # )
192
+ # ```
193
+ #
194
+ # There unfortunately isn't a good setting I can find
195
+ # to stop rubocop -A doing weird things.
196
+ Layout/MultilineMethodCallBraceLayout:
197
+ Enabled: false
198
+
199
+ # Double-quotes preferred as default to avoid
200
+ # having to stop and switch between quote types
201
+ # as and when we decide to put an apostrophe in a sentence
202
+ # (especially common when writing test names).
203
+ #
204
+ # There is no performance penalty for using double quotes
205
+ # when there's no interpolation being used.
206
+ Style/StringLiterals:
207
+ EnforcedStyle: double_quotes
208
+
209
+ # Enforcing trailing commas in multiline helps keep
210
+ # our github history clean as we don't end up with
211
+ # changes recorded for lines that have only had a
212
+ # comma added or removed.
213
+ #
214
+ # Also makes it easier to reorder lines without having
215
+ # to add or delete commas.
216
+ Style/TrailingCommaInArguments:
217
+ EnforcedStyleForMultiline: comma
218
+ Style/TrailingCommaInArrayLiteral:
219
+ EnforcedStyleForMultiline: comma
220
+ Style/TrailingCommaInHashLiteral:
221
+ EnforcedStyleForMultiline: comma
222
+
223
+ Style/EmptyCaseCondition:
224
+ Enabled: false
225
+
226
+ Style/Lambda:
227
+ Enabled: false
228
+
229
+ # By default rubocop forbids use of any capybara aliases
230
+ # for RSpec methods, and wants you to enable them as desired per-team.
231
+ RSpec/Capybara/FeatureMethods:
232
+ EnabledMethods:
233
+ - scenario
@@ -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 elliot@dexory.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/LICENCE.txt ADDED
@@ -0,0 +1,177 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
data/README.md ADDED
@@ -0,0 +1,53 @@
1
+ # Release Stage
2
+
3
+ A `Rails.env`-like utility for identifying the current stage of a release.
4
+
5
+ ## Installation
6
+
7
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
8
+
9
+ Install the gem and add to the application's Gemfile by executing:
10
+
11
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
12
+
13
+ If bundler is not being used to manage dependencies, install the gem by executing:
14
+
15
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
16
+
17
+ ## Usage
18
+
19
+ Set the environment variable `RELEASE_STAGE` to the name of the current stage. The default stage is `development`.
20
+
21
+ The gem expects one of `development`, `review`, `staging`, or `production`.
22
+
23
+ ### Getting the current release stage
24
+
25
+ Returns an `ActiveSupport::StringInquirer` with the current release stage.
26
+
27
+ ```ruby
28
+ ReleaseStage.current
29
+ => "development"
30
+ ```
31
+
32
+ ### Checking the current release stage
33
+
34
+ ```ruby
35
+ ReleaseStage.development?
36
+ => true
37
+ ```
38
+
39
+ ## Development
40
+
41
+ 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.
42
+
43
+ ## Contributing
44
+
45
+ Bug reports and pull requests are welcome on GitHub at https://github.com/botsandus/release-stage. 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/botsandus/release-stage/blob/main/CODE_OF_CONDUCT.md).
46
+
47
+ ## Licence
48
+
49
+ The gem is available as open source under the terms of the [Apache 2.0 licence](https://www.apache.org/licenses/LICENSE-2.0).
50
+
51
+ ## Code of Conduct
52
+
53
+ Everyone interacting in the ReleaseStage project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/botsandus/release-stage/blob/main/CODE_OF_CONDUCT.md).
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]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ class ReleaseStage
4
+ VERSION = "1.0.0"
5
+ end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "active_support/core_ext/module/delegation"
4
+ require "active_support/string_inquirer"
5
+
6
+ class ReleaseStage
7
+ VALID_RELEASE_STAGES = %w[development review staging production].freeze
8
+
9
+ class << self
10
+ def current
11
+ stage = ENV.fetch("RELEASE_STAGE", "development")
12
+
13
+ raise "Invalid release stage #{stage}" unless VALID_RELEASE_STAGES.include?(stage)
14
+
15
+ ActiveSupport::StringInquirer.new(stage)
16
+ end
17
+
18
+ delegate :development?, :review?, :staging?, :production?, to: :current
19
+ end
20
+ end
@@ -0,0 +1,4 @@
1
+ module ReleaseStage
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,69 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: release_stage
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Elliot Crosby-McCullough
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-04-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activesupport
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '7.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '7.1'
27
+ description:
28
+ email:
29
+ - elliot@dexory.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".rspec"
35
+ - ".rubocop.yml"
36
+ - CODE_OF_CONDUCT.md
37
+ - LICENCE.txt
38
+ - README.md
39
+ - Rakefile
40
+ - lib/release_stage.rb
41
+ - lib/release_stage/version.rb
42
+ - sig/release_stage.rbs
43
+ homepage: https://github.com/botsandus/release-stage
44
+ licenses:
45
+ - Apache-2.0
46
+ metadata:
47
+ homepage_uri: https://github.com/botsandus/release-stage
48
+ source_code_uri: https://github.com/botsandus/release-stage
49
+ rubygems_mfa_required: 'true'
50
+ post_install_message:
51
+ rdoc_options: []
52
+ require_paths:
53
+ - lib
54
+ required_ruby_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: 3.3.0
59
+ required_rubygems_version: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ requirements: []
65
+ rubygems_version: 3.5.7
66
+ signing_key:
67
+ specification_version: 4
68
+ summary: A small gem for checking whether you're on staging, production etc.
69
+ test_files: []