timecop-rspec 1.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.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data/.devcontainer/devcontainer.json +26 -0
- data/.env.local.example +3 -0
- data/.envrc +41 -0
- data/.github/FUNDING.yml +13 -0
- data/.github/dependabot.yml +12 -0
- data/.github/workflows/ancient.yml +77 -0
- data/.github/workflows/auto-assign.yml +21 -0
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/.github/workflows/coverage.yml +126 -0
- data/.github/workflows/current.yml +85 -0
- data/.github/workflows/dependency-review.yml +20 -0
- data/.github/workflows/deps_locked.yml +75 -0
- data/.github/workflows/deps_unlocked.yml +84 -0
- data/.github/workflows/discord-notifier.yml +38 -0
- data/.github/workflows/heads.yml +84 -0
- data/.github/workflows/jruby.yml +75 -0
- data/.github/workflows/legacy.yml +67 -0
- data/.github/workflows/style.yml +64 -0
- data/.github/workflows/supported.yml +82 -0
- data/.github/workflows/truffle.yml +75 -0
- data/.github/workflows/unsupported.yml +75 -0
- data/.gitignore +45 -0
- data/.gitlab-ci.yml +44 -0
- data/.idea/.gitignore +8 -0
- data/.idea/GitLink.xml +6 -0
- data/.idea/misc.xml +4 -0
- data/.idea/modules.xml +8 -0
- data/.idea/timecop-rspec.iml +120 -0
- data/.idea/vcs.xml +6 -0
- data/.junie/TASK_NOTE.md +1 -0
- data/.junie/guidelines.md +139 -0
- data/.qlty/qlty.toml +79 -0
- data/.rspec +8 -0
- data/.rubocop.yml +15 -0
- data/.rubocop_gradual.lock +76 -0
- data/.simplecov +11 -0
- data/.tool-versions +1 -0
- data/.yard_gfm_support.rb +22 -0
- data/.yardopts +11 -0
- data/Appraisal.root.gemfile +12 -0
- data/Appraisals +104 -0
- data/CHANGELOG.md +27 -0
- data/CITATION.cff +20 -0
- data/CNAME +1 -0
- data/CODE_OF_CONDUCT.md +134 -0
- data/CONTRIBUTING.md +145 -0
- data/Gemfile +38 -0
- data/Gemfile.lock +315 -0
- data/LICENSE.txt +22 -0
- data/README.md +563 -0
- data/REEK +0 -0
- data/RUBOCOP.md +71 -0
- data/Rakefile +287 -0
- data/SECURITY.md +21 -0
- data/bin/appraisal +16 -0
- data/bin/bundle-audit +16 -0
- data/bin/bundler-audit +16 -0
- data/bin/code_climate_reek +16 -0
- data/bin/coderay +16 -0
- data/bin/console +38 -0
- data/bin/erb +16 -0
- data/bin/gem_checksums +16 -0
- data/bin/htmldiff +16 -0
- data/bin/irb +16 -0
- data/bin/kramdown +16 -0
- data/bin/ldiff +16 -0
- data/bin/nokogiri +16 -0
- data/bin/pry +16 -0
- data/bin/racc +16 -0
- data/bin/rake +16 -0
- data/bin/rdbg +16 -0
- data/bin/rdoc +16 -0
- data/bin/reek +16 -0
- data/bin/ri +16 -0
- data/bin/rspec +16 -0
- data/bin/rubocop +16 -0
- data/bin/rubocop-gradual +16 -0
- data/bin/ruby-parse +16 -0
- data/bin/ruby-rewrite +16 -0
- data/bin/setup +33 -0
- data/bin/standardrb +16 -0
- data/bin/thor +16 -0
- data/bin/yard +16 -0
- data/bin/yard-junk +16 -0
- data/bin/yardoc +16 -0
- data/bin/yri +16 -0
- data/certs/pboling.pem +27 -0
- data/checksums/timecop-rspec-1.0.0.gem.sha256 +1 -0
- data/checksums/timecop-rspec-1.0.0.gem.sha512 +1 -0
- data/docs/Timecop/Rspec/ExampleDecorator.html +626 -0
- data/docs/Timecop/Rspec/SequentialTimeMachine.html +338 -0
- data/docs/Timecop/Rspec/TimeMachine.html +357 -0
- data/docs/Timecop/Rspec/TravelLog.html +440 -0
- data/docs/Timecop/Rspec/Traveler.html +353 -0
- data/docs/Timecop/Rspec/Version.html +154 -0
- data/docs/Timecop/Rspec.html +474 -0
- data/docs/Timecop.html +149 -0
- data/docs/_index.html +218 -0
- data/docs/class_list.html +54 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +503 -0
- data/docs/file.CHANGELOG.html +99 -0
- data/docs/file.CITATION.html +92 -0
- data/docs/file.CODE_OF_CONDUCT.html +201 -0
- data/docs/file.CONTRIBUTING.html +220 -0
- data/docs/file.LICENSE.html +70 -0
- data/docs/file.README.html +523 -0
- data/docs/file.REEK.html +71 -0
- data/docs/file.RUBOCOP.html +171 -0
- data/docs/file.SECURITY.html +101 -0
- data/docs/file.rspec.html +109 -0
- data/docs/file.timecop.html +72 -0
- data/docs/file_list.html +109 -0
- data/docs/frames.html +22 -0
- data/docs/index.html +523 -0
- data/docs/js/app.js +344 -0
- data/docs/js/full_list.js +242 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +198 -0
- data/docs/top-level-namespace.html +110 -0
- data/gemfiles/audit.gemfile +10 -0
- data/gemfiles/coverage.gemfile +10 -0
- data/gemfiles/current.gemfile +8 -0
- data/gemfiles/deps_unlocked.gemfile +13 -0
- data/gemfiles/head.gemfile +9 -0
- data/gemfiles/modular/audit.gemfile +5 -0
- data/gemfiles/modular/coverage.gemfile +6 -0
- data/gemfiles/modular/documentation.gemfile +11 -0
- data/gemfiles/modular/style.gemfile +14 -0
- data/gemfiles/ruby_2_3.gemfile +5 -0
- data/gemfiles/ruby_2_4.gemfile +5 -0
- data/gemfiles/ruby_2_5.gemfile +5 -0
- data/gemfiles/ruby_2_6.gemfile +8 -0
- data/gemfiles/ruby_2_7.gemfile +8 -0
- data/gemfiles/ruby_3_0.gemfile +8 -0
- data/gemfiles/ruby_3_1.gemfile +8 -0
- data/gemfiles/ruby_3_2.gemfile +8 -0
- data/gemfiles/ruby_3_3.gemfile +8 -0
- data/gemfiles/style.gemfile +10 -0
- data/lib/timecop/rspec/example_decorator.rb +100 -0
- data/lib/timecop/rspec/sequential_time_machine.rb +80 -0
- data/lib/timecop/rspec/time_machine.rb +58 -0
- data/lib/timecop/rspec/travel_log.rb +103 -0
- data/lib/timecop/rspec/traveler.rb +68 -0
- data/lib/timecop/rspec/version.rb +37 -0
- data/lib/timecop/rspec.rb +78 -0
- data/sig/timecop/rspec.rbs +40 -0
- data/sig/timecop.rbs +2 -0
- data/timecop-rspec.gemspec +146 -0
- data.tar.gz.sig +2 -0
- metadata +434 -0
- metadata.gz.sig +0 -0
data/Gemfile.lock
ADDED
@@ -0,0 +1,315 @@
|
|
1
|
+
GIT
|
2
|
+
remote: https://github.com/pboling/yard-junk
|
3
|
+
revision: 54ccebabbfa9a9cd44d0b991687ebbfd22c32b55
|
4
|
+
branch: next
|
5
|
+
specs:
|
6
|
+
yard-junk (0.0.10)
|
7
|
+
backports (>= 3.18)
|
8
|
+
benchmark
|
9
|
+
ostruct
|
10
|
+
rainbow
|
11
|
+
yard
|
12
|
+
|
13
|
+
PATH
|
14
|
+
remote: .
|
15
|
+
specs:
|
16
|
+
timecop-rspec (1.0.0)
|
17
|
+
activesupport (>= 4.0)
|
18
|
+
rspec (~> 3.0)
|
19
|
+
timecop (>= 0.7, < 1)
|
20
|
+
|
21
|
+
GEM
|
22
|
+
remote: https://rubygems.org/
|
23
|
+
specs:
|
24
|
+
activesupport (8.0.2.1)
|
25
|
+
base64
|
26
|
+
benchmark (>= 0.3)
|
27
|
+
bigdecimal
|
28
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
29
|
+
connection_pool (>= 2.2.5)
|
30
|
+
drb
|
31
|
+
i18n (>= 1.6, < 2)
|
32
|
+
logger (>= 1.4.2)
|
33
|
+
minitest (>= 5.1)
|
34
|
+
securerandom (>= 0.3)
|
35
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
36
|
+
uri (>= 0.13.1)
|
37
|
+
ansi (1.5.0)
|
38
|
+
appraisal2 (3.0.0)
|
39
|
+
bundler (>= 1.17.3)
|
40
|
+
rake (>= 10)
|
41
|
+
thor (>= 0.14)
|
42
|
+
ast (2.4.3)
|
43
|
+
backports (3.25.1)
|
44
|
+
base64 (0.3.0)
|
45
|
+
benchmark (0.4.1)
|
46
|
+
bigdecimal (3.2.2)
|
47
|
+
bundler-audit (0.9.2)
|
48
|
+
bundler (>= 1.2.0, < 3)
|
49
|
+
thor (~> 1.0)
|
50
|
+
coderay (1.1.3)
|
51
|
+
concurrent-ruby (1.3.5)
|
52
|
+
connection_pool (2.5.3)
|
53
|
+
date (3.4.1)
|
54
|
+
debug (1.11.0)
|
55
|
+
irb (~> 1.10)
|
56
|
+
reline (>= 0.3.8)
|
57
|
+
diff-lcs (1.6.2)
|
58
|
+
diffy (3.4.4)
|
59
|
+
docile (1.4.1)
|
60
|
+
drb (2.2.3)
|
61
|
+
dry-configurable (1.3.0)
|
62
|
+
dry-core (~> 1.1)
|
63
|
+
zeitwerk (~> 2.6)
|
64
|
+
dry-core (1.1.0)
|
65
|
+
concurrent-ruby (~> 1.0)
|
66
|
+
logger
|
67
|
+
zeitwerk (~> 2.6)
|
68
|
+
dry-inflector (1.2.0)
|
69
|
+
dry-initializer (3.2.0)
|
70
|
+
dry-logic (1.6.0)
|
71
|
+
bigdecimal
|
72
|
+
concurrent-ruby (~> 1.0)
|
73
|
+
dry-core (~> 1.1)
|
74
|
+
zeitwerk (~> 2.6)
|
75
|
+
dry-schema (1.14.1)
|
76
|
+
concurrent-ruby (~> 1.0)
|
77
|
+
dry-configurable (~> 1.0, >= 1.0.1)
|
78
|
+
dry-core (~> 1.1)
|
79
|
+
dry-initializer (~> 3.2)
|
80
|
+
dry-logic (~> 1.5)
|
81
|
+
dry-types (~> 1.8)
|
82
|
+
zeitwerk (~> 2.6)
|
83
|
+
dry-types (1.8.3)
|
84
|
+
bigdecimal (~> 3.0)
|
85
|
+
concurrent-ruby (~> 1.0)
|
86
|
+
dry-core (~> 1.0)
|
87
|
+
dry-inflector (~> 1.0)
|
88
|
+
dry-logic (~> 1.4)
|
89
|
+
zeitwerk (~> 2.6)
|
90
|
+
erb (5.0.2)
|
91
|
+
gem_bench (2.0.5)
|
92
|
+
bundler (>= 1.14)
|
93
|
+
version_gem (~> 1.1, >= 1.1.4)
|
94
|
+
i18n (1.14.7)
|
95
|
+
concurrent-ruby (~> 1.0)
|
96
|
+
io-console (0.8.1)
|
97
|
+
irb (1.15.2)
|
98
|
+
pp (>= 0.6.0)
|
99
|
+
rdoc (>= 4.0.0)
|
100
|
+
reline (>= 0.4.2)
|
101
|
+
json (2.13.2)
|
102
|
+
kettle-soup-cover (1.0.10)
|
103
|
+
simplecov (~> 0.22)
|
104
|
+
simplecov-cobertura (~> 3.0)
|
105
|
+
simplecov-console (~> 0.9, >= 0.9.3)
|
106
|
+
simplecov-html (~> 0.13, >= 0.13.1)
|
107
|
+
simplecov-lcov (~> 0.8)
|
108
|
+
simplecov-rcov (~> 0.3, >= 0.3.7)
|
109
|
+
simplecov_json_formatter (~> 0.1, >= 0.1.4)
|
110
|
+
version_gem (~> 1.1, >= 1.1.8)
|
111
|
+
kramdown (2.5.1)
|
112
|
+
rexml (>= 3.3.9)
|
113
|
+
kramdown-parser-gfm (1.1.0)
|
114
|
+
kramdown (~> 2.0)
|
115
|
+
language_server-protocol (3.17.0.5)
|
116
|
+
lint_roller (1.1.0)
|
117
|
+
logger (1.7.0)
|
118
|
+
method_source (1.1.0)
|
119
|
+
minitest (5.25.5)
|
120
|
+
nokogiri (1.18.9-x86_64-linux-gnu)
|
121
|
+
racc (~> 1.4)
|
122
|
+
ostruct (0.6.3)
|
123
|
+
parallel (1.27.0)
|
124
|
+
parser (3.3.9.0)
|
125
|
+
ast (~> 2.4.1)
|
126
|
+
racc
|
127
|
+
pp (0.6.2)
|
128
|
+
prettyprint
|
129
|
+
prettyprint (0.2.0)
|
130
|
+
prism (1.4.0)
|
131
|
+
pry (0.15.2)
|
132
|
+
coderay (~> 1.1)
|
133
|
+
method_source (~> 1.0)
|
134
|
+
psych (5.2.6)
|
135
|
+
date
|
136
|
+
stringio
|
137
|
+
racc (1.8.1)
|
138
|
+
rainbow (3.1.1)
|
139
|
+
rake (13.3.0)
|
140
|
+
rdoc (6.14.2)
|
141
|
+
erb
|
142
|
+
psych (>= 4.0.0)
|
143
|
+
reek (6.5.0)
|
144
|
+
dry-schema (~> 1.13)
|
145
|
+
logger (~> 1.6)
|
146
|
+
parser (~> 3.3.0)
|
147
|
+
rainbow (>= 2.0, < 4.0)
|
148
|
+
rexml (~> 3.1)
|
149
|
+
regexp_parser (2.11.2)
|
150
|
+
reline (0.6.2)
|
151
|
+
io-console (~> 0.5)
|
152
|
+
rexml (3.4.1)
|
153
|
+
rspec (3.13.1)
|
154
|
+
rspec-core (~> 3.13.0)
|
155
|
+
rspec-expectations (~> 3.13.0)
|
156
|
+
rspec-mocks (~> 3.13.0)
|
157
|
+
rspec-block_is_expected (1.0.6)
|
158
|
+
rspec-core (3.13.5)
|
159
|
+
rspec-support (~> 3.13.0)
|
160
|
+
rspec-expectations (3.13.5)
|
161
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
162
|
+
rspec-support (~> 3.13.0)
|
163
|
+
rspec-mocks (3.13.5)
|
164
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
165
|
+
rspec-support (~> 3.13.0)
|
166
|
+
rspec-stubbed_env (1.0.4)
|
167
|
+
rspec-support (3.13.4)
|
168
|
+
rspec_junit_formatter (0.6.0)
|
169
|
+
rspec-core (>= 2, < 4, != 2.12.0)
|
170
|
+
rubocop (1.75.8)
|
171
|
+
json (~> 2.3)
|
172
|
+
language_server-protocol (~> 3.17.0.2)
|
173
|
+
lint_roller (~> 1.1.0)
|
174
|
+
parallel (~> 1.10)
|
175
|
+
parser (>= 3.3.0.2)
|
176
|
+
rainbow (>= 2.2.2, < 4.0)
|
177
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
178
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
179
|
+
ruby-progressbar (~> 1.7)
|
180
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
181
|
+
rubocop-ast (1.46.0)
|
182
|
+
parser (>= 3.3.7.2)
|
183
|
+
prism (~> 1.4)
|
184
|
+
rubocop-gradual (0.3.6)
|
185
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
186
|
+
diffy (~> 3.0)
|
187
|
+
parallel (~> 1.10)
|
188
|
+
rainbow (>= 2.2.2, < 4.0)
|
189
|
+
rubocop (~> 1.0)
|
190
|
+
rubocop-lts (0.1.1)
|
191
|
+
rubocop-ruby1_8 (>= 1.0.5, < 2)
|
192
|
+
standard-rubocop-lts (>= 1.0.3, < 3)
|
193
|
+
version_gem (>= 1.1.2, < 3)
|
194
|
+
rubocop-md (1.2.4)
|
195
|
+
rubocop (>= 1.45)
|
196
|
+
rubocop-packaging (0.6.0)
|
197
|
+
lint_roller (~> 1.1.0)
|
198
|
+
rubocop (>= 1.72.1, < 2.0)
|
199
|
+
rubocop-performance (1.25.0)
|
200
|
+
lint_roller (~> 1.1)
|
201
|
+
rubocop (>= 1.75.0, < 2.0)
|
202
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
203
|
+
rubocop-rake (0.7.1)
|
204
|
+
lint_roller (~> 1.1)
|
205
|
+
rubocop (>= 1.72.1)
|
206
|
+
rubocop-rspec (3.6.0)
|
207
|
+
lint_roller (~> 1.1)
|
208
|
+
rubocop (~> 1.72, >= 1.72.1)
|
209
|
+
rubocop-ruby1_8 (1.0.7)
|
210
|
+
rubocop-gradual (~> 0.3, >= 0.3.1)
|
211
|
+
rubocop-md (~> 1.2)
|
212
|
+
rubocop-rake (~> 0.6)
|
213
|
+
rubocop-shopify (~> 2.14)
|
214
|
+
rubocop-thread_safety (~> 0.5, >= 0.5.1)
|
215
|
+
standard-rubocop-lts (~> 1.0, >= 1.0.7)
|
216
|
+
version_gem (>= 1.1.3, < 3)
|
217
|
+
rubocop-shopify (2.17.1)
|
218
|
+
rubocop (~> 1.62)
|
219
|
+
rubocop-thread_safety (0.7.3)
|
220
|
+
lint_roller (~> 1.1)
|
221
|
+
rubocop (~> 1.72, >= 1.72.1)
|
222
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
223
|
+
ruby-progressbar (1.13.0)
|
224
|
+
securerandom (0.4.1)
|
225
|
+
silent_stream (1.0.11)
|
226
|
+
logger (~> 1.2)
|
227
|
+
version_gem (>= 1.1.8, < 3)
|
228
|
+
simplecov (0.22.0)
|
229
|
+
docile (~> 1.1)
|
230
|
+
simplecov-html (~> 0.11)
|
231
|
+
simplecov_json_formatter (~> 0.1)
|
232
|
+
simplecov-cobertura (3.0.0)
|
233
|
+
rexml
|
234
|
+
simplecov (~> 0.19)
|
235
|
+
simplecov-console (0.9.4)
|
236
|
+
ansi
|
237
|
+
simplecov
|
238
|
+
terminal-table
|
239
|
+
simplecov-html (0.13.2)
|
240
|
+
simplecov-lcov (0.8.0)
|
241
|
+
simplecov-rcov (0.3.7)
|
242
|
+
simplecov (>= 0.4.1)
|
243
|
+
simplecov_json_formatter (0.1.4)
|
244
|
+
standard (1.50.0)
|
245
|
+
language_server-protocol (~> 3.17.0.2)
|
246
|
+
lint_roller (~> 1.0)
|
247
|
+
rubocop (~> 1.75.5)
|
248
|
+
standard-custom (~> 1.0.0)
|
249
|
+
standard-performance (~> 1.8)
|
250
|
+
standard-custom (1.0.2)
|
251
|
+
lint_roller (~> 1.0)
|
252
|
+
rubocop (~> 1.50)
|
253
|
+
standard-performance (1.8.0)
|
254
|
+
lint_roller (~> 1.1)
|
255
|
+
rubocop-performance (~> 1.25.0)
|
256
|
+
standard-rubocop-lts (1.0.10)
|
257
|
+
rspec-block_is_expected (~> 1.0, >= 1.0.5)
|
258
|
+
standard (>= 1.35.1, < 2)
|
259
|
+
standard-custom (>= 1.0.2, < 2)
|
260
|
+
standard-performance (>= 1.3.1, < 2)
|
261
|
+
version_gem (>= 1.1.4, < 3)
|
262
|
+
stone_checksums (1.0.0)
|
263
|
+
version_gem (>= 1.1.5, < 3)
|
264
|
+
stringio (3.1.7)
|
265
|
+
terminal-table (4.0.0)
|
266
|
+
unicode-display_width (>= 1.1.1, < 4)
|
267
|
+
thor (1.4.0)
|
268
|
+
timecop (0.9.10)
|
269
|
+
tzinfo (2.0.6)
|
270
|
+
concurrent-ruby (~> 1.0)
|
271
|
+
unicode-display_width (3.1.5)
|
272
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
273
|
+
unicode-emoji (4.0.4)
|
274
|
+
uri (1.0.3)
|
275
|
+
version_gem (1.1.8)
|
276
|
+
yard (0.9.37)
|
277
|
+
yard-relative_markdown_links (0.5.0)
|
278
|
+
nokogiri (>= 1.14.3, < 2)
|
279
|
+
zeitwerk (2.7.3)
|
280
|
+
|
281
|
+
PLATFORMS
|
282
|
+
x86_64-linux
|
283
|
+
|
284
|
+
DEPENDENCIES
|
285
|
+
appraisal2 (~> 3.0)
|
286
|
+
benchmark (~> 0.4, >= 0.4.1)
|
287
|
+
bundler-audit (~> 0.9.2)
|
288
|
+
debug (>= 1.0.0)
|
289
|
+
gem_bench (~> 2.0, >= 2.0.5)
|
290
|
+
kettle-soup-cover (~> 1.0, >= 1.0.6)
|
291
|
+
kramdown (~> 2.5, >= 2.5.1)
|
292
|
+
kramdown-parser-gfm (~> 1.1)
|
293
|
+
logger
|
294
|
+
pry (~> 0.14)
|
295
|
+
rake (~> 13.0)
|
296
|
+
rdoc (~> 6.11)
|
297
|
+
reek (~> 6.4)
|
298
|
+
rspec-block_is_expected (~> 1.0)
|
299
|
+
rspec-stubbed_env (~> 1.0)
|
300
|
+
rspec_junit_formatter (~> 0.6)
|
301
|
+
rubocop (~> 1.73, >= 1.73.2)
|
302
|
+
rubocop-lts (~> 0.1, >= 0.1.1)
|
303
|
+
rubocop-packaging (~> 0.6, >= 0.6.0)
|
304
|
+
rubocop-rspec (~> 3.2)
|
305
|
+
silent_stream (~> 1.0, >= 1.0.11)
|
306
|
+
standard (>= 1.50)
|
307
|
+
stone_checksums (~> 1.0)
|
308
|
+
timecop (~> 0.9, >= 0.9.10)
|
309
|
+
timecop-rspec!
|
310
|
+
yard (~> 0.9, >= 0.9.37)
|
311
|
+
yard-junk (~> 0.0, >= 0.0.10)!
|
312
|
+
yard-relative_markdown_links (~> 0.5.0)
|
313
|
+
|
314
|
+
BUNDLED WITH
|
315
|
+
2.7.1
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2025 Peter H. Boling
|
4
|
+
Copyright (c) 2014-2017 Zach Taylor & Avant
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
8
|
+
in the Software without restriction, including without limitation the rights
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
11
|
+
furnished to do so, subject to the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
14
|
+
all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
22
|
+
THE SOFTWARE.
|