gitmoji-regex 1.0.3 → 2.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.
data/SECURITY.md CHANGED
@@ -5,7 +5,6 @@
5
5
  | Version | Supported |
6
6
  |----------|-----------|
7
7
  | 1.latest | ✅ |
8
- | 0.latest | ⛔️ |
9
8
 
10
9
  ## Security contact information
11
10
 
data/certs/pboling.pem ADDED
@@ -0,0 +1,27 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
3
+ ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
4
+ A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
5
+ DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
6
+ LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAruUoo0WA
7
+ uoNuq6puKWYeRYiZekz/nsDeK5x/0IEirzcCEvaHr3Bmz7rjo1I6On3gGKmiZs61
8
+ LRmQ3oxy77ydmkGTXBjruJB+pQEn7UfLSgQ0xa1/X3kdBZt6RmabFlBxnHkoaGY5
9
+ mZuZ5+Z7walmv6sFD9ajhzj+oIgwWfnEHkXYTR8I6VLN7MRRKGMPoZ/yvOmxb2DN
10
+ coEEHWKO9CvgYpW7asIihl/9GMpKiRkcYPm9dGQzZc6uTwom1COfW0+ZOFrDVBuV
11
+ FMQRPswZcY4Wlq0uEBLPU7hxnCL9nKK6Y9IhdDcz1mY6HZ91WImNslOSI0S8hRpj
12
+ yGOWxQIhBT3fqCBlRIqFQBudrnD9jSNpSGsFvbEijd5ns7Z9ZMehXkXDycpGAUj1
13
+ to/5cuTWWw1JqUWrKJYoifnVhtE1o1DZ+LkPtWxHtz5kjDG/zR3MG0Ula0UOavlD
14
+ qbnbcXPBnwXtTFeZ3C+yrWpE4pGnl3yGkZj9SMTlo9qnTMiPmuWKQDatAgMBAAGj
15
+ fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQE8uWvNbPVNRXZ
16
+ HlgPbc2PCzC4bjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
17
+ A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
18
+ ggGBAJbnUwfJQFPkBgH9cL7hoBfRtmWiCvdqdjeTmi04u8zVNCUox0A4gT982DE9
19
+ wmuN12LpdajxZONqbXuzZvc+nb0StFwmFYZG6iDwaf4BPywm2e/Vmq0YG45vZXGR
20
+ L8yMDSK1cQXjmA+ZBKOHKWavxP6Vp7lWvjAhz8RFwqF9GuNIdhv9NpnCAWcMZtpm
21
+ GUPyIWw/Cw/2wZp74QzZj6Npx+LdXoLTF1HMSJXZ7/pkxLCsB8m4EFVdb/IrW/0k
22
+ kNSfjtAfBHO8nLGuqQZVH9IBD1i9K6aSs7pT6TW8itXUIlkIUI2tg5YzW6OFfPzq
23
+ QekSkX3lZfY+HTSp/o+YvKkqWLUV7PQ7xh1ZYDtocpaHwgxe/j3bBqHE+CUPH2vA
24
+ 0V/FwdTRWcwsjVoOJTrYcff8pBZ8r2MvtAc54xfnnhGFzeRHfcltobgFxkAXdE6p
25
+ DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
26
+ L9nRqA==
27
+ -----END CERTIFICATE-----
@@ -1,13 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gitmoji
4
- # Namespace for all functionality provided by the gitmoji-regex gem.
5
4
  module Regex
6
- # Version namespace housing the gem version constant.
7
5
  module Version
8
- # The version of the gitmoji-regex gem.
9
- # @return [String]
10
- VERSION = "1.0.3"
6
+ VERSION = "2.0.1"
11
7
  end
8
+ VERSION = Version::VERSION # Traditional Constant Location
12
9
  end
13
10
  end
data/lib/gitmoji/regex.rb CHANGED
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "version_gem"
4
+ require_relative "regex/version"
4
5
 
5
- require "gitmoji/regex/version"
6
6
  # Reference file isn't needed at runtime.
7
7
  # require "gitmoji/regex/reference"
8
8
  # Used to update the source of the gem (literally this file) when a new Gitmoji is added to the official list.
@@ -22,7 +22,7 @@ module Gitmoji
22
22
  #
23
23
  # # Extract all gitmojis from text
24
24
  # "✨ Fix bug 🐛".scan(Gitmoji::Regex::REGEX) #=> ["✨", "🐛"]
25
- REGEX = Regexp.new("(?-mix:🎨|⚡️|🔥|🐛|🚑️|✨|📝|🚀|💄|🎉|✅|🔒️|🔐|🔖|🚨|🚧|💚|⬇️|⬆️|📌|👷|📈|♻️|➕|➖|🔧|🔨|🌐|✏️|💩|⏪️|🔀|📦️|👽️|🚚|📄|💥|🍱|♿️|💡|🍻|💬|🗃️|🔊|🔇|👥|🚸|🏗️|📱|🤡|🥚|🙈|📸|⚗️|🔍️|🏷️|🌱|🚩|🥅|💫|🗑️|🛂|🩹|🧐|⚰️|🧪|👔|🩺|🧱|🧑‍💻|💸|🧵|🦺|✈️)")
25
+ REGEX = Regexp.new("(?-mix:🎨|⚡️|🔥|🐛|🚑️|✨|📝|🚀|💄|🎉|✅|🔒️|🔐|🔖|🚨|🚧|💚|⬇️|⬆️|📌|👷|📈|♻️|➕|➖|🔧|🔨|🌐|✏️|💩|⏪️|🔀|📦️|👽️|🚚|📄|💥|🍱|♿️|💡|🍻|💬|🗃️|🔊|🔇|👥|🚸|🏗️|📱|🤡|🥚|🙈|📸|⚗️|🔍️|🏷️|🌱|🚩|🥅|💫|🗑️|🛂|🩹|🧐|⚰️|🧪|👔|🩺|🧱|🧑‍💻|💸|🧵|🦺|✈️|🦖)")
26
26
  end
27
27
  end
28
28
 
@@ -0,0 +1,8 @@
1
+ module Gitmoji
2
+ module Regex
3
+ module Version
4
+ VERSION: String
5
+ end
6
+ VERSION: String
7
+ end
8
+ end
@@ -23,6 +23,7 @@ module Gitmoji
23
23
  def write_src: () -> Integer
24
24
 
25
25
  private
26
+
26
27
  def pattern: (String) -> Regexp
27
28
  def fetch: () -> String
28
29
  def cached: () -> String
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,10 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitmoji-regex
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
- - Peter Boling
7
+ - Peter H. Boling
8
+ - Aboling0
8
9
  bindir: exe
9
10
  cert_chain:
10
11
  - |
@@ -35,7 +36,7 @@ cert_chain:
35
36
  DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
36
37
  L9nRqA==
37
38
  -----END CERTIFICATE-----
38
- date: 2025-08-20 00:00:00.000000000 Z
39
+ date: 1980-01-02 00:00:00.000000000 Z
39
40
  dependencies:
40
41
  - !ruby/object:Gem::Dependency
41
42
  name: version_gem
@@ -46,7 +47,7 @@ dependencies:
46
47
  version: '1.1'
47
48
  - - ">="
48
49
  - !ruby/object:Gem::Version
49
- version: 1.1.8
50
+ version: 1.1.9
50
51
  type: :runtime
51
52
  prerelease: false
52
53
  version_requirements: !ruby/object:Gem::Requirement
@@ -56,56 +57,65 @@ dependencies:
56
57
  version: '1.1'
57
58
  - - ">="
58
59
  - !ruby/object:Gem::Version
59
- version: 1.1.8
60
+ version: 1.1.9
60
61
  - !ruby/object:Gem::Dependency
61
- name: stone_checksums
62
+ name: kettle-dev
62
63
  requirement: !ruby/object:Gem::Requirement
63
64
  requirements:
64
65
  - - "~>"
65
66
  - !ruby/object:Gem::Version
66
- version: '1.0'
67
+ version: '2.0'
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: 2.0.6
67
71
  type: :development
68
72
  prerelease: false
69
73
  version_requirements: !ruby/object:Gem::Requirement
70
74
  requirements:
71
75
  - - "~>"
72
76
  - !ruby/object:Gem::Version
73
- version: '1.0'
77
+ version: '2.0'
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: 2.0.6
74
81
  - !ruby/object:Gem::Dependency
75
- name: appraisal2
82
+ name: bundler-audit
76
83
  requirement: !ruby/object:Gem::Requirement
77
84
  requirements:
78
85
  - - "~>"
79
86
  - !ruby/object:Gem::Version
80
- version: '3.0'
87
+ version: 0.9.3
81
88
  type: :development
82
89
  prerelease: false
83
90
  version_requirements: !ruby/object:Gem::Requirement
84
91
  requirements:
85
92
  - - "~>"
86
93
  - !ruby/object:Gem::Version
87
- version: '3.0'
94
+ version: 0.9.3
88
95
  - !ruby/object:Gem::Dependency
89
- name: rspec-benchmark
96
+ name: rake
90
97
  requirement: !ruby/object:Gem::Requirement
91
98
  requirements:
92
99
  - - "~>"
93
100
  - !ruby/object:Gem::Version
94
- version: '0.6'
101
+ version: '13.0'
95
102
  type: :development
96
103
  prerelease: false
97
104
  version_requirements: !ruby/object:Gem::Requirement
98
105
  requirements:
99
106
  - - "~>"
100
107
  - !ruby/object:Gem::Version
101
- version: '0.6'
108
+ version: '13.0'
102
109
  - !ruby/object:Gem::Dependency
103
- name: rspec-block_is_expected
110
+ name: require_bench
104
111
  requirement: !ruby/object:Gem::Requirement
105
112
  requirements:
106
113
  - - "~>"
107
114
  - !ruby/object:Gem::Version
108
115
  version: '1.0'
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: 1.0.4
109
119
  type: :development
110
120
  prerelease: false
111
121
  version_requirements: !ruby/object:Gem::Requirement
@@ -113,36 +123,65 @@ dependencies:
113
123
  - - "~>"
114
124
  - !ruby/object:Gem::Version
115
125
  version: '1.0'
126
+ - - ">="
127
+ - !ruby/object:Gem::Version
128
+ version: 1.0.4
116
129
  - !ruby/object:Gem::Dependency
117
- name: rspec_junit_formatter
130
+ name: appraisal2
118
131
  requirement: !ruby/object:Gem::Requirement
119
132
  requirements:
120
133
  - - "~>"
121
134
  - !ruby/object:Gem::Version
122
- version: '0.6'
135
+ version: '3.0'
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: 3.0.6
123
139
  type: :development
124
140
  prerelease: false
125
141
  version_requirements: !ruby/object:Gem::Requirement
126
142
  requirements:
127
143
  - - "~>"
128
144
  - !ruby/object:Gem::Version
129
- version: '0.6'
145
+ version: '3.0'
146
+ - - ">="
147
+ - !ruby/object:Gem::Version
148
+ version: 3.0.6
130
149
  - !ruby/object:Gem::Dependency
131
- name: rspec-stubbed_env
150
+ name: kettle-test
132
151
  requirement: !ruby/object:Gem::Requirement
133
152
  requirements:
134
153
  - - "~>"
135
154
  - !ruby/object:Gem::Version
136
- version: '1.0'
155
+ version: '2.0'
156
+ - - ">="
157
+ - !ruby/object:Gem::Version
158
+ version: 2.0.1
137
159
  type: :development
138
160
  prerelease: false
139
161
  version_requirements: !ruby/object:Gem::Requirement
140
162
  requirements:
141
163
  - - "~>"
142
164
  - !ruby/object:Gem::Version
143
- version: '1.0'
165
+ version: '2.0'
166
+ - - ">="
167
+ - !ruby/object:Gem::Version
168
+ version: 2.0.1
144
169
  - !ruby/object:Gem::Dependency
145
- name: silent_stream
170
+ name: ruby-progressbar
171
+ requirement: !ruby/object:Gem::Requirement
172
+ requirements:
173
+ - - "~>"
174
+ - !ruby/object:Gem::Version
175
+ version: '1.13'
176
+ type: :development
177
+ prerelease: false
178
+ version_requirements: !ruby/object:Gem::Requirement
179
+ requirements:
180
+ - - "~>"
181
+ - !ruby/object:Gem::Version
182
+ version: '1.13'
183
+ - !ruby/object:Gem::Dependency
184
+ name: stone_checksums
146
185
  requirement: !ruby/object:Gem::Requirement
147
186
  requirements:
148
187
  - - "~>"
@@ -150,7 +189,7 @@ dependencies:
150
189
  version: '1.0'
151
190
  - - ">="
152
191
  - !ruby/object:Gem::Version
153
- version: 1.0.11
192
+ version: 1.0.3
154
193
  type: :development
155
194
  prerelease: false
156
195
  version_requirements: !ruby/object:Gem::Requirement
@@ -160,7 +199,7 @@ dependencies:
160
199
  version: '1.0'
161
200
  - - ">="
162
201
  - !ruby/object:Gem::Version
163
- version: 1.0.11
202
+ version: 1.0.3
164
203
  - !ruby/object:Gem::Dependency
165
204
  name: http
166
205
  requirement: !ruby/object:Gem::Requirement
@@ -185,37 +224,93 @@ dependencies:
185
224
  name: json
186
225
  requirement: !ruby/object:Gem::Requirement
187
226
  requirements:
188
- - - ">="
227
+ - - "~>"
228
+ - !ruby/object:Gem::Version
229
+ version: 2.7.6
230
+ type: :development
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - "~>"
189
235
  - !ruby/object:Gem::Version
190
236
  version: 2.7.6
237
+ - !ruby/object:Gem::Dependency
238
+ name: rspec-benchmark
239
+ requirement: !ruby/object:Gem::Requirement
240
+ requirements:
191
241
  - - "~>"
192
242
  - !ruby/object:Gem::Version
193
- version: '2.7'
243
+ version: '0.6'
194
244
  type: :development
195
245
  prerelease: false
196
246
  version_requirements: !ruby/object:Gem::Requirement
197
247
  requirements:
198
- - - ">="
248
+ - - "~>"
199
249
  - !ruby/object:Gem::Version
200
- version: 2.7.6
250
+ version: '0.6'
251
+ - !ruby/object:Gem::Dependency
252
+ name: rspec-block_is_expected
253
+ requirement: !ruby/object:Gem::Requirement
254
+ requirements:
201
255
  - - "~>"
202
256
  - !ruby/object:Gem::Version
203
- version: '2.7'
257
+ version: '1.0'
258
+ type: :development
259
+ prerelease: false
260
+ version_requirements: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - "~>"
263
+ - !ruby/object:Gem::Version
264
+ version: '1.0'
204
265
  - !ruby/object:Gem::Dependency
205
- name: rake
266
+ name: rspec_junit_formatter
206
267
  requirement: !ruby/object:Gem::Requirement
207
268
  requirements:
208
269
  - - "~>"
209
270
  - !ruby/object:Gem::Version
210
- version: '13.0'
271
+ version: '0.6'
211
272
  type: :development
212
273
  prerelease: false
213
274
  version_requirements: !ruby/object:Gem::Requirement
214
275
  requirements:
215
276
  - - "~>"
216
277
  - !ruby/object:Gem::Version
217
- version: '13.0'
218
- description: "\U0001F61C A regular expression matching Gitmoji (a subset of Unicode
278
+ version: '0.6'
279
+ - !ruby/object:Gem::Dependency
280
+ name: rspec-stubbed_env
281
+ requirement: !ruby/object:Gem::Requirement
282
+ requirements:
283
+ - - "~>"
284
+ - !ruby/object:Gem::Version
285
+ version: '1.0'
286
+ type: :development
287
+ prerelease: false
288
+ version_requirements: !ruby/object:Gem::Requirement
289
+ requirements:
290
+ - - "~>"
291
+ - !ruby/object:Gem::Version
292
+ version: '1.0'
293
+ - !ruby/object:Gem::Dependency
294
+ name: silent_stream
295
+ requirement: !ruby/object:Gem::Requirement
296
+ requirements:
297
+ - - "~>"
298
+ - !ruby/object:Gem::Version
299
+ version: '1.0'
300
+ - - ">="
301
+ - !ruby/object:Gem::Version
302
+ version: 1.0.11
303
+ type: :development
304
+ prerelease: false
305
+ version_requirements: !ruby/object:Gem::Requirement
306
+ requirements:
307
+ - - "~>"
308
+ - !ruby/object:Gem::Version
309
+ version: '1.0'
310
+ - - ">="
311
+ - !ruby/object:Gem::Version
312
+ version: 1.0.11
313
+ description: "\U0001F3C1 A regular expression matching Gitmoji (a subset of Unicode
219
314
  Emoji) symbolsFund overlooked open source projects - bottom of stack, dev/test dependencies:
220
315
  floss-funding.dev"
221
316
  email:
@@ -224,45 +319,39 @@ executables: []
224
319
  extensions: []
225
320
  extra_rdoc_files:
226
321
  - CHANGELOG.md
322
+ - CITATION.cff
227
323
  - CODE_OF_CONDUCT.md
228
324
  - CONTRIBUTING.md
229
- - LICENSE.txt
325
+ - FUNDING.md
326
+ - LICENSE.md
230
327
  - README.md
231
- - REEK
232
328
  - RUBOCOP.md
233
329
  - SECURITY.md
234
- - checksums/gitmoji-regex-1.0.2.gem.sha256
235
- - checksums/gitmoji-regex-1.0.2.gem.sha512
236
- - checksums/gitmoji-regex-1.0.3.gem.sha256
237
- - checksums/gitmoji-regex-1.0.3.gem.sha512
238
- - sig/gitmoji/regex.rbs
239
330
  files:
240
331
  - CHANGELOG.md
332
+ - CITATION.cff
241
333
  - CODE_OF_CONDUCT.md
242
334
  - CONTRIBUTING.md
243
- - LICENSE.txt
335
+ - FUNDING.md
336
+ - LICENSE.md
244
337
  - README.md
245
- - REEK
246
338
  - RUBOCOP.md
247
339
  - SECURITY.md
248
- - checksums/gitmoji-regex-1.0.2.gem.sha256
249
- - checksums/gitmoji-regex-1.0.2.gem.sha512
250
- - checksums/gitmoji-regex-1.0.3.gem.sha256
251
- - checksums/gitmoji-regex-1.0.3.gem.sha512
340
+ - certs/pboling.pem
252
341
  - lib/gitmoji/regex.rb
253
342
  - lib/gitmoji/regex/reference.rb
254
343
  - lib/gitmoji/regex/version.rb
255
344
  - sig/gitmoji/regex.rbs
256
- - src/gitmojis.json
345
+ - sig/gitmoji/regex/version.rbs
257
346
  homepage: https://github.com/galtzo-floss/gitmoji-regex
258
347
  licenses:
259
348
  - MIT
260
349
  metadata:
261
- homepage_uri: https://gitmoji-regex.galtzo.com/
262
- source_code_uri: https://github.com/galtzo-floss/gitmoji-regex/tree/v1.0.3
263
- changelog_uri: https://github.com/galtzo-floss/gitmoji-regex/blob/v1.0.3/CHANGELOG.md
350
+ homepage_uri: https://structuredmerge.org
351
+ source_code_uri: https://github.com/galtzo-floss/gitmoji-regex/tree/v2.0.1
352
+ changelog_uri: https://github.com/galtzo-floss/gitmoji-regex/blob/v2.0.1/CHANGELOG.md
264
353
  bug_tracker_uri: https://github.com/galtzo-floss/gitmoji-regex/issues
265
- documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/1.0.3
354
+ documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/2.0.1
266
355
  funding_uri: https://github.com/sponsors/pboling
267
356
  wiki_uri: https://github.com/galtzo-floss/gitmoji-regex/wiki
268
357
  news_uri: https://www.railsbling.com/tags/gitmoji-regex
@@ -270,20 +359,11 @@ metadata:
270
359
  rubygems_mfa_required: 'true'
271
360
  rdoc_options:
272
361
  - "--title"
273
- - "gitmoji-regex - \U0001F61C A regular expression for Gitmoji symbols"
362
+ - "gitmoji-regex - \U0001F3C1 A regular expression for Gitmoji symbols"
274
363
  - "--main"
275
- - checksums/**/*.sha256
276
- - checksums/**/*.sha512
277
- - sig/**/*.rbs
278
- - CHANGELOG.md
279
- - CITATION.cff
280
- - CODE_OF_CONDUCT.md
281
- - CONTRIBUTING.md
282
- - LICENSE.txt
283
364
  - README.md
284
- - REEK
285
- - RUBOCOP.md
286
- - SECURITY.md
365
+ - "--exclude"
366
+ - "^sig/"
287
367
  - "--line-numbers"
288
368
  - "--inline-source"
289
369
  - "--quiet"
@@ -293,14 +373,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
293
373
  requirements:
294
374
  - - ">="
295
375
  - !ruby/object:Gem::Version
296
- version: 2.3.0
376
+ version: '2.4'
297
377
  required_rubygems_version: !ruby/object:Gem::Requirement
298
378
  requirements:
299
379
  - - ">="
300
380
  - !ruby/object:Gem::Version
301
381
  version: '0'
302
382
  requirements: []
303
- rubygems_version: 3.7.1
383
+ rubygems_version: 4.0.10
304
384
  specification_version: 4
305
- summary: "\U0001F61C A regular expression for Gitmoji symbols"
385
+ summary: "\U0001F3C1 A regular expression for Gitmoji symbols"
306
386
  test_files: []
metadata.gz.sig CHANGED
@@ -1,4 +1,3 @@
1
- r�(�AP��Uى ;���o����MPAM?ҭfm[_�E��X���!��� ��p�:��흖���U�*x�>�
2
- ��B5}
3
- h��&�3�+׆Ջ;��i�;z���-���~�M�.�/� x ��z���"�I\��i��R��wETӽ�7� Yn"S�?�ln��o��.y�Uʇ�NlmPm�d�
4
- �ۈ)�B�(zBY�PL�g
1
+ .���' ����}� 9cPz���Ԋ�sQH%Ţ�yns(̖4��L�&��$T:�� .����
2
+ qEX����tA�È�����ZC�pD����]���j��X ��_,#�9���~p��ε��Hl ���I�~��V�!�b����.I ��^fI�t����sU�'%�c�ӝ�}
3
+ Lܥ��}�,�`�bS_m���������oi�OM��w���@�'>�%xy����*-��G"u,'�r>g�a_���7��r �����w����|ks�W�/�m�_F�� JW?e�߻7b���#8�����i�o��y9���m�e�&nڋw+�
data/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2022 Peter Boling
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all 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,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
data/REEK DELETED
File without changes
@@ -1 +0,0 @@
1
- 5fb52a48785f097e9f81632ccec8cf026be432bb1f32e057d3cf61d7ef725faf
@@ -1 +0,0 @@
1
- 3b6e33a6cd5c90c16730ca1ae2b405629e23635b464b65cec25a7a9a6a6898fd536d84f0499c579c9517d3b98d7c9facc3d10e82208813b5debfac317456e653
@@ -1 +0,0 @@
1
- a88394b8f30ae9cab79175d658d6dbcc1e1a5dfb819808a1292edc3f0f97d29b
@@ -1 +0,0 @@
1
- e64c9581a9156845db3ab54445bb2e7fc0c51788b5b6db1d7fdc50520b9922c7a237e85ecb071251fdc5846beac2bbea432a6cb1a5e6ae522a5ae11a98d48d4b