csvbuilder-core 0.1.2 → 0.1.4
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 -5
- data/.rubocop_todo.yml +9 -17
- data/.tool-versions +1 -0
- data/CHANGELOG.md +32 -0
- data/Gemfile.lock +105 -0
- data/README.md +122 -5
- data/gemfiles/Gemfile.7.0._gemfile +1 -0
- data/gemfiles/{Gemfile.5.2._gemfile → Gemfile.8.0._gemfile} +2 -1
- data/lib/csvbuilder/core/concerns/attributes_base.rb +4 -4
- data/lib/csvbuilder/core/concerns/model/attributes.rb +12 -1
- data/lib/csvbuilder/core/concerns/proxy.rb +2 -2
- data/lib/csvbuilder/core/internal/attribute_base.rb +13 -0
- data/lib/csvbuilder/core/internal/model/header.rb +10 -3
- data/lib/csvbuilder/core/version.rb +1 -1
- metadata +20 -14
- data/gemfiles/Gemfile.6.1._gemfile +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bebbe955151405fc7bd5fed00c2e89c7138751d51c9bc60da989eef55bc11249
|
4
|
+
data.tar.gz: 0af4007a61548b597e3f51e742eb6f687a4ee0978bbb66867079c75895f514a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41b04fe27507ac07e996d0fdd8e75e13dea278e65151095eb1223d588def3dd1b3b62ca7e066e2c43a9b4b9d2a56a32f3412a0e01ecd39cab0c45fea523cadcf
|
7
|
+
data.tar.gz: f3bb2943717a98ca9d93dc357842ed78f2072fc54e9ec730d5fbedae648f770c21faf5500c7644fc57fde4455345eda0b848f4747abcecc55585d774c2e8d822
|
data/.rubocop.yml
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
inherit_from: .rubocop_todo.yml
|
2
2
|
|
3
|
-
|
3
|
+
plugins:
|
4
4
|
- rubocop-performance
|
5
5
|
- rubocop-rake
|
6
6
|
- rubocop-rspec
|
7
7
|
|
8
8
|
AllCops:
|
9
9
|
NewCops: enable
|
10
|
-
TargetRubyVersion: 2
|
10
|
+
TargetRubyVersion: 3.4.2
|
11
11
|
|
12
12
|
Style/StringLiterals:
|
13
13
|
Enabled: true
|
@@ -16,6 +16,3 @@ Style/StringLiterals:
|
|
16
16
|
Style/StringLiteralsInInterpolation:
|
17
17
|
Enabled: true
|
18
18
|
EnforcedStyle: double_quotes
|
19
|
-
|
20
|
-
Layout/LineLength:
|
21
|
-
Max: 120
|
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 2023-09-05 09:08:13 UTC using RuboCop version 1.56.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
|
@@ -8,29 +8,21 @@
|
|
8
8
|
|
9
9
|
# Offense count: 1
|
10
10
|
# This cop supports safe autocorrection (--autocorrect).
|
11
|
-
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns
|
11
|
+
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns.
|
12
12
|
# URISchemes: http, https
|
13
13
|
Layout/LineLength:
|
14
14
|
Max: 147
|
15
|
-
Exclude:
|
16
|
-
- 'lib/csvbuilder/core/concerns/attributes_base.rb'
|
17
15
|
|
18
|
-
# Offense count:
|
19
|
-
# Configuration parameters:
|
20
|
-
RSpec/
|
21
|
-
|
16
|
+
# Offense count: 2
|
17
|
+
# Configuration parameters: Max, AllowedIdentifiers, AllowedPatterns.
|
18
|
+
RSpec/IndexedLet:
|
19
|
+
Exclude:
|
20
|
+
- 'spec/csvbuilder/core/concerns/proxy_spec.rb'
|
22
21
|
|
23
|
-
# Offense count:
|
22
|
+
# Offense count: 2
|
24
23
|
RSpec/MultipleExpectations:
|
25
24
|
Max: 3
|
26
25
|
|
27
|
-
# Offense count: 1
|
28
|
-
# Configuration parameters: AllowedPatterns.
|
29
|
-
# AllowedPatterns: ^expect_, ^assert_
|
30
|
-
RSpec/NoExpectationExample:
|
31
|
-
Exclude:
|
32
|
-
- 'spec/support/shared_examples/methods/define_attribute_method.rb'
|
33
|
-
|
34
26
|
# Offense count: 7
|
35
27
|
# Configuration parameters: AllowedConstants.
|
36
28
|
Style/Documentation:
|
@@ -50,4 +42,4 @@ Style/OpenStructUse:
|
|
50
42
|
Exclude:
|
51
43
|
- 'lib/csvbuilder/core/concerns/model/base.rb'
|
52
44
|
- 'lib/csvbuilder/core/internal/model/header.rb'
|
53
|
-
- 'spec/support/fixtures/concerns/basic_attributes.rb'
|
45
|
+
- 'spec/support/fixtures/concerns/basic_attributes.rb'
|
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby 3.4.2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,37 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.1.4] - 2025-02-26
|
4
|
+
|
5
|
+
- Adding Csvbuilder::Model::Attributes#column_header by [Michael Keene](https://github.com/Michaelkeene)
|
6
|
+
|
7
|
+
## [0.1.3] - 2023-03-03
|
8
|
+
|
9
|
+
Add Header default formatting
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
class BasicRowModel
|
13
|
+
include Csvbuilder::Model
|
14
|
+
|
15
|
+
column :alpha
|
16
|
+
end
|
17
|
+
|
18
|
+
BasicRowModel.headers
|
19
|
+
# => ["Alpha"]
|
20
|
+
```
|
21
|
+
|
22
|
+
Basic Proc Capability
|
23
|
+
|
24
|
+
```ruby
|
25
|
+
class BasicRowModel
|
26
|
+
include Csvbuilder::Model
|
27
|
+
|
28
|
+
column :alpha, header: ->(column_name, context) { "#{context.inspect} #{column_name.to_s.humanize}" }
|
29
|
+
end
|
30
|
+
|
31
|
+
BasicRowModel.headers({ foo: :bar }) }
|
32
|
+
# => ["#<OpenStruct foo=:bar> Alpha"] }
|
33
|
+
```
|
34
|
+
|
3
35
|
## [0.1.0] - 2022-12-15
|
4
36
|
|
5
37
|
- Initial release
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
csvbuilder-core (0.1.4)
|
5
|
+
activesupport (>= 5.2)
|
6
|
+
csv
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
activesupport (7.2.2.1)
|
12
|
+
base64
|
13
|
+
benchmark (>= 0.3)
|
14
|
+
bigdecimal
|
15
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
16
|
+
connection_pool (>= 2.2.5)
|
17
|
+
drb
|
18
|
+
i18n (>= 1.6, < 2)
|
19
|
+
logger (>= 1.4.2)
|
20
|
+
minitest (>= 5.1)
|
21
|
+
securerandom (>= 0.3)
|
22
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
23
|
+
ast (2.4.2)
|
24
|
+
base64 (0.2.0)
|
25
|
+
benchmark (0.4.0)
|
26
|
+
bigdecimal (3.1.9)
|
27
|
+
concurrent-ruby (1.3.5)
|
28
|
+
connection_pool (2.5.0)
|
29
|
+
csv (3.3.2)
|
30
|
+
diff-lcs (1.6.0)
|
31
|
+
drb (2.2.1)
|
32
|
+
i18n (1.14.7)
|
33
|
+
concurrent-ruby (~> 1.0)
|
34
|
+
json (2.10.1)
|
35
|
+
language_server-protocol (3.17.0.4)
|
36
|
+
lint_roller (1.1.0)
|
37
|
+
logger (1.6.6)
|
38
|
+
minitest (5.25.4)
|
39
|
+
parallel (1.26.3)
|
40
|
+
parser (3.3.7.1)
|
41
|
+
ast (~> 2.4.1)
|
42
|
+
racc
|
43
|
+
racc (1.8.1)
|
44
|
+
rainbow (3.1.1)
|
45
|
+
rake (13.2.1)
|
46
|
+
regexp_parser (2.10.0)
|
47
|
+
rspec (3.13.0)
|
48
|
+
rspec-core (~> 3.13.0)
|
49
|
+
rspec-expectations (~> 3.13.0)
|
50
|
+
rspec-mocks (~> 3.13.0)
|
51
|
+
rspec-core (3.13.3)
|
52
|
+
rspec-support (~> 3.13.0)
|
53
|
+
rspec-expectations (3.13.3)
|
54
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
55
|
+
rspec-support (~> 3.13.0)
|
56
|
+
rspec-mocks (3.13.2)
|
57
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
58
|
+
rspec-support (~> 3.13.0)
|
59
|
+
rspec-support (3.13.2)
|
60
|
+
rubocop (1.72.2)
|
61
|
+
json (~> 2.3)
|
62
|
+
language_server-protocol (~> 3.17.0.2)
|
63
|
+
lint_roller (~> 1.1.0)
|
64
|
+
parallel (~> 1.10)
|
65
|
+
parser (>= 3.3.0.2)
|
66
|
+
rainbow (>= 2.2.2, < 4.0)
|
67
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
68
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
69
|
+
ruby-progressbar (~> 1.7)
|
70
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
71
|
+
rubocop-ast (1.38.1)
|
72
|
+
parser (>= 3.3.1.0)
|
73
|
+
rubocop-performance (1.24.0)
|
74
|
+
lint_roller (~> 1.1)
|
75
|
+
rubocop (>= 1.72.1, < 2.0)
|
76
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
77
|
+
rubocop-rake (0.7.1)
|
78
|
+
lint_roller (~> 1.1)
|
79
|
+
rubocop (>= 1.72.1)
|
80
|
+
rubocop-rspec (3.5.0)
|
81
|
+
lint_roller (~> 1.1)
|
82
|
+
rubocop (~> 1.72, >= 1.72.1)
|
83
|
+
ruby-progressbar (1.13.0)
|
84
|
+
securerandom (0.4.1)
|
85
|
+
tzinfo (2.0.6)
|
86
|
+
concurrent-ruby (~> 1.0)
|
87
|
+
unicode-display_width (3.1.4)
|
88
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
89
|
+
unicode-emoji (4.0.4)
|
90
|
+
|
91
|
+
PLATFORMS
|
92
|
+
arm64-darwin-24
|
93
|
+
ruby
|
94
|
+
|
95
|
+
DEPENDENCIES
|
96
|
+
csvbuilder-core!
|
97
|
+
rake
|
98
|
+
rspec
|
99
|
+
rubocop
|
100
|
+
rubocop-performance
|
101
|
+
rubocop-rake
|
102
|
+
rubocop-rspec
|
103
|
+
|
104
|
+
BUNDLED WITH
|
105
|
+
2.6.2
|
data/README.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
# Csvbuilder::Core
|
2
2
|
|
3
|
-
|
3
|
+
[Csvbuilder::Core](https://github.com/joel/csvbuilder-core) is part of the [csvbuilder-collection](https://github.com/joel/csvbuilder)
|
4
4
|
|
5
|
-
|
5
|
+
The core contains the shared components used and extended by the exporter and the importer. It is the foundation of the gem [csvbuilder](https://github.com/joel/csvbuilder) and carries the library's architecture, and it is not meant to be used alone.
|
6
|
+
|
7
|
+
See:
|
8
|
+
- [Csvbuilder::Exporter](https://github.com/joel/csvbuilder-exporter)
|
9
|
+
- [Csvbuilder::Importer](https://github.com/joel/csvbuilder-importer)
|
6
10
|
|
7
11
|
## Installation
|
8
12
|
|
@@ -14,9 +18,122 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
14
18
|
|
15
19
|
$ gem install csvbuilder-core
|
16
20
|
|
17
|
-
|
21
|
+
# Architecture
|
22
|
+
|
23
|
+
It is organized into three sections, the public, internal and mixins.
|
24
|
+
|
25
|
+
<img width="215" alt="Screenshot 2022-12-28 at 12 53 59 PM" src="https://user-images.githubusercontent.com/5789/209835572-01d1a7e5-3175-490c-a166-1b9b74908390.png">
|
26
|
+
|
27
|
+
# Public
|
28
|
+
|
29
|
+
The public exposes the API meant to be used by the other components. The concrete implementation is mainly lying in the Mixins, though.
|
30
|
+
|
31
|
+
# Base Attributes
|
32
|
+
|
33
|
+
It represents a `CSV` row in `Csvbuilder`. At the core, it defines the standard behaviour, and those behaviours are specialized in `Export` and `Import` gems.
|
34
|
+
|
35
|
+
In `core/concerns/attributes_base`, it exposes three main methods:
|
36
|
+
|
37
|
+
1. `original_attributes`
|
38
|
+
2. `formatted_attributes`
|
39
|
+
3. `source_attributes`
|
40
|
+
|
41
|
+
Those methods are collections called on `Attribute`—for instance, `original_attributes` call `Attribute#value` under the hood for the current row.
|
42
|
+
|
43
|
+
# Model Attributes
|
44
|
+
|
45
|
+
In `core/concerns/model/attributes`, we can find the DSL where columns with the options are defined and stored.
|
46
|
+
|
47
|
+
```ruby
|
48
|
+
class BasicRowModel
|
49
|
+
include Csvbuilder::Model
|
50
|
+
|
51
|
+
column :alpha
|
52
|
+
column :beta
|
53
|
+
end
|
54
|
+
```
|
55
|
+
|
56
|
+
It also carries the headers and the two methods helping with the formatting.
|
57
|
+
|
58
|
+
```ruby
|
59
|
+
class BasicRowModel
|
60
|
+
include Csvbuilder::Model
|
61
|
+
|
62
|
+
class << self
|
63
|
+
|
64
|
+
# Used by Csvbuilder::AttributeBase#formatted_value
|
65
|
+
def format_cell(value, column_name, context)
|
66
|
+
"- || * #{column_name} * || -"
|
67
|
+
end
|
68
|
+
|
69
|
+
# Used by Csvbuilder::Model::Header#formatted_header
|
70
|
+
def format_header(column_name, context)
|
71
|
+
"~ #{column_name} ~"
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
header = "Alpha"
|
77
|
+
value = "alpha one"
|
78
|
+
|
79
|
+
AttributeBase.new.formatted_value
|
80
|
+
# => "- || * alpha one * || -"
|
81
|
+
|
82
|
+
AttributeBase.new.value # It can carry some logic.
|
83
|
+
# => "- || * alpha one * || -"
|
84
|
+
|
85
|
+
AttributeBase.new.source_value # Will be always the raw value
|
86
|
+
# => "alpha one"
|
87
|
+
|
88
|
+
Header.new.formatted_header
|
89
|
+
# => ~ Alpha ~
|
90
|
+
```
|
91
|
+
|
92
|
+
Internally calling respectively:
|
93
|
+
|
94
|
+
```ruby
|
95
|
+
module Csvbuilder
|
96
|
+
module Model
|
97
|
+
class Header
|
98
|
+
|
99
|
+
def formatted_header
|
100
|
+
row_model_class.format_header(column_name, context)
|
101
|
+
end
|
102
|
+
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
```
|
108
|
+
|
109
|
+
and
|
110
|
+
|
111
|
+
```ruby
|
112
|
+
module Csvbuilder
|
113
|
+
class AttributeBase
|
114
|
+
|
115
|
+
def formatted_value
|
116
|
+
@formatted_value ||= row_model_class.format_cell(source_value, column_name, row_model.context)
|
117
|
+
end
|
118
|
+
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
```
|
123
|
+
|
124
|
+
# Attribute
|
125
|
+
|
126
|
+
Represent the cell value.
|
127
|
+
|
128
|
+
Can be found here: `core/internal/attribute_base`.
|
129
|
+
|
130
|
+
It can represent the value through the three following methods:
|
131
|
+
|
132
|
+
1. `source_value` unchanged value
|
133
|
+
2. `value` often the formatted_value, but some logic can be added.
|
134
|
+
3. `formatted_value`
|
18
135
|
|
19
|
-
|
136
|
+
<img width="725" alt="Screenshot 2022-12-28 at 3 23 34 PM" src="https://user-images.githubusercontent.com/5789/209835649-373ebaad-ed53-420d-8a7a-1b93c782d066.png">
|
20
137
|
|
21
138
|
## Development
|
22
139
|
|
@@ -26,7 +143,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
26
143
|
|
27
144
|
## Contributing
|
28
145
|
|
29
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
146
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/joel/csvbuilder-core. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/csvbuilder-core/blob/main/CODE_OF_CONDUCT.md).
|
30
147
|
|
31
148
|
## License
|
32
149
|
|
@@ -56,8 +56,8 @@ module Csvbuilder
|
|
56
56
|
array_to_block_hash(column_names) { |column_name| attribute_objects[column_name].public_send(attribute_method) }
|
57
57
|
end
|
58
58
|
|
59
|
-
def array_to_block_hash(array, &
|
60
|
-
array.zip(array.map(&
|
59
|
+
def array_to_block_hash(array, &)
|
60
|
+
array.zip(array.map(&)).to_h
|
61
61
|
end
|
62
62
|
|
63
63
|
class_methods do
|
@@ -69,10 +69,10 @@ module Csvbuilder
|
|
69
69
|
|
70
70
|
# Define default attribute method for a column
|
71
71
|
# @param column_name [Symbol] the cell's column_name
|
72
|
-
def define_attribute_method(column_name, &
|
72
|
+
def define_attribute_method(column_name, &)
|
73
73
|
return if method_defined? column_name
|
74
74
|
|
75
|
-
define_proxy_method(column_name, &
|
75
|
+
define_proxy_method(column_name, &)
|
76
76
|
end
|
77
77
|
|
78
78
|
def ensure_attribute_method
|
@@ -15,6 +15,10 @@ module Csvbuilder
|
|
15
15
|
self.class.headers(context)
|
16
16
|
end
|
17
17
|
|
18
|
+
def column_header(column_header)
|
19
|
+
self.class.column_header(column_header, context)
|
20
|
+
end
|
21
|
+
|
18
22
|
class_methods do
|
19
23
|
# @return [Array<Symbol>] column names for the row model
|
20
24
|
def column_names
|
@@ -30,7 +34,7 @@ module Csvbuilder
|
|
30
34
|
# @param [Hash, OpenStruct] context name of column to check
|
31
35
|
# @return [Array] column headers for the row model
|
32
36
|
def headers(context = {})
|
33
|
-
column_names.map { |column_name|
|
37
|
+
column_names.map { |column_name| column_header(column_name, context) }
|
34
38
|
end
|
35
39
|
|
36
40
|
# Safe to override
|
@@ -52,6 +56,13 @@ module Csvbuilder
|
|
52
56
|
self._columns ||= {}
|
53
57
|
end
|
54
58
|
|
59
|
+
# @param context [Hash, OpenStruct] name of column to check
|
60
|
+
# @param column_name [Symbol] the cell's column_name
|
61
|
+
# @return [String] column header
|
62
|
+
def column_header(column_name, context = {})
|
63
|
+
Header.new(column_name, self, context).value
|
64
|
+
end
|
65
|
+
|
55
66
|
protected
|
56
67
|
|
57
68
|
# Adds column to the row model
|
@@ -13,10 +13,23 @@ module Csvbuilder
|
|
13
13
|
@row_model = row_model
|
14
14
|
end
|
15
15
|
|
16
|
+
# @return [Object] the value with formatting applied
|
16
17
|
def formatted_value
|
17
18
|
@formatted_value ||= row_model_class.format_cell(source_value, column_name, row_model.context)
|
18
19
|
end
|
19
20
|
|
21
|
+
# @return [Object] the value
|
22
|
+
def value
|
23
|
+
raise NotImplementedError
|
24
|
+
end
|
25
|
+
|
26
|
+
# @return [Object] the unchanged value from the source
|
27
|
+
def source_value
|
28
|
+
raise NotImplementedError
|
29
|
+
end
|
30
|
+
|
31
|
+
protected
|
32
|
+
|
20
33
|
def row_model_class
|
21
34
|
row_model.class
|
22
35
|
end
|
@@ -16,11 +16,18 @@ module Csvbuilder
|
|
16
16
|
end
|
17
17
|
|
18
18
|
def value
|
19
|
-
options[:header]
|
19
|
+
case options[:header]
|
20
|
+
when Proc
|
21
|
+
return options[:header].call(column_name, context)
|
22
|
+
when String
|
23
|
+
return options[:header]
|
24
|
+
end
|
25
|
+
|
26
|
+
formatted_header(column_name.to_s.humanize)
|
20
27
|
end
|
21
28
|
|
22
|
-
def formatted_header
|
23
|
-
row_model_class.format_header(
|
29
|
+
def formatted_header(header_name)
|
30
|
+
row_model_class.format_header(header_name, context)
|
24
31
|
end
|
25
32
|
end
|
26
33
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: csvbuilder-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
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-26 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,20 @@ dependencies:
|
|
27
23
|
- - ">="
|
28
24
|
- !ruby/object:Gem::Version
|
29
25
|
version: '5.2'
|
30
|
-
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: csv
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
31
38
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
39
|
+
version: '0'
|
33
40
|
description: Help handle CSVs in a more efficient way
|
34
41
|
email:
|
35
42
|
- joel.azemar@gmail.com
|
@@ -40,15 +47,16 @@ files:
|
|
40
47
|
- ".rspec"
|
41
48
|
- ".rubocop.yml"
|
42
49
|
- ".rubocop_todo.yml"
|
50
|
+
- ".tool-versions"
|
43
51
|
- CHANGELOG.md
|
44
52
|
- CODE_OF_CONDUCT.md
|
45
53
|
- Gemfile
|
54
|
+
- Gemfile.lock
|
46
55
|
- LICENSE.txt
|
47
56
|
- README.md
|
48
57
|
- Rakefile
|
49
|
-
- gemfiles/Gemfile.5.2._gemfile
|
50
|
-
- gemfiles/Gemfile.6.1._gemfile
|
51
58
|
- gemfiles/Gemfile.7.0._gemfile
|
59
|
+
- gemfiles/Gemfile.8.0._gemfile
|
52
60
|
- lib/csvbuilder/core.rb
|
53
61
|
- lib/csvbuilder/core/concerns/attributes_base.rb
|
54
62
|
- lib/csvbuilder/core/concerns/model/attributes.rb
|
@@ -68,7 +76,6 @@ metadata:
|
|
68
76
|
source_code_uri: https://github.com/joel/csvbuilder-core
|
69
77
|
changelog_uri: https://github.com/joel/csvbuilder-core/blob/main/CHANGELOG.md
|
70
78
|
rubygems_mfa_required: 'true'
|
71
|
-
post_install_message:
|
72
79
|
rdoc_options: []
|
73
80
|
require_paths:
|
74
81
|
- lib
|
@@ -76,15 +83,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
83
|
requirements:
|
77
84
|
- - ">="
|
78
85
|
- !ruby/object:Gem::Version
|
79
|
-
version:
|
86
|
+
version: '3.4'
|
80
87
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
88
|
requirements:
|
82
89
|
- - ">="
|
83
90
|
- !ruby/object:Gem::Version
|
84
91
|
version: '0'
|
85
92
|
requirements: []
|
86
|
-
rubygems_version: 3.
|
87
|
-
signing_key:
|
93
|
+
rubygems_version: 3.6.2
|
88
94
|
specification_version: 4
|
89
95
|
summary: Csvbuilder Core contain the shared components of Csvbuilder
|
90
96
|
test_files: []
|
@@ -1,14 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
# Runtime dependencies
|
6
|
-
gem "activesupport", "~> 6.1"
|
7
|
-
|
8
|
-
# Development dependencies
|
9
|
-
gem "rake"
|
10
|
-
gem "rspec"
|
11
|
-
gem "rubocop"
|
12
|
-
gem "rubocop-performance"
|
13
|
-
gem "rubocop-rake"
|
14
|
-
gem "rubocop-rspec"
|