rack-conditional 0.3.3 → 0.3.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a42ade7bcb574bfe43a2d021412ea1fb4b5f054f5d09696a68a39eb767215a2
4
- data.tar.gz: 474af7a52fd8fb212e9a3726105f75c204ba70c9e0462fedb9af1d0a146e0b57
3
+ metadata.gz: c35e5aad157a62407e8af5a34f20a9ef24d4b5f9c48f65bb6601bdbe77a4bf7f
4
+ data.tar.gz: 4778355bd7f488e1975902d628139f03270f1d850da7e67898aab6da9b0afc45
5
5
  SHA512:
6
- metadata.gz: 31d555483d257bec377dc28aab63803e9cfea5fece1b7f31ad564927a9515625765735160a961be776354729c27dd904d60cf9775ba0a17a1bc030bb4d26d90d
7
- data.tar.gz: 7caa4d2faa7b0b8bf47950576fbdf69d0cc2a5ff8284f452cc85253aed3754e13d10eac7420c6e414c889efad567e755df4155457befe0794b2ac7218de1df32
6
+ metadata.gz: 01e7715a2e83c627d5c6e149a49c90381b789e46a316da55df30c76faa003be6e05b897339edd2e4482b33752c2831aa5e67d3f643d3f8a999d3e78f6e2885ef
7
+ data.tar.gz: 6813c6c02dc23ea2cee59c39c86e3237ff9b5d198a746e91bfb5b2200e104f5d0da86ae8d256b1848c9f92cc9eaa2e154b045a0356178db857fa9eddc8031665
@@ -10,7 +10,7 @@ jobs:
10
10
  # https://github.com/actions/setup-ruby
11
11
  strategy:
12
12
  matrix:
13
- ruby: [ '2.4.x', '2.5.x', '2.6.x' ]
13
+ ruby: [ '2.4.x', '2.5.x', '2.6.x', '2.7.x' ]
14
14
 
15
15
  name: Ruby ${{ matrix.ruby }}
16
16
 
@@ -4,9 +4,5 @@ rvm:
4
4
  - 2.5.3
5
5
  - 2.4.5
6
6
  - 2.3.8
7
- - 2.2.10
8
- - 2.1.10
9
- - 2.0.0
10
- - 1.9.3
11
7
  before_install:
12
8
  - gem install bundler -v 1.12
@@ -11,6 +11,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
11
11
 
12
12
  ### Fixed
13
13
 
14
+ ## [0.3.4] - 2020-04-24
15
+ ### Added
16
+ - Add LICENSE file. #27
17
+ - Run tests with Ruby 2.7 on GitHub Actions. #25
18
+
19
+ ### Changed
20
+ - Update nokogiri version to avoid vulnerability (and update lower Ruby version to 2.3.0). #28
21
+ - Update lower Ruby version to 2.0.0. #24
22
+
23
+ ### Fixed
24
+
14
25
  ## [0.3.3] - 2020-04-23
15
26
  ### Added
16
27
 
data/Gemfile CHANGED
@@ -7,21 +7,4 @@ if Gem::Version.create(RUBY_VERSION) < Gem::Version.create('2.2.2')
7
7
  gem 'rack', '>= 1.6.11', '< 2.0.0'
8
8
  end
9
9
 
10
- if Gem::Version.create(RUBY_VERSION) < Gem::Version.create('1.9')
11
- nokogiri_version = '< 1.6'
12
- elsif Gem::Version.create(RUBY_VERSION) < Gem::Version.create('2.1')
13
- nokogiri_version = '~> 1.6.8'
14
- end
15
- gem 'nokogiri', nokogiri_version if nokogiri_version
16
-
17
- group :development do
18
- if Gem::Version.create(RUBY_VERSION) < Gem::Version.create('1.9.2')
19
- mime_types_version = '< 2.0'
20
- elsif Gem::Version.create(RUBY_VERSION) < Gem::Version.create('2.0.0')
21
- mime_types_version = '< 3.0'
22
- end
23
- gem 'mime-types', mime_types_version if mime_types_version
24
- if Gem::Version.create(RUBY_VERSION) < Gem::Version.create('1.9.3')
25
- gem 'i18n', '< 0.7.0'
26
- end
27
- end
10
+ gem 'nokogiri', '>= 1.10.8'
data/LICENSE ADDED
@@ -0,0 +1,382 @@
1
+ This software is copyright (c) 2009-2013 by Tatsuhiko Miyagawa.
2
+ This software is copyright (c) 2017-2020 by Masahiro IUCHI.
3
+
4
+ This is free software; you can redistribute it and/or modify it under
5
+ the same terms as the Perl 5 programming language system itself.
6
+
7
+ Terms of the Perl programming language system itself
8
+
9
+ a) the GNU General Public License as published by the Free
10
+ Software Foundation; either version 1, or (at your option) any
11
+ later version, or
12
+ b) the "Artistic License"
13
+
14
+ --- The GNU General Public License, Version 1, February 1989 ---
15
+
16
+ This software is Copyright (c) 2009-2013 by Tatsuhiko Miyagawa.
17
+ This software is Copyright (c) 2017-2020 by Masahiro IUCHI.
18
+
19
+ This is free software, licensed under:
20
+
21
+ The GNU General Public License, Version 1, February 1989
22
+
23
+ GNU GENERAL PUBLIC LICENSE
24
+ Version 1, February 1989
25
+
26
+ Copyright (C) 1989 Free Software Foundation, Inc.
27
+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
+
29
+ Everyone is permitted to copy and distribute verbatim copies
30
+ of this license document, but changing it is not allowed.
31
+
32
+ Preamble
33
+
34
+ The license agreements of most software companies try to keep users
35
+ at the mercy of those companies. By contrast, our General Public
36
+ License is intended to guarantee your freedom to share and change free
37
+ software--to make sure the software is free for all its users. The
38
+ General Public License applies to the Free Software Foundation's
39
+ software and to any other program whose authors commit to using it.
40
+ You can use it for your programs, too.
41
+
42
+ When we speak of free software, we are referring to freedom, not
43
+ price. Specifically, the General Public License is designed to make
44
+ sure that you have the freedom to give away or sell copies of free
45
+ software, that you receive source code or can get it if you want it,
46
+ that you can change the software or use pieces of it in new free
47
+ programs; and that you know you can do these things.
48
+
49
+ To protect your rights, we need to make restrictions that forbid
50
+ anyone to deny you these rights or to ask you to surrender the rights.
51
+ These restrictions translate to certain responsibilities for you if you
52
+ distribute copies of the software, or if you modify it.
53
+
54
+ For example, if you distribute copies of a such a program, whether
55
+ gratis or for a fee, you must give the recipients all the rights that
56
+ you have. You must make sure that they, too, receive or can get the
57
+ source code. And you must tell them their rights.
58
+
59
+ We protect your rights with two steps: (1) copyright the software, and
60
+ (2) offer you this license which gives you legal permission to copy,
61
+ distribute and/or modify the software.
62
+
63
+ Also, for each author's protection and ours, we want to make certain
64
+ that everyone understands that there is no warranty for this free
65
+ software. If the software is modified by someone else and passed on, we
66
+ want its recipients to know that what they have is not the original, so
67
+ that any problems introduced by others will not reflect on the original
68
+ authors' reputations.
69
+
70
+ The precise terms and conditions for copying, distribution and
71
+ modification follow.
72
+
73
+ GNU GENERAL PUBLIC LICENSE
74
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
75
+
76
+ 0. This License Agreement applies to any program or other work which
77
+ contains a notice placed by the copyright holder saying it may be
78
+ distributed under the terms of this General Public License. The
79
+ "Program", below, refers to any such program or work, and a "work based
80
+ on the Program" means either the Program or any work containing the
81
+ Program or a portion of it, either verbatim or with modifications. Each
82
+ licensee is addressed as "you".
83
+
84
+ 1. You may copy and distribute verbatim copies of the Program's source
85
+ code as you receive it, in any medium, provided that you conspicuously and
86
+ appropriately publish on each copy an appropriate copyright notice and
87
+ disclaimer of warranty; keep intact all the notices that refer to this
88
+ General Public License and to the absence of any warranty; and give any
89
+ other recipients of the Program a copy of this General Public License
90
+ along with the Program. You may charge a fee for the physical act of
91
+ transferring a copy.
92
+
93
+ 2. You may modify your copy or copies of the Program or any portion of
94
+ it, and copy and distribute such modifications under the terms of Paragraph
95
+ 1 above, provided that you also do the following:
96
+
97
+ a) cause the modified files to carry prominent notices stating that
98
+ you changed the files and the date of any change; and
99
+
100
+ b) cause the whole of any work that you distribute or publish, that
101
+ in whole or in part contains the Program or any part thereof, either
102
+ with or without modifications, to be licensed at no charge to all
103
+ third parties under the terms of this General Public License (except
104
+ that you may choose to grant warranty protection to some or all
105
+ third parties, at your option).
106
+
107
+ c) If the modified program normally reads commands interactively when
108
+ run, you must cause it, when started running for such interactive use
109
+ in the simplest and most usual way, to print or display an
110
+ announcement including an appropriate copyright notice and a notice
111
+ that there is no warranty (or else, saying that you provide a
112
+ warranty) and that users may redistribute the program under these
113
+ conditions, and telling the user how to view a copy of this General
114
+ Public License.
115
+
116
+ d) You may charge a fee for the physical act of transferring a
117
+ copy, and you may at your option offer warranty protection in
118
+ exchange for a fee.
119
+
120
+ Mere aggregation of another independent work with the Program (or its
121
+ derivative) on a volume of a storage or distribution medium does not bring
122
+ the other work under the scope of these terms.
123
+
124
+ 3. You may copy and distribute the Program (or a portion or derivative of
125
+ it, under Paragraph 2) in object code or executable form under the terms of
126
+ Paragraphs 1 and 2 above provided that you also do one of the following:
127
+
128
+ a) accompany it with the complete corresponding machine-readable
129
+ source code, which must be distributed under the terms of
130
+ Paragraphs 1 and 2 above; or,
131
+
132
+ b) accompany it with a written offer, valid for at least three
133
+ years, to give any third party free (except for a nominal charge
134
+ for the cost of distribution) a complete machine-readable copy of the
135
+ corresponding source code, to be distributed under the terms of
136
+ Paragraphs 1 and 2 above; or,
137
+
138
+ c) accompany it with the information you received as to where the
139
+ corresponding source code may be obtained. (This alternative is
140
+ allowed only for noncommercial distribution and only if you
141
+ received the program in object code or executable form alone.)
142
+
143
+ Source code for a work means the preferred form of the work for making
144
+ modifications to it. For an executable file, complete source code means
145
+ all the source code for all modules it contains; but, as a special
146
+ exception, it need not include source code for modules which are standard
147
+ libraries that accompany the operating system on which the executable
148
+ file runs, or for standard header files or definitions files that
149
+ accompany that operating system.
150
+
151
+ 4. You may not copy, modify, sublicense, distribute or transfer the
152
+ Program except as expressly provided under this General Public License.
153
+ Any attempt otherwise to copy, modify, sublicense, distribute or transfer
154
+ the Program is void, and will automatically terminate your rights to use
155
+ the Program under this License. However, parties who have received
156
+ copies, or rights to use copies, from you under this General Public
157
+ License will not have their licenses terminated so long as such parties
158
+ remain in full compliance.
159
+
160
+ 5. By copying, distributing or modifying the Program (or any work based
161
+ on the Program) you indicate your acceptance of this license to do so,
162
+ and all its terms and conditions.
163
+
164
+ 6. Each time you redistribute the Program (or any work based on the
165
+ Program), the recipient automatically receives a license from the original
166
+ licensor to copy, distribute or modify the Program subject to these
167
+ terms and conditions. You may not impose any further restrictions on the
168
+ recipients' exercise of the rights granted herein.
169
+
170
+ 7. The Free Software Foundation may publish revised and/or new versions
171
+ of the General Public License from time to time. Such new versions will
172
+ be similar in spirit to the present version, but may differ in detail to
173
+ address new problems or concerns.
174
+
175
+ Each version is given a distinguishing version number. If the Program
176
+ specifies a version number of the license which applies to it and "any
177
+ later version", you have the option of following the terms and conditions
178
+ either of that version or of any later version published by the Free
179
+ Software Foundation. If the Program does not specify a version number of
180
+ the license, you may choose any version ever published by the Free Software
181
+ Foundation.
182
+
183
+ 8. If you wish to incorporate parts of the Program into other free
184
+ programs whose distribution conditions are different, write to the author
185
+ to ask for permission. For software which is copyrighted by the Free
186
+ Software Foundation, write to the Free Software Foundation; we sometimes
187
+ make exceptions for this. Our decision will be guided by the two goals
188
+ of preserving the free status of all derivatives of our free software and
189
+ of promoting the sharing and reuse of software generally.
190
+
191
+ NO WARRANTY
192
+
193
+ 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
194
+ FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
195
+ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
196
+ PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
197
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
198
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
199
+ TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
200
+ PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
201
+ REPAIR OR CORRECTION.
202
+
203
+ 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
204
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
205
+ REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
206
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
207
+ OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
208
+ TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
209
+ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
210
+ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
211
+ POSSIBILITY OF SUCH DAMAGES.
212
+
213
+ END OF TERMS AND CONDITIONS
214
+
215
+ Appendix: How to Apply These Terms to Your New Programs
216
+
217
+ If you develop a new program, and you want it to be of the greatest
218
+ possible use to humanity, the best way to achieve this is to make it
219
+ free software which everyone can redistribute and change under these
220
+ terms.
221
+
222
+ To do so, attach the following notices to the program. It is safest to
223
+ attach them to the start of each source file to most effectively convey
224
+ the exclusion of warranty; and each file should have at least the
225
+ "copyright" line and a pointer to where the full notice is found.
226
+
227
+ <one line to give the program's name and a brief idea of what it does.>
228
+ Copyright (C) 19yy <name of author>
229
+
230
+ This program is free software; you can redistribute it and/or modify
231
+ it under the terms of the GNU General Public License as published by
232
+ the Free Software Foundation; either version 1, or (at your option)
233
+ any later version.
234
+
235
+ This program is distributed in the hope that it will be useful,
236
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
237
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
238
+ GNU General Public License for more details.
239
+
240
+ You should have received a copy of the GNU General Public License
241
+ along with this program; if not, write to the Free Software
242
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
243
+
244
+
245
+ Also add information on how to contact you by electronic and paper mail.
246
+
247
+ If the program is interactive, make it output a short notice like this
248
+ when it starts in an interactive mode:
249
+
250
+ Gnomovision version 69, Copyright (C) 19xx name of author
251
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
252
+ This is free software, and you are welcome to redistribute it
253
+ under certain conditions; type `show c' for details.
254
+
255
+ The hypothetical commands `show w' and `show c' should show the
256
+ appropriate parts of the General Public License. Of course, the
257
+ commands you use may be called something other than `show w' and `show
258
+ c'; they could even be mouse-clicks or menu items--whatever suits your
259
+ program.
260
+
261
+ You should also get your employer (if you work as a programmer) or your
262
+ school, if any, to sign a "copyright disclaimer" for the program, if
263
+ necessary. Here a sample; alter the names:
264
+
265
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
266
+ program `Gnomovision' (a program to direct compilers to make passes
267
+ at assemblers) written by James Hacker.
268
+
269
+ <signature of Ty Coon>, 1 April 1989
270
+ Ty Coon, President of Vice
271
+
272
+ That's all there is to it!
273
+
274
+
275
+ --- The Artistic License 1.0 ---
276
+
277
+ This software is Copyright (c) 2009-2013 by Tatsuhiko Miyagawa.
278
+ This software is Copyright (c) 2017-2020 by Masahiro IUCHI.
279
+
280
+ This is free software, licensed under:
281
+
282
+ The Artistic License 1.0
283
+
284
+ The Artistic License
285
+
286
+ Preamble
287
+
288
+ The intent of this document is to state the conditions under which a Package
289
+ may be copied, such that the Copyright Holder maintains some semblance of
290
+ artistic control over the development of the package, while giving the users of
291
+ the package the right to use and distribute the Package in a more-or-less
292
+ customary fashion, plus the right to make reasonable modifications.
293
+
294
+ Definitions:
295
+
296
+ - "Package" refers to the collection of files distributed by the Copyright
297
+ Holder, and derivatives of that collection of files created through
298
+ textual modification.
299
+ - "Standard Version" refers to such a Package if it has not been modified,
300
+ or has been modified in accordance with the wishes of the Copyright
301
+ Holder.
302
+ - "Copyright Holder" is whoever is named in the copyright or copyrights for
303
+ the package.
304
+ - "You" is you, if you're thinking about copying or distributing this Package.
305
+ - "Reasonable copying fee" is whatever you can justify on the basis of media
306
+ cost, duplication charges, time of people involved, and so on. (You will
307
+ not be required to justify it to the Copyright Holder, but only to the
308
+ computing community at large as a market that must bear the fee.)
309
+ - "Freely Available" means that no fee is charged for the item itself, though
310
+ there may be fees involved in handling the item. It also means that
311
+ recipients of the item may redistribute it under the same conditions they
312
+ received it.
313
+
314
+ 1. You may make and give away verbatim copies of the source form of the
315
+ Standard Version of this Package without restriction, provided that you
316
+ duplicate all of the original copyright notices and associated disclaimers.
317
+
318
+ 2. You may apply bug fixes, portability fixes and other modifications derived
319
+ from the Public Domain or from the Copyright Holder. A Package modified in such
320
+ a way shall still be considered the Standard Version.
321
+
322
+ 3. You may otherwise modify your copy of this Package in any way, provided that
323
+ you insert a prominent notice in each changed file stating how and when you
324
+ changed that file, and provided that you do at least ONE of the following:
325
+
326
+ a) place your modifications in the Public Domain or otherwise make them
327
+ Freely Available, such as by posting said modifications to Usenet or an
328
+ equivalent medium, or placing the modifications on a major archive site
329
+ such as ftp.uu.net, or by allowing the Copyright Holder to include your
330
+ modifications in the Standard Version of the Package.
331
+
332
+ b) use the modified Package only within your corporation or organization.
333
+
334
+ c) rename any non-standard executables so the names do not conflict with
335
+ standard executables, which must also be provided, and provide a separate
336
+ manual page for each non-standard executable that clearly documents how it
337
+ differs from the Standard Version.
338
+
339
+ d) make other distribution arrangements with the Copyright Holder.
340
+
341
+ 4. You may distribute the programs of this Package in object code or executable
342
+ form, provided that you do at least ONE of the following:
343
+
344
+ a) distribute a Standard Version of the executables and library files,
345
+ together with instructions (in the manual page or equivalent) on where to
346
+ get the Standard Version.
347
+
348
+ b) accompany the distribution with the machine-readable source of the Package
349
+ with your modifications.
350
+
351
+ c) accompany any non-standard executables with their corresponding Standard
352
+ Version executables, giving the non-standard executables non-standard
353
+ names, and clearly documenting the differences in manual pages (or
354
+ equivalent), together with instructions on where to get the Standard
355
+ Version.
356
+
357
+ d) make other distribution arrangements with the Copyright Holder.
358
+
359
+ 5. You may charge a reasonable copying fee for any distribution of this
360
+ Package. You may charge any fee you choose for support of this Package. You
361
+ may not charge a fee for this Package itself. However, you may distribute this
362
+ Package in aggregate with other (possibly commercial) programs as part of a
363
+ larger (possibly commercial) software distribution provided that you do not
364
+ advertise this Package as a product of your own.
365
+
366
+ 6. The scripts and library files supplied as input to or produced as output
367
+ from the programs of this Package do not automatically fall under the copyright
368
+ of this Package, but belong to whomever generated them, and may be sold
369
+ commercially, and may be aggregated with this Package.
370
+
371
+ 7. C or perl subroutines supplied by you and linked into this Package shall not
372
+ be considered part of this Package.
373
+
374
+ 8. The name of the Copyright Holder may not be used to endorse or promote
375
+ products derived from this software without specific prior written permission.
376
+
377
+ 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
378
+ WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
379
+ MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
380
+
381
+ The End
382
+
data/README.md CHANGED
@@ -57,6 +57,10 @@ module YourApp
57
57
  end
58
58
  ```
59
59
 
60
+ # License
61
+
62
+ This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
63
+
60
64
  ## Contributing
61
65
 
62
66
  Bug reports and pull requests are welcome on GitHub at https://github.com/masiuchi/rack-conditional.
@@ -1,5 +1,5 @@
1
1
  module Rack
2
2
  class Conditional
3
- VERSION = '0.3.3'.freeze
3
+ VERSION = '0.3.4'.freeze
4
4
  end
5
5
  end
@@ -5,6 +5,7 @@ require 'rack/conditional/version'
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'rack-conditional'
7
7
  spec.version = Rack::Conditional::VERSION
8
+ spec.licenses = ['GPL-1.0-or-later', 'Artistic-1.0']
8
9
  spec.authors = ['Masahiro Iuchi']
9
10
  spec.email = ['masahiro.iuchi@gmail.com']
10
11
 
@@ -18,7 +19,7 @@ Gem::Specification.new do |spec|
18
19
  end
19
20
  spec.require_paths = ['lib']
20
21
 
21
- spec.required_ruby_version = '>= 1.8.7' # rubocop:disable all
22
+ spec.required_ruby_version = '>= 2.3.0' # rubocop:disable all
22
23
 
23
24
  spec.add_dependency 'rack', '>= 1.6.12'
24
25
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-conditional
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masahiro Iuchi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-22 00:00:00.000000000 Z
11
+ date: 2020-04-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
@@ -108,6 +108,7 @@ files:
108
108
  - ".travis.yml"
109
109
  - CHANGELOG.md
110
110
  - Gemfile
111
+ - LICENSE
111
112
  - README.md
112
113
  - Rakefile
113
114
  - bin/console
@@ -122,7 +123,9 @@ files:
122
123
  - lib/sinatra/base/conditional.rb
123
124
  - rack-conditional.gemspec
124
125
  homepage: https://github.com/masiuchi/rack-conditional
125
- licenses: []
126
+ licenses:
127
+ - GPL-1.0-or-later
128
+ - Artistic-1.0
126
129
  metadata: {}
127
130
  post_install_message:
128
131
  rdoc_options: []
@@ -132,7 +135,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
132
135
  requirements:
133
136
  - - ">="
134
137
  - !ruby/object:Gem::Version
135
- version: 1.8.7
138
+ version: 2.3.0
136
139
  required_rubygems_version: !ruby/object:Gem::Requirement
137
140
  requirements:
138
141
  - - ">="