csv 3.3.4 → 3.3.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7de8075012a39a948cee7b3cc1fa8ccb9ca15cc3ca3718f3883a7d82acc51c2c
4
- data.tar.gz: 55459b45132d6da9880cfc294f46a9eb5a4646726c08b6a0053dc801179dccfc
3
+ metadata.gz: f77fe04292e17f436f9c5838bb3cbd6aa4297b807478c127321323fc4ad27c28
4
+ data.tar.gz: 63ecf6ce80dcfa3b7eb24d0f3947455eb223d1c44a32b58b4d084b29efad8961
5
5
  SHA512:
6
- metadata.gz: '04382fe706d56323605226220819ed2af7af8833b753e98c9ca2537f288808b104c1e88a6d9a7d65ac393817c15a052be7966e8b9cd0494402513fe88ce4cb65'
7
- data.tar.gz: 9b0f33b6b0560b84a73eaac22924b3b1397f2bfa939f036c2ba4243411e2df4fcafb6ebc82644217d977d7d2ebf3c226df93338f7def80196c050acdb847da0e
6
+ metadata.gz: f9ffbf24700b4ab0eb35a2cb8086e82e36825558c14b646ae00374cb3e80f7195ebb3c9ac08d11b011ffa0cc10ae607a79e24d68b793b54c50d2dd1e8bd5ec16
7
+ data.tar.gz: 628a0b0c0963d69686845172d84fbbdf1cebb9fc6839e052054f9e7c112bbcb96743a63e8cf5d1a6df8a9299f03ab3b8d81a9b814fb6d0f222e444b9f0282a5d
data/NEWS.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # News
2
2
 
3
+ ## 3.3.5 - 2025-06-01
4
+
5
+ ### Improvements
6
+
7
+ * docs: Fixed `StringScanner` document URL.
8
+ * GH-343
9
+ * Patch by Petrik de Heus
10
+
11
+ ### Thanks
12
+
13
+ * Petrik de Heus
14
+
3
15
  ## 3.3.4 - 2025-04-13
4
16
 
5
17
  ### Improvements
data/lib/csv/parser.rb CHANGED
@@ -47,7 +47,7 @@ class CSV
47
47
  # Uses StringScanner (the official strscan gem). Strscan provides lexical
48
48
  # scanning operations on a String. We inherit its object and take advantage
49
49
  # on the methods. For more information, please visit:
50
- # https://ruby-doc.org/stdlib-2.6.1/libdoc/strscan/rdoc/StringScanner.html
50
+ # https://docs.ruby-lang.org/en/master/StringScanner.html
51
51
  #
52
52
  class Scanner < StringScanner
53
53
  alias_method :scan_all, :scan
data/lib/csv/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  class CSV
4
4
  # The version of the installed library.
5
- VERSION = "3.3.4"
5
+ VERSION = "3.3.5"
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: csv
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.4
4
+ version: 3.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Edward Gray II
8
8
  - Kouhei Sutou
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-04-13 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: The CSV library provides a complete interface to CSV files and data.
14
14
  It offers tools to enable you to read and write to and from Strings or IO objects,
@@ -71,7 +71,7 @@ licenses:
71
71
  - Ruby
72
72
  - BSD-2-Clause
73
73
  metadata:
74
- changelog_uri: https://github.com/ruby/csv/releases/tag/v3.3.4
74
+ changelog_uri: https://github.com/ruby/csv/releases/tag/v3.3.5
75
75
  rdoc_options:
76
76
  - "--main"
77
77
  - README.md
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  requirements: []
91
- rubygems_version: 3.6.2
91
+ rubygems_version: 3.6.7
92
92
  specification_version: 4
93
93
  summary: CSV Reading and Writing
94
94
  test_files: []