Skip to content

Commit 951a7ef

Browse files
authored
Merge pull request #786 from gjtorikian/main
Add `csv` as a dependency for Ruby 3.4+
2 parents e6af363 + 31237d6 commit 951a7ef

File tree

4 files changed

+53
-0
lines changed

4 files changed

+53
-0
lines changed

.licensed.yml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ reviewed:
1212
- pathname-common_prefix
1313

1414
# bsd-2 or ruby
15+
- csv
1516
- logger
1617
- net-http
1718
- racc

.licenses/bundler/csv.dep.yml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
name: csv
3+
version: 3.3.2
4+
type: bundler
5+
summary: CSV Reading and Writing
6+
homepage: https://github.com/ruby/csv
7+
license: bsd-2-clause
8+
licenses:
9+
- sources: LICENSE.txt
10+
text: |
11+
Copyright (C) 2005-2016 James Edward Gray II. All rights reserved.
12+
Copyright (C) 2007-2017 Yukihiro Matsumoto. All rights reserved.
13+
Copyright (C) 2017 SHIBATA Hiroshi. All rights reserved.
14+
Copyright (C) 2017 Olivier Lacan. All rights reserved.
15+
Copyright (C) 2017 Espartaco Palma. All rights reserved.
16+
Copyright (C) 2017 Marcus Stollsteimer. All rights reserved.
17+
Copyright (C) 2017 pavel. All rights reserved.
18+
Copyright (C) 2017-2018 Steven Daniels. All rights reserved.
19+
Copyright (C) 2018 Tomohiro Ogoke. All rights reserved.
20+
Copyright (C) 2018 Kouhei Sutou. All rights reserved.
21+
Copyright (C) 2018 Mitsutaka Mimura. All rights reserved.
22+
Copyright (C) 2018 Vladislav. All rights reserved.
23+
24+
Redistribution and use in source and binary forms, with or without
25+
modification, are permitted provided that the following conditions
26+
are met:
27+
1. Redistributions of source code must retain the above copyright
28+
notice, this list of conditions and the following disclaimer.
29+
2. Redistributions in binary form must reproduce the above copyright
30+
notice, this list of conditions and the following disclaimer in the
31+
documentation and/or other materials provided with the distribution.
32+
33+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
34+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
35+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
36+
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
37+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
38+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
39+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
40+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
41+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
42+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
43+
SUCH DAMAGE.
44+
- sources: README.md
45+
text: |-
46+
The gem is available as open source under the terms of the [2-Clause BSD License](https://opensource.org/licenses/BSD-2-Clause).
47+
48+
See LICENSE.txt for details.
49+
notices: []

Gemfile.lock

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ PATH
22
remote: .
33
specs:
44
licensed (5.0.1)
5+
csv (~> 3.3)
56
json (~> 2.6)
67
licensee (~> 9.16)
78
parallel (~> 1.22)
@@ -32,6 +33,7 @@ GEM
3233
byebug (11.1.3)
3334
concurrent-ruby (1.2.3)
3435
connection_pool (2.4.1)
36+
csv (3.3.2)
3537
dotenv (3.1.4)
3638
drb (2.2.1)
3739
faraday (2.12.1)

licensed.gemspec

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Gem::Specification.new do |spec|
2323

2424
spec.required_ruby_version = ">= 3.0.0"
2525

26+
spec.add_dependency "csv", "~> 3.3"
2627
spec.add_dependency "licensee", "~> 9.16"
2728
spec.add_dependency "thor", "~> 1.2"
2829
spec.add_dependency "pathname-common_prefix", "~> 0.0.1"

0 commit comments

Comments
 (0)