export_to 1.1.2 → 1.2.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/ci.yml +6 -0
- data/Gemfile.lock +1 -1
- data/README.md +2 -0
- data/export_to.gemspec +1 -1
- data/gemfiles/ruby_3.2_rails_7.0.gemfile +10 -0
- data/gemfiles/ruby_3.2_rails_7.1.gemfile +10 -0
- data/gemfiles/ruby_3.3_rails_7.1.gemfile +10 -0
- data/lib/export_to/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f8343ea3a496879b2f226295e264b133de7a653d20da05e0169e1feda30442fc
|
|
4
|
+
data.tar.gz: 33659ff4d475676775019bf0449cd65e6f1bbd6defb4ed10bd29a3178d9a7f6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0541dc21f8b0f10369be9555525ef169982eb5bcdcaf4431dccae593d2be1aa3458bbd816fe0c2c72bfcedeb5b9ae5fcfb6d95281d0c8edb13033f9498a8334e
|
|
7
|
+
data.tar.gz: 9fcb5586c9384318668d2db5ad49f976906e2a8f69175f906f8f92606cba9cb887cbd5c212733f85a274690032055aa6d86d91afadeeb7bb8d140259ea15a1c4
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -25,6 +25,12 @@ jobs:
|
|
|
25
25
|
rails: '7.0'
|
|
26
26
|
- ruby: '3.1'
|
|
27
27
|
rails: '7.1'
|
|
28
|
+
- ruby: '3.2'
|
|
29
|
+
rails: '7.0'
|
|
30
|
+
- ruby: '3.2'
|
|
31
|
+
rails: '7.1'
|
|
32
|
+
- ruby: '3.3'
|
|
33
|
+
rails: '7.1'
|
|
28
34
|
|
|
29
35
|
env:
|
|
30
36
|
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/ruby_${{ matrix.ruby }}_rails_${{ matrix.rails }}.gemfile
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
data/export_to.gemspec
CHANGED
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
spec.homepage = "https://github.com/superlanding/export_to"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
|
-
spec.required_ruby_version = ">= 2.7.0", "< 3.
|
|
17
|
+
spec.required_ruby_version = ">= 2.7.0", "< 3.4.0"
|
|
18
18
|
|
|
19
19
|
# Specify which files should be added to the gem when it is released.
|
|
20
20
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
data/lib/export_to/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: export_to
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- eddie
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -161,6 +161,9 @@ files:
|
|
|
161
161
|
- gemfiles/ruby_3.1_rails_7.0.gemfile.lock
|
|
162
162
|
- gemfiles/ruby_3.1_rails_7.1.gemfile
|
|
163
163
|
- gemfiles/ruby_3.1_rails_7.1.gemfile.lock
|
|
164
|
+
- gemfiles/ruby_3.2_rails_7.0.gemfile
|
|
165
|
+
- gemfiles/ruby_3.2_rails_7.1.gemfile
|
|
166
|
+
- gemfiles/ruby_3.3_rails_7.1.gemfile
|
|
164
167
|
- lib/export_to.rb
|
|
165
168
|
- lib/export_to/base.rb
|
|
166
169
|
- lib/export_to/exporter/csv.rb
|
|
@@ -183,7 +186,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
183
186
|
version: 2.7.0
|
|
184
187
|
- - "<"
|
|
185
188
|
- !ruby/object:Gem::Version
|
|
186
|
-
version: 3.
|
|
189
|
+
version: 3.4.0
|
|
187
190
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
191
|
requirements:
|
|
189
192
|
- - ">="
|