gitmoji-regex 0.1.1 → 0.1.2
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 +27 -1
- data/README.md +148 -1
- data/lib/gitmoji/regex/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9a8cb80c16bdeb35eb864505aa3bbadf6d7b4a2b02e3019784d6c7eef5102936
|
|
4
|
+
data.tar.gz: 7ddd10ec342a925fdf9400862d9a476afc8fd417dedc61a88f05543bf1162df3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a227ae750d1275ca7a0870714e48f71e2c5d6238cc1b0ca7cd29ae6f500032f4291c65e91a4e6885b9a101f65ab549b05c70ea2a0111742f02abe991f3c5146
|
|
7
|
+
data.tar.gz: ef95cfad6de02f76d5f2599206b4a410758f6862211dac7cb2fe0b5a495f415f717b9a8427a43a14247762e31b6b5f2668108c91ab1d1c7ab2deff9d25d557be
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
All notable changes to this project will be documented in this file.
|
|
3
|
+
|
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
1
7
|
## [Unreleased]
|
|
8
|
+
### Added
|
|
2
9
|
|
|
3
|
-
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
### Removed
|
|
4
15
|
|
|
16
|
+
## [0.1.2] - 2022-03-29
|
|
17
|
+
### Added
|
|
18
|
+
- Badges and Logos
|
|
19
|
+
|
|
20
|
+
## [0.1.1] - 2022-03-28
|
|
21
|
+
### Added
|
|
22
|
+
- Usage documentation
|
|
23
|
+
|
|
24
|
+
## [0.1.0] - 2022-03-28
|
|
25
|
+
### Added
|
|
5
26
|
- Initial release
|
|
27
|
+
|
|
28
|
+
[Unreleased]: https://github.com/oauth-xx/oauth2/compare/.v0.1.2...HEAD
|
|
29
|
+
[0.1.2]: https://github.com/pboling//compare/v0.1.1...v0.1.2
|
|
30
|
+
[0.1.1]: https://github.com/pboling//compare/v0.1.0...v0.1.1
|
|
31
|
+
[0.1.0]: https://github.com/oauth-xx/oauth2/compare/e71c6c3dad5bfd59ae2509531eaea3a16e21cb63...v0.1.0
|
data/README.md
CHANGED
|
@@ -1,9 +1,156 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://gitmoji.dev/" target="_blank" rel="noopener">
|
|
3
|
+
<img width="120px" src="https://github.com/pboling/gitmoji-regex/raw/main/docs/images/logo/gitmoji-logo-120px.png?raw=true" alt="Gotmoji Logo Copyright (c) 2016-2022 Carlos Cuesta, MIT License">
|
|
4
|
+
</a>
|
|
5
|
+
<a href="https://rubular.com/" target="_blank" rel="noopener">
|
|
6
|
+
<img width="120px" src="https://github.com/pboling/gitmoji-regex/raw/main/docs/images/logo/regex-logo-120px.png?raw=true" alt="Regular Expression OOjs UI Icon by GOJU, MIT License via Wikimedia Commons">
|
|
7
|
+
</a>
|
|
8
|
+
<a href="https://www.ruby-lang.org/" target="_blank" rel="noopener">
|
|
9
|
+
<img width="120px" src="https://github.com/pboling/gitmoji-regex/raw/main/docs/images/logo/ruby-logo-198px.svg?raw=true" alt="Yukihiro Matsumoto, Ruby Visual Identity Team, CC BY-SA 2.5">
|
|
10
|
+
</a>
|
|
11
|
+
</p>
|
|
12
|
+
|
|
1
13
|
# Gitmoji::Regex
|
|
2
14
|
|
|
3
|
-
This gem provides a regex that allows Ruby code to test a string for a [Gitmoji](https://github.com/carloscuesta/gitmoji) character. Gitmoji is a [subset](https://raw.githubusercontent.com/carloscuesta/gitmoji/master/src/data/gitmojis.json) of the Unicode Emoji character set. This gem is _not_ a fork of, but was **inspired** by, the wonderful [
|
|
15
|
+
This gem provides a regex that allows Ruby code to test a string for a [Gitmoji](https://github.com/carloscuesta/gitmoji) character. Gitmoji is a [subset](https://raw.githubusercontent.com/carloscuesta/gitmoji/master/src/data/gitmojis.json) of the Unicode Emoji character set. This gem is _not_ a fork of, but was **inspired** by, the wonderful [emoji_regex](https://github.com/ticky/ruby-emoji-regex) gem.
|
|
4
16
|
|
|
5
17
|
This gem has no runtime dependencies.
|
|
6
18
|
|
|
19
|
+
<!--
|
|
20
|
+
Numbering rows and badges in each row as a visual "database" lookup,
|
|
21
|
+
as the table is extremely dense, and it can be very difficult to find anything
|
|
22
|
+
Putting one on each row here, to document the emoji that should be used, and for ease of copy/paste.
|
|
23
|
+
|
|
24
|
+
row #s:
|
|
25
|
+
1️⃣
|
|
26
|
+
2️⃣
|
|
27
|
+
3️⃣
|
|
28
|
+
4️⃣
|
|
29
|
+
5️⃣
|
|
30
|
+
6️⃣
|
|
31
|
+
7️⃣
|
|
32
|
+
|
|
33
|
+
badge #s:
|
|
34
|
+
⛳️
|
|
35
|
+
🖇
|
|
36
|
+
🏘
|
|
37
|
+
🚎
|
|
38
|
+
🖐
|
|
39
|
+
🧮
|
|
40
|
+
📗
|
|
41
|
+
-->
|
|
42
|
+
|
|
43
|
+
| | Project | bundle add gitmoji-regex |
|
|
44
|
+
|:----|-----------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
45
|
+
| 1️⃣ | name, license, docs | [![RubyGems.org][⛳️name-img]][⛳️gem] [![License: MIT][🖇src-license-img]][🖇src-license] <!--[![FOSSA][🏘fossa-img]][🏘fossa]--> [![RubyDoc.info][🚎yard-img]][🚎yard] <!--[![InchCI][🖐inch-ci-img]][🚎yard]--> |
|
|
46
|
+
| 2️⃣ | version & activity | [![Gem Version][⛳️version-img]][⛳️gem] [![Total Downloads][🖇DL-total-img]][⛳️gem] [![Download Rank][🏘DL-rank-img]][⛳️gem] [![Source Code][🚎src-home-img]][🚎src-home] [![Open PRs][🖐prs-o-img]][🖐prs-o] [![Closed PRs][🧮prs-c-img]][🧮prs-c] <!--[![Next Version][📗next-img]][📗next]--> |
|
|
47
|
+
| 3️⃣ | maintanence & linting | [![Maintainability][⛳cclim-maint-img]][⛳cclim-maint] [![Helpers][🖇triage-help-img]][🖇triage-help] [![Depfu][🏘depfu-img]][🏘depfu] [![Contributors][🚎contributors-img]][🚎contributors] [![Style][🖐style-wf-img]][🖐style-wf] [![Kloc Roll][🧮kloc-img]][🧮kloc] |
|
|
48
|
+
| 4️⃣ | testing | [![Open Issues][⛳iss-o-img]][⛳iss-o] [![Closed Issues][🖇iss-c-img]][🖇iss-c] [![Supported][🏘sup-wf-img]][🏘sup-wf] [![Heads][🚎heads-wf-img]][🚎heads-wf] [![Unofficial Support][🖐uns-wf-img]][🖐uns-wf] <!--[![MacOS][🧮mac-wf-img]][🧮mac-wf] [![Windows][📗win-wf-img]][📗win-wf]--> |
|
|
49
|
+
| 5️⃣ | coverage & security | [![CodeClimate][⛳cclim-cov-img]][⛳cclim-cov] [![CodeCov][🖇codecov-img]][🖇codecov] [![Coveralls][🏘coveralls-img]][🏘coveralls] [![Security Policy][🚎sec-pol-img]][🚎sec-pol] [![CodeQL][🖐codeQL-img]][🖐codeQL] [![Code Coverage][🧮cov-wf-img]][🧮cov-wf] |
|
|
50
|
+
| 6️⃣ | resources | [![Discussion][⛳gh-discussions-img]][⛳gh-discussions] [![Get help on Codementor][🖇codementor-img]][🖇codementor] [![Chat][🏘chat-img]][🏘chat] [![Blog][🚎blog-img]][🚎blog] [![Blog][🖐wiki-img]][🖐wiki] |
|
|
51
|
+
| 7️⃣ | spread 💖 | [![Liberapay Patrons][⛳liberapay-img]][⛳liberapay] [![Sponsor Me][🖇sponsor-img]][🖇sponsor] [![Tweet @ Peter][🏘tweet-img]][🏘tweet] [🌏][aboutme] [👼][angelme] [💻][coderme] [🌹][politicme] |
|
|
52
|
+
|
|
53
|
+
<!--
|
|
54
|
+
The link tokens in the following sections should be kept ordered by the row and badge numbering scheme
|
|
55
|
+
-->
|
|
56
|
+
|
|
57
|
+
<!-- 1️⃣ name, license, docs -->
|
|
58
|
+
[⛳️gem]: https://rubygems.org/gems/gitmoji-regex
|
|
59
|
+
[⛳️name-img]: https://img.shields.io/badge/name-gitmoji--regex-brightgreen.svg?style=flat
|
|
60
|
+
[🖇src-license]: https://opensource.org/licenses/MIT
|
|
61
|
+
[🖇src-license-img]: https://img.shields.io/badge/License-MIT-green.svg
|
|
62
|
+
[🏘fossa]: https://app.fossa.io/projects/git%2Bgithub.com%2Fpboling%2Fgitmoji-regex?ref=badge_shield
|
|
63
|
+
[🏘fossa-img]: https://app.fossa.io/api/projects/git%2Bgithub.com%2Fpboling%2Fgitmoji-regex.svg?type=shield
|
|
64
|
+
[🚎yard]: https://www.rubydoc.info/github/pboling/gitmoji-regex
|
|
65
|
+
[🚎yard-img]: https://img.shields.io/badge/documentation-rubydoc-brightgreen.svg?style=flat
|
|
66
|
+
[🖐inch-ci-img]: http://inch-ci.org/github/pboling/gitmoji-regex.png
|
|
67
|
+
|
|
68
|
+
<!-- 2️⃣ version & activity -->
|
|
69
|
+
[⛳️version-img]: http://img.shields.io/gem/v/gitmoji-regex.svg
|
|
70
|
+
[🖇DL-total-img]: https://img.shields.io/gem/dt/gitmoji-regex.svg
|
|
71
|
+
[🏘DL-rank-img]: https://img.shields.io/gem/rt/gitmoji-regex.svg
|
|
72
|
+
[🚎src-home]: https://github.com/pboling/gitmoji-regex
|
|
73
|
+
[🚎src-home-img]: https://img.shields.io/badge/source-github-brightgreen.svg?style=flat
|
|
74
|
+
[🖐prs-o]: https://github.com/pboling/gitmoji-regex/pulls
|
|
75
|
+
[🖐prs-o-img]: https://img.shields.io/github/issues-pr/pboling/gitmoji-regex
|
|
76
|
+
[🧮prs-c]: https://github.com/pboling/gitmoji-regex/pulls?q=is%3Apr+is%3Aclosed
|
|
77
|
+
[🧮prs-c-img]: https://img.shields.io/github/issues-pr-closed/pboling/gitmoji-regex
|
|
78
|
+
[📗next]: https://github.com/pboling/gitmoji-regex/milestone/1
|
|
79
|
+
[📗next-img]: https://img.shields.io/github/milestones/progress/pboling/gitmoji-regex/1?label=Next%20Version
|
|
80
|
+
|
|
81
|
+
<!-- 3️⃣ maintanence & linting -->
|
|
82
|
+
[⛳cclim-maint]: https://codeclimate.com/github/pboling/gitmoji-regex/maintainability
|
|
83
|
+
[⛳cclim-maint-img]: https://api.codeclimate.com/v1/badges/688c612528ff90a46955/maintainability
|
|
84
|
+
[🖇triage-help]: https://www.codetriage.com/pboling/gitmoji-regex
|
|
85
|
+
[🖇triage-help-img]: https://www.codetriage.com/pboling/gitmoji-regex/badges/users.svg
|
|
86
|
+
[🏘depfu]: https://depfu.com/github/pboling/gitmoji-regex?project_id=4445
|
|
87
|
+
[🏘depfu-img]: https://badges.depfu.com/badges/6d34dc1ba682bbdf9ae2a97848241743/count.svg
|
|
88
|
+
[🚎contributors]: https://github.com/pboling/gitmoji-regex/graphs/contributors
|
|
89
|
+
[🚎contributors-img]: https://img.shields.io/github/contributors-anon/pboling/gitmoji-regex
|
|
90
|
+
[🖐style-wf]: https://github.com/pboling/gitmoji-regex/actions/workflows/style.yml
|
|
91
|
+
[🖐style-wf-img]: https://github.com/pboling/gitmoji-regex/actions/workflows/style.yml/badge.svg
|
|
92
|
+
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
93
|
+
[🧮kloc-img]: https://img.shields.io/tokei/lines/github.com/pboling/gitmoji-regex
|
|
94
|
+
|
|
95
|
+
<!-- 4️⃣ testing -->
|
|
96
|
+
[⛳iss-o]: https://github.com/pboling/gitmoji-regex/issues
|
|
97
|
+
[⛳iss-o-img]: https://img.shields.io/github/issues-raw/pboling/gitmoji-regex
|
|
98
|
+
[🖇iss-c]: https://github.com/pboling/gitmoji-regex/issues?q=is%3Aissue+is%3Aclosed
|
|
99
|
+
[🖇iss-c-img]: https://img.shields.io/github/issues-closed-raw/pboling/gitmoji-regex
|
|
100
|
+
[🏘sup-wf]: https://github.com/pboling/gitmoji-regex/actions/workflows/supported.yml
|
|
101
|
+
[🏘sup-wf-img]: https://github.com/pboling/gitmoji-regex/actions/workflows/supported.yml/badge.svg
|
|
102
|
+
[🚎heads-wf]: https://github.com/pboling/gitmoji-regex/actions/workflows/heads.yml
|
|
103
|
+
[🚎heads-wf-img]: https://github.com/pboling/gitmoji-regex/actions/workflows/heads.yml/badge.svg
|
|
104
|
+
[🖐uns-wf]: https://github.com/pboling/gitmoji-regex/actions/workflows/unsupported.yml
|
|
105
|
+
[🖐uns-wf-img]: https://github.com/pboling/gitmoji-regex/actions/workflows/unsupported.yml/badge.svg
|
|
106
|
+
[🧮mac-wf]: https://github.com/pboling/gitmoji-regex/actions/workflows/macos.yml
|
|
107
|
+
[🧮mac-wf-img]: https://github.com/pboling/gitmoji-regex/actions/workflows/macos.yml/badge.svg
|
|
108
|
+
[📗win-wf]: https://github.com/pboling/gitmoji-regex/actions/workflows/windows.yml
|
|
109
|
+
[📗win-wf-img]: https://github.com/pboling/gitmoji-regex/actions/workflows/windows.yml/badge.svg
|
|
110
|
+
|
|
111
|
+
<!-- 5️⃣ coverage & security -->
|
|
112
|
+
[⛳cclim-cov]: https://codeclimate.com/github/pboling/gitmoji-regex/test_coverage
|
|
113
|
+
[⛳cclim-cov-img]: https://api.codeclimate.com/v1/badges/688c612528ff90a46955/test_coverage
|
|
114
|
+
[🖇codecov-img]: https://codecov.io/gh/pboling/gitmoji-regex/branch/main/graph/badge.svg?token=bNqSzNiuo2
|
|
115
|
+
[🖇codecov]: https://codecov.io/gh/pboling/gitmoji-regex
|
|
116
|
+
[🏘coveralls]: https://coveralls.io/github/pboling/gitmoji-regex?branch=main
|
|
117
|
+
[🏘coveralls-img]: https://coveralls.io/repos/github/pboling/gitmoji-regex/badge.svg?branch=main
|
|
118
|
+
[🚎sec-pol]: https://github.com/pboling/gitmoji-regex/blob/main/SECURITY.md
|
|
119
|
+
[🚎sec-pol-img]: https://img.shields.io/badge/security-policy-brightgreen.svg?style=flat
|
|
120
|
+
[🖐codeQL]: https://github.com/pboling/gitmoji-regex/security/code-scanning
|
|
121
|
+
[🖐codeQL-img]: https://github.com/pboling/gitmoji-regex/actions/workflows/codeql-analysis.yml/badge.svg
|
|
122
|
+
[🧮cov-wf]: https://github.com/pboling/gitmoji-regex/actions/workflows/coverage.yml
|
|
123
|
+
[🧮cov-wf-img]: https://github.com/pboling/gitmoji-regex/actions/workflows/coverage.yml/badge.svg
|
|
124
|
+
|
|
125
|
+
<!-- 6️⃣ resources -->
|
|
126
|
+
[⛳gh-discussions]: https://github.com/pboling/gitmoji-regex/discussions
|
|
127
|
+
[⛳gh-discussions-img]: https://img.shields.io/github/discussions/pboling/gitmoji-regex
|
|
128
|
+
[🖇codementor]: https://www.codementor.io/peterboling?utm_source=github&utm_medium=button&utm_term=peterboling&utm_campaign=github
|
|
129
|
+
[🖇codementor-img]: https://cdn.codementor.io/badges/get_help_github.svg
|
|
130
|
+
[🏘chat]: https://gitter.im/pboling/gitmoji-regex
|
|
131
|
+
[🏘chat-img]: https://img.shields.io/gitter/room/pboling/gitmoji-regex.svg
|
|
132
|
+
[🚎blog]: http://www.railsbling.com/tags/gitmoji-regex/
|
|
133
|
+
[🚎blog-img]: https://img.shields.io/badge/blog-railsbling-brightgreen.svg?style=flat
|
|
134
|
+
[🖐wiki]: https://github.com/pboling/gitmoji-regex/wiki
|
|
135
|
+
[🖐wiki-img]: https://img.shields.io/badge/wiki-examples-brightgreen.svg?style=flat
|
|
136
|
+
|
|
137
|
+
<!-- 7️⃣ spread 💖 -->
|
|
138
|
+
[⛳liberapay-img]: https://img.shields.io/liberapay/patrons/pboling.svg?logo=liberapay
|
|
139
|
+
[⛳liberapay]: https://liberapay.com/pboling/donate
|
|
140
|
+
[🖇sponsor-img]: https://img.shields.io/badge/sponsor-pboling.svg?style=social&logo=github
|
|
141
|
+
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
142
|
+
[🏘tweet-img]: https://img.shields.io/twitter/follow/galtzo.svg?style=social&label=Follow
|
|
143
|
+
[🏘tweet]: http://twitter.com/galtzo
|
|
144
|
+
|
|
145
|
+
<!-- Maintainer Contact Links -->
|
|
146
|
+
[railsbling]: http://www.railsbling.com
|
|
147
|
+
[peterboling]: http://www.peterboling.com
|
|
148
|
+
[aboutme]: https://about.me/peter.boling
|
|
149
|
+
[angelme]: https://angel.co/peter-boling
|
|
150
|
+
[coderme]:http://coderwall.com/pboling
|
|
151
|
+
[politicme]: https://nationalprogressiveparty.org
|
|
152
|
+
|
|
153
|
+
|
|
7
154
|
## Installation
|
|
8
155
|
|
|
9
156
|
Install the gem and add to the application's Gemfile by executing:
|
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: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
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-03-
|
|
11
|
+
date: 2022-03-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: http
|
|
@@ -145,10 +145,10 @@ licenses:
|
|
|
145
145
|
- MIT
|
|
146
146
|
metadata:
|
|
147
147
|
homepage_uri: https://github.com/pboling/gitmoji-regex
|
|
148
|
-
source_code_uri: https://github.com/pboling/gitmoji-regex/tree/v0.1.
|
|
149
|
-
changelog_uri: https://github.com/pboling/gitmoji-regex/blob/v0.1.
|
|
148
|
+
source_code_uri: https://github.com/pboling/gitmoji-regex/tree/v0.1.2
|
|
149
|
+
changelog_uri: https://github.com/pboling/gitmoji-regex/blob/v0.1.2/CHANGELOG.md
|
|
150
150
|
bug_tracker_uri: https://github.com/pboling/gitmoji-regex/issues
|
|
151
|
-
documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/0.1.
|
|
151
|
+
documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/0.1.2
|
|
152
152
|
wiki_uri: https://github.com/pboling/gitmoji-regex/wiki
|
|
153
153
|
rubygems_mfa_required: 'true'
|
|
154
154
|
post_install_message:
|