csvbuilder-dynamic-columns-importer 0.1.1 → 0.1.2
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/.rubocop.yml +1 -1
- data/.tool-versions +1 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +80 -55
- data/gemfiles/{Gemfile.5.2._gemfile → Gemfile.8.0._gemfile} +1 -1
- data/lib/csvbuilder/dynamic/columns/importer/version.rb +1 -1
- metadata +5 -14
- data/gemfiles/Gemfile.6.1._gemfile +0 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bef7a73cce7d047dda75a72642c5478aa9076cd7d8dcb984b409aaaaaecf6f3f
|
4
|
+
data.tar.gz: 6880145dd7656e03409f9b5a811572a0034c9a81c780e790e18eb29abb2b365f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95fc3ceca8a0f9fb982cd123b1d4a438d9b758f89233149128118351058b5c2adef56c4b5a3ed24c891c77983e13f910cf009792aab78e1813ce74151e974c01
|
7
|
+
data.tar.gz: 5e4e302298a9ee4df2dfe6e3e7eb9392cac5baf2529db5fed9c167b30d53122f27e06ccb2e85774a2c3391b63e2907095153e72bb9bac65335de9411a2d23cc9
|
data/.rubocop.yml
CHANGED
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby 3.4.2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.1.2] - 2024-02-27
|
4
|
+
|
5
|
+
- Update Ruby 3.4 and Relax Rails Constraint
|
6
|
+
|
3
7
|
## [0.1.1] - 2022-12-30
|
4
8
|
|
5
9
|
Do not apply double formatting to the cells. The method `unformatted_value` should get the raw values from `source_cells`, not the value already formatted by row_model.format_cell.
|
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
csvbuilder-dynamic-columns-importer (0.1.
|
5
|
-
activesupport (>= 5.2
|
4
|
+
csvbuilder-dynamic-columns-importer (0.1.2)
|
5
|
+
activesupport (>= 5.2)
|
6
6
|
csvbuilder-core (~> 0.1)
|
7
7
|
csvbuilder-dynamic-columns-core (~> 0.1)
|
8
8
|
csvbuilder-importer (~> 0.1)
|
@@ -10,76 +10,101 @@ PATH
|
|
10
10
|
GEM
|
11
11
|
remote: https://rubygems.org/
|
12
12
|
specs:
|
13
|
-
activemodel (7.
|
14
|
-
activesupport (= 7.
|
15
|
-
activesupport (7.
|
16
|
-
|
13
|
+
activemodel (7.2.2.1)
|
14
|
+
activesupport (= 7.2.2.1)
|
15
|
+
activesupport (7.2.2.1)
|
16
|
+
base64
|
17
|
+
benchmark (>= 0.3)
|
18
|
+
bigdecimal
|
19
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
20
|
+
connection_pool (>= 2.2.5)
|
21
|
+
drb
|
17
22
|
i18n (>= 1.6, < 2)
|
23
|
+
logger (>= 1.4.2)
|
18
24
|
minitest (>= 5.1)
|
19
|
-
|
25
|
+
securerandom (>= 0.3)
|
26
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
20
27
|
ast (2.4.2)
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
28
|
+
base64 (0.2.0)
|
29
|
+
benchmark (0.4.0)
|
30
|
+
bigdecimal (3.1.9)
|
31
|
+
concurrent-ruby (1.3.5)
|
32
|
+
connection_pool (2.5.0)
|
33
|
+
csv (3.3.2)
|
34
|
+
csvbuilder-core (0.1.4)
|
35
|
+
activesupport (>= 5.2)
|
36
|
+
csv
|
37
|
+
csvbuilder-dynamic-columns-core (0.1.1)
|
25
38
|
activesupport (>= 5.2, < 8)
|
26
39
|
csvbuilder-core
|
27
|
-
csvbuilder-importer (0.1.
|
28
|
-
activemodel (>= 5.2
|
29
|
-
activesupport (>= 5.2
|
40
|
+
csvbuilder-importer (0.1.5.1)
|
41
|
+
activemodel (>= 5.2)
|
42
|
+
activesupport (>= 5.2)
|
30
43
|
csvbuilder-core
|
31
|
-
diff-lcs (1.
|
32
|
-
|
44
|
+
diff-lcs (1.6.0)
|
45
|
+
drb (2.2.1)
|
46
|
+
i18n (1.14.7)
|
33
47
|
concurrent-ruby (~> 1.0)
|
34
|
-
json (2.
|
35
|
-
|
36
|
-
|
37
|
-
|
48
|
+
json (2.10.1)
|
49
|
+
language_server-protocol (3.17.0.4)
|
50
|
+
lint_roller (1.1.0)
|
51
|
+
logger (1.6.6)
|
52
|
+
minitest (5.25.4)
|
53
|
+
parallel (1.26.3)
|
54
|
+
parser (3.3.7.1)
|
38
55
|
ast (~> 2.4.1)
|
56
|
+
racc
|
57
|
+
racc (1.8.1)
|
39
58
|
rainbow (3.1.1)
|
40
|
-
rake (13.
|
41
|
-
regexp_parser (2.
|
42
|
-
|
43
|
-
|
44
|
-
rspec-
|
45
|
-
rspec-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
rspec-expectations (3.12.1)
|
59
|
+
rake (13.2.1)
|
60
|
+
regexp_parser (2.10.0)
|
61
|
+
rspec (3.13.0)
|
62
|
+
rspec-core (~> 3.13.0)
|
63
|
+
rspec-expectations (~> 3.13.0)
|
64
|
+
rspec-mocks (~> 3.13.0)
|
65
|
+
rspec-core (3.13.3)
|
66
|
+
rspec-support (~> 3.13.0)
|
67
|
+
rspec-expectations (3.13.3)
|
50
68
|
diff-lcs (>= 1.2.0, < 2.0)
|
51
|
-
rspec-support (~> 3.
|
52
|
-
rspec-mocks (3.
|
69
|
+
rspec-support (~> 3.13.0)
|
70
|
+
rspec-mocks (3.13.2)
|
53
71
|
diff-lcs (>= 1.2.0, < 2.0)
|
54
|
-
rspec-support (~> 3.
|
55
|
-
rspec-support (3.
|
56
|
-
rubocop (1.
|
72
|
+
rspec-support (~> 3.13.0)
|
73
|
+
rspec-support (3.13.2)
|
74
|
+
rubocop (1.73.0)
|
57
75
|
json (~> 2.3)
|
76
|
+
language_server-protocol (~> 3.17.0.2)
|
77
|
+
lint_roller (~> 1.1.0)
|
58
78
|
parallel (~> 1.10)
|
59
|
-
parser (>= 3.
|
79
|
+
parser (>= 3.3.0.2)
|
60
80
|
rainbow (>= 2.2.2, < 4.0)
|
61
|
-
regexp_parser (>=
|
62
|
-
|
63
|
-
rubocop-ast (>= 1.23.0, < 2.0)
|
81
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
82
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
64
83
|
ruby-progressbar (~> 1.7)
|
65
|
-
unicode-display_width (>=
|
66
|
-
rubocop-ast (1.
|
67
|
-
parser (>= 3.
|
68
|
-
rubocop-performance (1.
|
69
|
-
|
70
|
-
rubocop
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
rubocop (
|
75
|
-
|
76
|
-
|
84
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
85
|
+
rubocop-ast (1.38.1)
|
86
|
+
parser (>= 3.3.1.0)
|
87
|
+
rubocop-performance (1.24.0)
|
88
|
+
lint_roller (~> 1.1)
|
89
|
+
rubocop (>= 1.72.1, < 2.0)
|
90
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
91
|
+
rubocop-rake (0.7.1)
|
92
|
+
lint_roller (~> 1.1)
|
93
|
+
rubocop (>= 1.72.1)
|
94
|
+
rubocop-rspec (3.5.0)
|
95
|
+
lint_roller (~> 1.1)
|
96
|
+
rubocop (~> 1.72, >= 1.72.1)
|
97
|
+
ruby-progressbar (1.13.0)
|
98
|
+
securerandom (0.4.1)
|
99
|
+
tzinfo (2.0.6)
|
77
100
|
concurrent-ruby (~> 1.0)
|
78
|
-
unicode-display_width (
|
101
|
+
unicode-display_width (3.1.4)
|
102
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
103
|
+
unicode-emoji (4.0.4)
|
79
104
|
|
80
105
|
PLATFORMS
|
81
|
-
arm64-darwin-
|
82
|
-
|
106
|
+
arm64-darwin-24
|
107
|
+
ruby
|
83
108
|
|
84
109
|
DEPENDENCIES
|
85
110
|
csvbuilder-dynamic-columns-importer!
|
@@ -91,4 +116,4 @@ DEPENDENCIES
|
|
91
116
|
rubocop-rspec
|
92
117
|
|
93
118
|
BUNDLED WITH
|
94
|
-
2.
|
119
|
+
2.6.2
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: csvbuilder-dynamic-columns-importer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joel Azemar
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-02-27 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: activesupport
|
@@ -17,9 +16,6 @@ dependencies:
|
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
18
|
version: '5.2'
|
20
|
-
- - "<"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: '8'
|
23
19
|
type: :runtime
|
24
20
|
prerelease: false
|
25
21
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -27,9 +23,6 @@ dependencies:
|
|
27
23
|
- - ">="
|
28
24
|
- !ruby/object:Gem::Version
|
29
25
|
version: '5.2'
|
30
|
-
- - "<"
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: '8'
|
33
26
|
- !ruby/object:Gem::Dependency
|
34
27
|
name: csvbuilder-core
|
35
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -83,6 +76,7 @@ files:
|
|
83
76
|
- ".rspec"
|
84
77
|
- ".rubocop.yml"
|
85
78
|
- ".rubocop_todo.yml"
|
79
|
+
- ".tool-versions"
|
86
80
|
- CHANGELOG.md
|
87
81
|
- CODE_OF_CONDUCT.md
|
88
82
|
- Gemfile
|
@@ -90,9 +84,8 @@ files:
|
|
90
84
|
- LICENSE.txt
|
91
85
|
- README.md
|
92
86
|
- Rakefile
|
93
|
-
- gemfiles/Gemfile.5.2._gemfile
|
94
|
-
- gemfiles/Gemfile.6.1._gemfile
|
95
87
|
- gemfiles/Gemfile.7.0._gemfile
|
88
|
+
- gemfiles/Gemfile.8.0._gemfile
|
96
89
|
- lib/.DS_Store
|
97
90
|
- lib/csvbuilder/.DS_Store
|
98
91
|
- lib/csvbuilder/dynamic/.DS_Store
|
@@ -110,7 +103,6 @@ metadata:
|
|
110
103
|
source_code_uri: https://github.com/joel/csvbuilder-dynamic-columns-importer
|
111
104
|
changelog_uri: https://github.com/joel/csvbuilder-dynamic-columns-importer/blob/main/CHANGELOG.md
|
112
105
|
rubygems_mfa_required: 'true'
|
113
|
-
post_install_message:
|
114
106
|
rdoc_options: []
|
115
107
|
require_paths:
|
116
108
|
- lib
|
@@ -125,8 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
125
117
|
- !ruby/object:Gem::Version
|
126
118
|
version: '0'
|
127
119
|
requirements: []
|
128
|
-
rubygems_version: 3.
|
129
|
-
signing_key:
|
120
|
+
rubygems_version: 3.6.2
|
130
121
|
specification_version: 4
|
131
122
|
summary: Csvbuilder Dynamic Columns contain the components to handle CSV dynamic columns
|
132
123
|
test_files: []
|
@@ -1,19 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
# Runtime dependencies
|
6
|
-
gem "activesupport", "~> 6.1"
|
7
|
-
|
8
|
-
# Libraries dependencies
|
9
|
-
gem "csvbuilder-core"
|
10
|
-
gem "csvbuilder-dynamic-columns-core"
|
11
|
-
gem "csvbuilder-importer"
|
12
|
-
|
13
|
-
# Development dependencies
|
14
|
-
gem "rake"
|
15
|
-
gem "rspec"
|
16
|
-
gem "rubocop"
|
17
|
-
gem "rubocop-performance"
|
18
|
-
gem "rubocop-rake"
|
19
|
-
gem "rubocop-rspec"
|