csvbuilder-dynamic-columns-exporter 0.1.1 → 0.1.3
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 +2 -2
- data/.rubocop_todo.yml +7 -1
- data/.tool-versions +1 -0
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +120 -0
- data/README.md +43 -0
- data/gemfiles/{Gemfile.5.2._gemfile → Gemfile.8.0._gemfile} +1 -1
- data/lib/csvbuilder/dynamic/columns/exporter/version.rb +1 -1
- metadata +7 -15
- 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: 45e43f7a756fe8e2bca7bb72ef0632c451be5c5ceb90db04ae032ae43b970c06
|
4
|
+
data.tar.gz: a970655f6e9b3952243c5e8f4378142dce5a7ffe3062e29c4ebbac43bdf2e685
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2b586af0ed26e73681d1572620abc3f847f0a958b19f197e2caf1cbe475b3d450f57380f507c6b7d3f5c9be7ca63d00a381db1926d10e435aebd4a1e6a08fd5
|
7
|
+
data.tar.gz: 0b2fb75e633b5d197c5bc7858259fa3287d498302cbbeba429445440ba8ee264fbe3afe3f61f51f75fa2a9fbc543a22241a641ffd4f81eac2a6a378c5741faae
|
data/.rubocop.yml
CHANGED
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2025-02-27 05:00:38 UTC using RuboCop version 1.73.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -28,6 +28,12 @@ RSpec/RepeatedDescription:
|
|
28
28
|
Exclude:
|
29
29
|
- 'spec/csvbuilder/dynamic/columns/exporter/concerns/export/dynamic_columns_spec.rb'
|
30
30
|
|
31
|
+
# Offense count: 1
|
32
|
+
# Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
|
33
|
+
RSpec/VerifiedDoubles:
|
34
|
+
Exclude:
|
35
|
+
- 'spec/csvbuilder/dynamic/columns/exporter/internal/export/dynamic_column_attribute_spec.rb'
|
36
|
+
|
31
37
|
# Offense count: 2
|
32
38
|
# Configuration parameters: AllowedConstants.
|
33
39
|
Style/Documentation:
|
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby 3.4.2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.1.3] - 2024-02-27
|
4
|
+
|
5
|
+
- Relax Rails Constraint
|
6
|
+
|
7
|
+
## [0.1.2] - 2024-02-27
|
8
|
+
|
9
|
+
- Update Ruby 3.4
|
10
|
+
|
3
11
|
## [0.1.1] - 2022-12-30
|
4
12
|
|
5
13
|
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
ADDED
@@ -0,0 +1,120 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
csvbuilder-dynamic-columns-exporter (0.1.3)
|
5
|
+
activesupport (>= 5.2)
|
6
|
+
csvbuilder-core (~> 0.1)
|
7
|
+
csvbuilder-dynamic-columns-core (~> 0.1)
|
8
|
+
csvbuilder-exporter (~> 0.1)
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
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
|
22
|
+
i18n (>= 1.6, < 2)
|
23
|
+
logger (>= 1.4.2)
|
24
|
+
minitest (>= 5.1)
|
25
|
+
securerandom (>= 0.3)
|
26
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
27
|
+
ast (2.4.2)
|
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)
|
38
|
+
activesupport (>= 5.2, < 8)
|
39
|
+
csvbuilder-core
|
40
|
+
csvbuilder-exporter (0.1.1)
|
41
|
+
activemodel (>= 5.2)
|
42
|
+
activesupport (>= 5.2)
|
43
|
+
csv
|
44
|
+
csvbuilder-core
|
45
|
+
diff-lcs (1.6.0)
|
46
|
+
drb (2.2.1)
|
47
|
+
i18n (1.14.7)
|
48
|
+
concurrent-ruby (~> 1.0)
|
49
|
+
json (2.10.1)
|
50
|
+
language_server-protocol (3.17.0.4)
|
51
|
+
lint_roller (1.1.0)
|
52
|
+
logger (1.6.6)
|
53
|
+
minitest (5.25.4)
|
54
|
+
parallel (1.26.3)
|
55
|
+
parser (3.3.7.1)
|
56
|
+
ast (~> 2.4.1)
|
57
|
+
racc
|
58
|
+
racc (1.8.1)
|
59
|
+
rainbow (3.1.1)
|
60
|
+
rake (13.2.1)
|
61
|
+
regexp_parser (2.10.0)
|
62
|
+
rspec (3.13.0)
|
63
|
+
rspec-core (~> 3.13.0)
|
64
|
+
rspec-expectations (~> 3.13.0)
|
65
|
+
rspec-mocks (~> 3.13.0)
|
66
|
+
rspec-core (3.13.3)
|
67
|
+
rspec-support (~> 3.13.0)
|
68
|
+
rspec-expectations (3.13.3)
|
69
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
70
|
+
rspec-support (~> 3.13.0)
|
71
|
+
rspec-mocks (3.13.2)
|
72
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
73
|
+
rspec-support (~> 3.13.0)
|
74
|
+
rspec-support (3.13.2)
|
75
|
+
rubocop (1.73.0)
|
76
|
+
json (~> 2.3)
|
77
|
+
language_server-protocol (~> 3.17.0.2)
|
78
|
+
lint_roller (~> 1.1.0)
|
79
|
+
parallel (~> 1.10)
|
80
|
+
parser (>= 3.3.0.2)
|
81
|
+
rainbow (>= 2.2.2, < 4.0)
|
82
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
83
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
84
|
+
ruby-progressbar (~> 1.7)
|
85
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
86
|
+
rubocop-ast (1.38.1)
|
87
|
+
parser (>= 3.3.1.0)
|
88
|
+
rubocop-performance (1.24.0)
|
89
|
+
lint_roller (~> 1.1)
|
90
|
+
rubocop (>= 1.72.1, < 2.0)
|
91
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
92
|
+
rubocop-rake (0.7.1)
|
93
|
+
lint_roller (~> 1.1)
|
94
|
+
rubocop (>= 1.72.1)
|
95
|
+
rubocop-rspec (3.5.0)
|
96
|
+
lint_roller (~> 1.1)
|
97
|
+
rubocop (~> 1.72, >= 1.72.1)
|
98
|
+
ruby-progressbar (1.13.0)
|
99
|
+
securerandom (0.4.1)
|
100
|
+
tzinfo (2.0.6)
|
101
|
+
concurrent-ruby (~> 1.0)
|
102
|
+
unicode-display_width (3.1.4)
|
103
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
104
|
+
unicode-emoji (4.0.4)
|
105
|
+
|
106
|
+
PLATFORMS
|
107
|
+
arm64-darwin-24
|
108
|
+
ruby
|
109
|
+
|
110
|
+
DEPENDENCIES
|
111
|
+
csvbuilder-dynamic-columns-exporter!
|
112
|
+
rake
|
113
|
+
rspec
|
114
|
+
rubocop
|
115
|
+
rubocop-performance
|
116
|
+
rubocop-rake
|
117
|
+
rubocop-rspec
|
118
|
+
|
119
|
+
BUNDLED WITH
|
120
|
+
2.6.2
|
data/README.md
CHANGED
@@ -103,6 +103,49 @@ class UserCsvExportModel < UserCsvRowModel
|
|
103
103
|
end
|
104
104
|
```
|
105
105
|
|
106
|
+
### Propagate default formatting
|
107
|
+
|
108
|
+
If a default formatting is defined, it will not automatically be propagated to the dynamic cells, which could cause edge cases.
|
109
|
+
|
110
|
+
```ruby
|
111
|
+
class UserCsvRowModel
|
112
|
+
include Csvbuilder::Model
|
113
|
+
|
114
|
+
column :name
|
115
|
+
|
116
|
+
dynamic_column :skills
|
117
|
+
|
118
|
+
class << self
|
119
|
+
|
120
|
+
def format_cell(cell, _column_name, _context)
|
121
|
+
"- #{cell} -"
|
122
|
+
end
|
123
|
+
|
124
|
+
end
|
125
|
+
end
|
126
|
+
```
|
127
|
+
|
128
|
+
To propagate it, recall the default formatting in dynamic columns formatting as follow:
|
129
|
+
|
130
|
+
```ruby
|
131
|
+
class UserCsvExportModel < UserCsvRowModel
|
132
|
+
include Csvbuilder::Export
|
133
|
+
|
134
|
+
def skill(skill_name)
|
135
|
+
source_model.skills.where(name: skill_name).exists? ? "1" : "0"
|
136
|
+
end
|
137
|
+
|
138
|
+
class << self
|
139
|
+
def format_dynamic_column_cells(cells, _column_name, _context)
|
140
|
+
cells.map do |cell|
|
141
|
+
format_cell(cell, _column_name, _context)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
end
|
147
|
+
```
|
148
|
+
|
106
149
|
## Development
|
107
150
|
|
108
151
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: csvbuilder-dynamic-columns-exporter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
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,15 +76,16 @@ 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
|
83
|
+
- Gemfile.lock
|
89
84
|
- LICENSE.txt
|
90
85
|
- README.md
|
91
86
|
- Rakefile
|
92
|
-
- gemfiles/Gemfile.5.2._gemfile
|
93
|
-
- gemfiles/Gemfile.6.1._gemfile
|
94
87
|
- gemfiles/Gemfile.7.0._gemfile
|
88
|
+
- gemfiles/Gemfile.8.0._gemfile
|
95
89
|
- lib/.DS_Store
|
96
90
|
- lib/csvbuilder/.DS_Store
|
97
91
|
- lib/csvbuilder/dynamic/.DS_Store
|
@@ -113,7 +107,6 @@ metadata:
|
|
113
107
|
source_code_uri: https://github.com/joel/csvbuilder-dynamic-columns-exporter
|
114
108
|
changelog_uri: https://github.com/joel/csvbuilder-dynamic-columns-exporter/blob/main/CHANGELOG.md
|
115
109
|
rubygems_mfa_required: 'true'
|
116
|
-
post_install_message:
|
117
110
|
rdoc_options: []
|
118
111
|
require_paths:
|
119
112
|
- lib
|
@@ -121,15 +114,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
121
114
|
requirements:
|
122
115
|
- - ">="
|
123
116
|
- !ruby/object:Gem::Version
|
124
|
-
version:
|
117
|
+
version: '3.4'
|
125
118
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
126
119
|
requirements:
|
127
120
|
- - ">="
|
128
121
|
- !ruby/object:Gem::Version
|
129
122
|
version: '0'
|
130
123
|
requirements: []
|
131
|
-
rubygems_version: 3.
|
132
|
-
signing_key:
|
124
|
+
rubygems_version: 3.6.2
|
133
125
|
specification_version: 4
|
134
126
|
summary: Csvbuilder Dynamic Columns contain the components to handle CSV dynamic columns
|
135
127
|
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-exporter"
|
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"
|