csb 0.12.0 → 0.13.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 +4 -4
- data/.github/workflows/rspec.yml +6 -2
- data/csb.gemspec +1 -0
- data/gemfiles/rails80.gemfile +5 -0
- data/lib/csb/version.rb +1 -1
- metadata +18 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 865541fbe50517dc1b9850db89277be63e1b7dd18f89518ef521c7b49c7361cc
|
|
4
|
+
data.tar.gz: '0109f75f97cbde1ceeca926c7410463d84470df314a8a6ed11ec88421879ef91'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d09b0d032d6cbbb18a22fb85ddd040922b110cfeb4436b27083b5859d09767a869b64ff41cacb1239d69269406f16c41be1c4baed8d48de2bdbc434321885578
|
|
7
|
+
data.tar.gz: 244c09a02cbd1c14bc546f76f477fc26490316cfab9754010aee65c0fafaab9be6f0e2dcd35fe87ee8b446f15108a813549a32410f1441837bc55f5e8131763a
|
data/.github/workflows/rspec.yml
CHANGED
|
@@ -15,8 +15,12 @@ jobs:
|
|
|
15
15
|
strategy:
|
|
16
16
|
fail-fast: false
|
|
17
17
|
matrix:
|
|
18
|
-
ruby: ["3.1", "3.2", "3.3"]
|
|
19
|
-
gemfile: ["rails71", "rails72"]
|
|
18
|
+
ruby: ["3.1", "3.2", "3.3", "3.4"]
|
|
19
|
+
gemfile: ["rails71", "rails72", "rails80"]
|
|
20
|
+
exclude:
|
|
21
|
+
# rails 8.0: support ruby 3.2+
|
|
22
|
+
- ruby: "3.1"
|
|
23
|
+
gemfile: "rails80"
|
|
20
24
|
steps:
|
|
21
25
|
- uses: actions/checkout@v4
|
|
22
26
|
|
data/csb.gemspec
CHANGED
data/lib/csb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: csb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- aki77
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-02-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -80,6 +80,20 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: ostruct
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ">="
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0'
|
|
83
97
|
description: A simple and streaming support CSV template engine for Ruby on Rails.
|
|
84
98
|
email:
|
|
85
99
|
- aki77@users.noreply.github.com
|
|
@@ -101,6 +115,7 @@ files:
|
|
|
101
115
|
- csb.gemspec
|
|
102
116
|
- gemfiles/rails71.gemfile
|
|
103
117
|
- gemfiles/rails72.gemfile
|
|
118
|
+
- gemfiles/rails80.gemfile
|
|
104
119
|
- lib/csb.rb
|
|
105
120
|
- lib/csb/builder.rb
|
|
106
121
|
- lib/csb/col.rb
|
|
@@ -130,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
130
145
|
- !ruby/object:Gem::Version
|
|
131
146
|
version: '0'
|
|
132
147
|
requirements: []
|
|
133
|
-
rubygems_version: 3.5.
|
|
148
|
+
rubygems_version: 3.5.16
|
|
134
149
|
signing_key:
|
|
135
150
|
specification_version: 4
|
|
136
151
|
summary: A simple and streaming support CSV template engine for Ruby on Rails.
|