gitmoji-regex 1.0.3 → 2.0.0

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.0"
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.0
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,59 @@ 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'
67
68
  type: :development
68
69
  prerelease: false
69
70
  version_requirements: !ruby/object:Gem::Requirement
70
71
  requirements:
71
72
  - - "~>"
72
73
  - !ruby/object:Gem::Version
73
- version: '1.0'
74
+ version: '2.0'
74
75
  - !ruby/object:Gem::Dependency
75
- name: appraisal2
76
+ name: bundler-audit
76
77
  requirement: !ruby/object:Gem::Requirement
77
78
  requirements:
78
79
  - - "~>"
79
80
  - !ruby/object:Gem::Version
80
- version: '3.0'
81
+ version: 0.9.3
81
82
  type: :development
82
83
  prerelease: false
83
84
  version_requirements: !ruby/object:Gem::Requirement
84
85
  requirements:
85
86
  - - "~>"
86
87
  - !ruby/object:Gem::Version
87
- version: '3.0'
88
+ version: 0.9.3
88
89
  - !ruby/object:Gem::Dependency
89
- name: rspec-benchmark
90
+ name: rake
90
91
  requirement: !ruby/object:Gem::Requirement
91
92
  requirements:
92
93
  - - "~>"
93
94
  - !ruby/object:Gem::Version
94
- version: '0.6'
95
+ version: '13.0'
95
96
  type: :development
96
97
  prerelease: false
97
98
  version_requirements: !ruby/object:Gem::Requirement
98
99
  requirements:
99
100
  - - "~>"
100
101
  - !ruby/object:Gem::Version
101
- version: '0.6'
102
+ version: '13.0'
102
103
  - !ruby/object:Gem::Dependency
103
- name: rspec-block_is_expected
104
+ name: require_bench
104
105
  requirement: !ruby/object:Gem::Requirement
105
106
  requirements:
106
107
  - - "~>"
107
108
  - !ruby/object:Gem::Version
108
109
  version: '1.0'
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: 1.0.4
109
113
  type: :development
110
114
  prerelease: false
111
115
  version_requirements: !ruby/object:Gem::Requirement
@@ -113,36 +117,65 @@ dependencies:
113
117
  - - "~>"
114
118
  - !ruby/object:Gem::Version
115
119
  version: '1.0'
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: 1.0.4
116
123
  - !ruby/object:Gem::Dependency
117
- name: rspec_junit_formatter
124
+ name: appraisal2
118
125
  requirement: !ruby/object:Gem::Requirement
119
126
  requirements:
120
127
  - - "~>"
121
128
  - !ruby/object:Gem::Version
122
- version: '0.6'
129
+ version: '3.0'
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: 3.0.6
123
133
  type: :development
124
134
  prerelease: false
125
135
  version_requirements: !ruby/object:Gem::Requirement
126
136
  requirements:
127
137
  - - "~>"
128
138
  - !ruby/object:Gem::Version
129
- version: '0.6'
139
+ version: '3.0'
140
+ - - ">="
141
+ - !ruby/object:Gem::Version
142
+ version: 3.0.6
130
143
  - !ruby/object:Gem::Dependency
131
- name: rspec-stubbed_env
144
+ name: kettle-test
132
145
  requirement: !ruby/object:Gem::Requirement
133
146
  requirements:
134
147
  - - "~>"
135
148
  - !ruby/object:Gem::Version
136
- version: '1.0'
149
+ version: '2.0'
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: 2.0.0
137
153
  type: :development
138
154
  prerelease: false
139
155
  version_requirements: !ruby/object:Gem::Requirement
140
156
  requirements:
141
157
  - - "~>"
142
158
  - !ruby/object:Gem::Version
143
- version: '1.0'
159
+ version: '2.0'
160
+ - - ">="
161
+ - !ruby/object:Gem::Version
162
+ version: 2.0.0
144
163
  - !ruby/object:Gem::Dependency
145
- name: silent_stream
164
+ name: ruby-progressbar
165
+ requirement: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - "~>"
168
+ - !ruby/object:Gem::Version
169
+ version: '1.13'
170
+ type: :development
171
+ prerelease: false
172
+ version_requirements: !ruby/object:Gem::Requirement
173
+ requirements:
174
+ - - "~>"
175
+ - !ruby/object:Gem::Version
176
+ version: '1.13'
177
+ - !ruby/object:Gem::Dependency
178
+ name: stone_checksums
146
179
  requirement: !ruby/object:Gem::Requirement
147
180
  requirements:
148
181
  - - "~>"
@@ -150,7 +183,7 @@ dependencies:
150
183
  version: '1.0'
151
184
  - - ">="
152
185
  - !ruby/object:Gem::Version
153
- version: 1.0.11
186
+ version: 1.0.3
154
187
  type: :development
155
188
  prerelease: false
156
189
  version_requirements: !ruby/object:Gem::Requirement
@@ -160,7 +193,7 @@ dependencies:
160
193
  version: '1.0'
161
194
  - - ">="
162
195
  - !ruby/object:Gem::Version
163
- version: 1.0.11
196
+ version: 1.0.3
164
197
  - !ruby/object:Gem::Dependency
165
198
  name: http
166
199
  requirement: !ruby/object:Gem::Requirement
@@ -185,37 +218,93 @@ dependencies:
185
218
  name: json
186
219
  requirement: !ruby/object:Gem::Requirement
187
220
  requirements:
188
- - - ">="
221
+ - - "~>"
222
+ - !ruby/object:Gem::Version
223
+ version: 2.7.6
224
+ type: :development
225
+ prerelease: false
226
+ version_requirements: !ruby/object:Gem::Requirement
227
+ requirements:
228
+ - - "~>"
189
229
  - !ruby/object:Gem::Version
190
230
  version: 2.7.6
231
+ - !ruby/object:Gem::Dependency
232
+ name: rspec-benchmark
233
+ requirement: !ruby/object:Gem::Requirement
234
+ requirements:
191
235
  - - "~>"
192
236
  - !ruby/object:Gem::Version
193
- version: '2.7'
237
+ version: '0.6'
194
238
  type: :development
195
239
  prerelease: false
196
240
  version_requirements: !ruby/object:Gem::Requirement
197
241
  requirements:
198
- - - ">="
242
+ - - "~>"
199
243
  - !ruby/object:Gem::Version
200
- version: 2.7.6
244
+ version: '0.6'
245
+ - !ruby/object:Gem::Dependency
246
+ name: rspec-block_is_expected
247
+ requirement: !ruby/object:Gem::Requirement
248
+ requirements:
249
+ - - "~>"
250
+ - !ruby/object:Gem::Version
251
+ version: '1.0'
252
+ type: :development
253
+ prerelease: false
254
+ version_requirements: !ruby/object:Gem::Requirement
255
+ requirements:
201
256
  - - "~>"
202
257
  - !ruby/object:Gem::Version
203
- version: '2.7'
258
+ version: '1.0'
204
259
  - !ruby/object:Gem::Dependency
205
- name: rake
260
+ name: rspec_junit_formatter
206
261
  requirement: !ruby/object:Gem::Requirement
207
262
  requirements:
208
263
  - - "~>"
209
264
  - !ruby/object:Gem::Version
210
- version: '13.0'
265
+ version: '0.6'
211
266
  type: :development
212
267
  prerelease: false
213
268
  version_requirements: !ruby/object:Gem::Requirement
214
269
  requirements:
215
270
  - - "~>"
216
271
  - !ruby/object:Gem::Version
217
- version: '13.0'
218
- description: "\U0001F61C A regular expression matching Gitmoji (a subset of Unicode
272
+ version: '0.6'
273
+ - !ruby/object:Gem::Dependency
274
+ name: rspec-stubbed_env
275
+ requirement: !ruby/object:Gem::Requirement
276
+ requirements:
277
+ - - "~>"
278
+ - !ruby/object:Gem::Version
279
+ version: '1.0'
280
+ type: :development
281
+ prerelease: false
282
+ version_requirements: !ruby/object:Gem::Requirement
283
+ requirements:
284
+ - - "~>"
285
+ - !ruby/object:Gem::Version
286
+ version: '1.0'
287
+ - !ruby/object:Gem::Dependency
288
+ name: silent_stream
289
+ requirement: !ruby/object:Gem::Requirement
290
+ requirements:
291
+ - - "~>"
292
+ - !ruby/object:Gem::Version
293
+ version: '1.0'
294
+ - - ">="
295
+ - !ruby/object:Gem::Version
296
+ version: 1.0.11
297
+ type: :development
298
+ prerelease: false
299
+ version_requirements: !ruby/object:Gem::Requirement
300
+ requirements:
301
+ - - "~>"
302
+ - !ruby/object:Gem::Version
303
+ version: '1.0'
304
+ - - ">="
305
+ - !ruby/object:Gem::Version
306
+ version: 1.0.11
307
+ description: "\U0001F372 A regular expression matching Gitmoji (a subset of Unicode
219
308
  Emoji) symbolsFund overlooked open source projects - bottom of stack, dev/test dependencies:
220
309
  floss-funding.dev"
221
310
  email:
@@ -224,45 +313,39 @@ executables: []
224
313
  extensions: []
225
314
  extra_rdoc_files:
226
315
  - CHANGELOG.md
316
+ - CITATION.cff
227
317
  - CODE_OF_CONDUCT.md
228
318
  - CONTRIBUTING.md
229
- - LICENSE.txt
319
+ - FUNDING.md
320
+ - LICENSE.md
230
321
  - README.md
231
- - REEK
232
322
  - RUBOCOP.md
233
323
  - 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
324
  files:
240
325
  - CHANGELOG.md
326
+ - CITATION.cff
241
327
  - CODE_OF_CONDUCT.md
242
328
  - CONTRIBUTING.md
243
- - LICENSE.txt
329
+ - FUNDING.md
330
+ - LICENSE.md
244
331
  - README.md
245
- - REEK
246
332
  - RUBOCOP.md
247
333
  - 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
334
+ - certs/pboling.pem
252
335
  - lib/gitmoji/regex.rb
253
336
  - lib/gitmoji/regex/reference.rb
254
337
  - lib/gitmoji/regex/version.rb
255
338
  - sig/gitmoji/regex.rbs
256
- - src/gitmojis.json
339
+ - sig/gitmoji/regex/version.rbs
257
340
  homepage: https://github.com/galtzo-floss/gitmoji-regex
258
341
  licenses:
259
342
  - MIT
260
343
  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
344
+ homepage_uri: https://structuredmerge.org
345
+ source_code_uri: https://github.com/galtzo-floss/gitmoji-regex/tree/v2.0.0
346
+ changelog_uri: https://github.com/galtzo-floss/gitmoji-regex/blob/v2.0.0/CHANGELOG.md
264
347
  bug_tracker_uri: https://github.com/galtzo-floss/gitmoji-regex/issues
265
- documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/1.0.3
348
+ documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/2.0.0
266
349
  funding_uri: https://github.com/sponsors/pboling
267
350
  wiki_uri: https://github.com/galtzo-floss/gitmoji-regex/wiki
268
351
  news_uri: https://www.railsbling.com/tags/gitmoji-regex
@@ -270,20 +353,11 @@ metadata:
270
353
  rubygems_mfa_required: 'true'
271
354
  rdoc_options:
272
355
  - "--title"
273
- - "gitmoji-regex - \U0001F61C A regular expression for Gitmoji symbols"
356
+ - "gitmoji-regex - \U0001F372 A regular expression for Gitmoji symbols"
274
357
  - "--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
358
  - README.md
284
- - REEK
285
- - RUBOCOP.md
286
- - SECURITY.md
359
+ - "--exclude"
360
+ - "^sig/"
287
361
  - "--line-numbers"
288
362
  - "--inline-source"
289
363
  - "--quiet"
@@ -293,14 +367,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
293
367
  requirements:
294
368
  - - ">="
295
369
  - !ruby/object:Gem::Version
296
- version: 2.3.0
370
+ version: '2.4'
297
371
  required_rubygems_version: !ruby/object:Gem::Requirement
298
372
  requirements:
299
373
  - - ">="
300
374
  - !ruby/object:Gem::Version
301
375
  version: '0'
302
376
  requirements: []
303
- rubygems_version: 3.7.1
377
+ rubygems_version: 4.0.10
304
378
  specification_version: 4
305
- summary: "\U0001F61C A regular expression for Gitmoji symbols"
379
+ summary: "\U0001F372 A regular expression for Gitmoji symbols"
306
380
  test_files: []
metadata.gz.sig CHANGED
Binary file
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