csb 0.12.0 → 0.14.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 +7 -2
- data/csb.gemspec +1 -0
- data/gemfiles/rails80.gemfile +5 -0
- data/lib/csb/builder.rb +1 -1
- data/lib/csb/version.rb +1 -1
- metadata +18 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f3c40d4cda232b9b624e8a27b5caba77c8c93d960d1aac52c01b3929948bf27
|
4
|
+
data.tar.gz: 8609d2baf77aec7cc54fd82952a5450614148b23300d8522ec906e815f814bb6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bbc1bc6aef832923ad36d2ebb8b3a91d7d2cf4eaff9df7d8ab661710dc454ed7a3a9aa6f50c78d702d4ca0ffdd6ce1acc3ea3eb98590efeb2bdaf72f847b0fd6
|
7
|
+
data.tar.gz: '0933b426a58a65747c58a6069104bc7d40fa02b2c900a748588c5d33d1a407fd4cf4e4af53a6b25ed8c74b8e0bfe44dad92ecdcda4c076bbd4339028525c79fc'
|
data/.github/workflows/rspec.yml
CHANGED
@@ -12,11 +12,16 @@ jobs:
|
|
12
12
|
BUNDLE_JOBS: 4
|
13
13
|
BUNDLE_RETRY: 3
|
14
14
|
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
|
15
|
+
RUBYOPT: -EUTF-8 -W:deprecated
|
15
16
|
strategy:
|
16
17
|
fail-fast: false
|
17
18
|
matrix:
|
18
|
-
ruby: ["3.1", "3.2", "3.3"]
|
19
|
-
gemfile: ["rails71", "rails72"]
|
19
|
+
ruby: ["3.1", "3.2", "3.3", "3.4"]
|
20
|
+
gemfile: ["rails71", "rails72", "rails80"]
|
21
|
+
exclude:
|
22
|
+
# rails 8.0: support ruby 3.2+
|
23
|
+
- ruby: "3.1"
|
24
|
+
gemfile: "rails80"
|
20
25
|
steps:
|
21
26
|
- uses: actions/checkout@v4
|
22
27
|
|
data/csb.gemspec
CHANGED
data/lib/csb/builder.rb
CHANGED
data/lib/csb/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: csb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- aki77
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-07-04 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: rails
|
@@ -80,6 +79,20 @@ dependencies:
|
|
80
79
|
- - ">="
|
81
80
|
- !ruby/object:Gem::Version
|
82
81
|
version: '0'
|
82
|
+
- !ruby/object:Gem::Dependency
|
83
|
+
name: ostruct
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
type: :development
|
90
|
+
prerelease: false
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
83
96
|
description: A simple and streaming support CSV template engine for Ruby on Rails.
|
84
97
|
email:
|
85
98
|
- aki77@users.noreply.github.com
|
@@ -101,6 +114,7 @@ files:
|
|
101
114
|
- csb.gemspec
|
102
115
|
- gemfiles/rails71.gemfile
|
103
116
|
- gemfiles/rails72.gemfile
|
117
|
+
- gemfiles/rails80.gemfile
|
104
118
|
- lib/csb.rb
|
105
119
|
- lib/csb/builder.rb
|
106
120
|
- lib/csb/col.rb
|
@@ -115,7 +129,6 @@ homepage: https://github.com/aki77/csb
|
|
115
129
|
licenses:
|
116
130
|
- MIT
|
117
131
|
metadata: {}
|
118
|
-
post_install_message:
|
119
132
|
rdoc_options: []
|
120
133
|
require_paths:
|
121
134
|
- lib
|
@@ -130,8 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
130
143
|
- !ruby/object:Gem::Version
|
131
144
|
version: '0'
|
132
145
|
requirements: []
|
133
|
-
rubygems_version: 3.
|
134
|
-
signing_key:
|
146
|
+
rubygems_version: 3.6.2
|
135
147
|
specification_version: 4
|
136
148
|
summary: A simple and streaming support CSV template engine for Ruby on Rails.
|
137
149
|
test_files: []
|