gitmoji-regex 1.0.0 → 1.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/CONTRIBUTING.md +20 -0
- data/SECURITY.md +5 -4
- data/lib/gitmoji/regex/version.rb +1 -1
- data/spec/gitmoji/regex/version_spec.rb +5 -0
- data/spec/gitmoji/regex_spec.rb +0 -4
- data/spec/spec_helper.rb +2 -0
- metadata +9 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb4fcd5c0d99432f3c7227dc3594291be1e093c3bddebbfde4436545f4957bc5
|
4
|
+
data.tar.gz: ba10c648fe83f4ec72666422f05db7de7155adcbf68f5ca0fdc1ecb3b50f9761
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e263107eee4a1ab73f2480539e0869a2c1b6b7e4fe03b6f1b027c689731ec73581a65262f5ac7f7f136f69959022dd528c5923040a9490dc881cf3482ec8409d
|
7
|
+
data.tar.gz: 76fe3089cadefcc1e45d799df46200783194a350261ac23dbc153b5b23c189f8dae98296039999b453dea2ca651ab781f6eca1c943f005ec655eeb098598beb1
|
data/CHANGELOG.md
CHANGED
@@ -13,6 +13,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
13
13
|
|
14
14
|
### Removed
|
15
15
|
|
16
|
+
## [1.0.1] - 2022-06-24
|
17
|
+
### Added
|
18
|
+
- bin stubs for development
|
19
|
+
- Improved contributing guidelines
|
20
|
+
### Fixed
|
21
|
+
- Updated Template `src/regex.rb`
|
22
|
+
- CI Build improvements
|
23
|
+
|
16
24
|
## [1.0.0] - 2022-06-24
|
17
25
|
### Added
|
18
26
|
- New gitmoji "💸"
|
data/CONTRIBUTING.md
CHANGED
@@ -6,6 +6,26 @@ the [code of conduct][conduct].
|
|
6
6
|
|
7
7
|
To submit a patch, please fork the project and create a patch with tests. Once you're happy with it send a pull request!
|
8
8
|
|
9
|
+
## Detailed instructions on Submitting a Pull Request
|
10
|
+
|
11
|
+
1. [Fork the repository.][fork]
|
12
|
+
2. [Create a topic branch.][branch]
|
13
|
+
3. Add specs for your unimplemented feature or bug fix.
|
14
|
+
4. Run `bundle exec rake spec`. If your specs pass, return to step 3.
|
15
|
+
5. Implement your feature or bug fix.
|
16
|
+
6. Run `bundle exec rake`. If your specs fail, return to step 5.
|
17
|
+
7. Run `open coverage/index.html`. If your changes are not completely covered
|
18
|
+
by your tests, return to step 3.
|
19
|
+
8. Add documentation for your feature or bug fix.
|
20
|
+
9. Run `bundle exec rake verify_measurements`. If your changes are not 100%
|
21
|
+
documented, go back to step 8.
|
22
|
+
10. Commit and push your changes.
|
23
|
+
11. [Submit a pull request.][pr]
|
24
|
+
|
25
|
+
[fork]: http://help.github.com/fork-a-repo/
|
26
|
+
[branch]: http://learn.github.com/p/branching.html
|
27
|
+
[pr]: http://help.github.com/send-pull-requests/
|
28
|
+
|
9
29
|
## Contributors
|
10
30
|
|
11
31
|
[][contributors]
|
data/SECURITY.md
CHANGED
@@ -2,12 +2,13 @@
|
|
2
2
|
|
3
3
|
## Supported Versions
|
4
4
|
|
5
|
-
| Version
|
6
|
-
|
7
|
-
|
|
5
|
+
| Version | Supported |
|
6
|
+
|----------|-----------|
|
7
|
+
| 1.latest | ✅ |
|
8
|
+
| 0.latest | ⛔️ |
|
8
9
|
|
9
10
|
## Reporting a Vulnerability
|
10
11
|
|
11
12
|
Peter Boling is the primary maintainer of this gem. Please find a way
|
12
13
|
to [contact him directly](https://railsbling.com/contact) to report the issue. Include as much relevant information as
|
13
|
-
possible.
|
14
|
+
possible.
|
data/spec/gitmoji/regex_spec.rb
CHANGED
@@ -1,10 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
RSpec.describe Gitmoji::Regex do
|
4
|
-
it "has a version number" do
|
5
|
-
expect(Gitmoji::Regex::Version::VERSION).not_to be_nil
|
6
|
-
end
|
7
|
-
|
8
4
|
GITMOJI_REF.to_a.each do |gitmoji|
|
9
5
|
it "matches #{gitmoji}" do
|
10
6
|
expect(gitmoji).to match(Gitmoji::Regex::REGEX)
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitmoji-regex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: version_gem
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.1'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1.
|
26
|
+
version: '1.1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: http
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -172,6 +172,7 @@ files:
|
|
172
172
|
- lib/gitmoji/regex/version.rb
|
173
173
|
- spec/config/rspec/rspec_core.rb
|
174
174
|
- spec/gitmoji/regex/reference_spec.rb
|
175
|
+
- spec/gitmoji/regex/version_spec.rb
|
175
176
|
- spec/gitmoji/regex_spec.rb
|
176
177
|
- spec/spec_helper.rb
|
177
178
|
homepage: https://github.com/pboling/gitmoji-regex
|
@@ -179,10 +180,10 @@ licenses:
|
|
179
180
|
- MIT
|
180
181
|
metadata:
|
181
182
|
homepage_uri: https://github.com/pboling/gitmoji-regex
|
182
|
-
source_code_uri: https://github.com/pboling/gitmoji-regex/tree/v1.0.
|
183
|
-
changelog_uri: https://github.com/pboling/gitmoji-regex/blob/v1.0.
|
183
|
+
source_code_uri: https://github.com/pboling/gitmoji-regex/tree/v1.0.1
|
184
|
+
changelog_uri: https://github.com/pboling/gitmoji-regex/blob/v1.0.1/CHANGELOG.md
|
184
185
|
bug_tracker_uri: https://github.com/pboling/gitmoji-regex/issues
|
185
|
-
documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/1.0.
|
186
|
+
documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/1.0.1
|
186
187
|
wiki_uri: https://github.com/pboling/gitmoji-regex/wiki
|
187
188
|
rubygems_mfa_required: 'true'
|
188
189
|
post_install_message:
|
@@ -208,4 +209,5 @@ test_files:
|
|
208
209
|
- spec/spec_helper.rb
|
209
210
|
- spec/config/rspec/rspec_core.rb
|
210
211
|
- spec/gitmoji/regex_spec.rb
|
212
|
+
- spec/gitmoji/regex/version_spec.rb
|
211
213
|
- spec/gitmoji/regex/reference_spec.rb
|