Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eitoball committed Jul 15, 2024
1 parent 0f63946 commit 0a86728
Show file tree
Hide file tree
Showing 20 changed files with 884 additions and 720 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ jobs:
build:
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3']
gemfile: ['active6.0.6', 'active6.1.7.6', 'active7.0.8', 'active7.1.3', 'rails6.0.6', 'rails6.1.7.6', 'rails7.0.8', 'rails7.1.3']
ruby: ['3.0', '3.1', '3.2', '3.3', 'head']
gemfile: ['active6.1.7.8', 'active7.0.8.4', 'active7.1.3.4', 'active7.2.0.beta3', 'rails6.1.7.8', 'rails7.0.8.4', 'rails7.1.3.4', 'rails7.2.0.beta3']
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
Expand Down
41 changes: 20 additions & 21 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,43 +1,42 @@
# frozen_string_literal: true

appraise 'rails6.0.6' do
gem 'rails', '6.0.6'
appraise 'rails6.1.7.8' do
gem 'rails', '6.1.7.8'
gem 'rspec-rails'
gem 'test-unit'
end

appraise 'active6.0.6' do
gem 'activesupport', '6.0.6'
gem 'activerecord', '6.0.6'
appraise 'active6.1.7.8' do
gem 'activesupport', '6.1.7.8'
gem 'activerecord', '6.1.7.8'
end

appraise 'rails6.1.7.6' do
gem 'rails', '6.1.7.6'
appraise 'rails7.0.8.4' do
gem 'rails', '7.0.8.4'
gem 'rspec-rails'
gem 'test-unit'
end

appraise 'active6.1.7.6' do
gem 'activesupport', '6.1.7.6'
gem 'activerecord', '6.1.7.6'
appraise 'active7.0.8.4' do
gem 'activesupport', '7.0.8.4'
gem 'activerecord', '7.0.8.4'
end

appraise 'rails7.0.8' do
gem 'rails', '7.0.8'
appraise 'rails7.1.3.4' do
gem 'rails', '7.1.3.4'
gem 'rspec-rails'
end

appraise 'active7.0.8' do
gem 'activesupport', '7.0.8'
gem 'activerecord', '7.0.8'
appraise 'active7.1.3.4' do
gem 'activesupport', '7.1.3.4'
gem 'activerecord', '7.1.3.4'
end

appraise 'rails7.1.3' do
gem 'rails', '7.1.3'
appraise 'rails7.2.0.beta3' do
gem 'rails', '7.2.0.beta3'
gem 'rspec-rails'
end

appraise 'active7.1.3' do
gem 'activesupport', '7.1.3'
gem 'activerecord', '7.1.3'
appraise 'active7.2.0.beta3' do
gem 'activesupport', '7.2.0.beta3'
gem 'activerecord', '7.2.0.beta3'
end
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A library to generate comma seperated value (CSV) for Ruby objects like ActiveRe

### Prerequisites

You need to use ruby 3.0 or later. If you generate CSV from ActiveRecord models, you need to have ActiveRecord 6.0 or later.
You need to use ruby 3.0 or later. If you generate CSV from ActiveRecord models, you need to have ActiveRecord 6.1 or later.

### Installing

Expand All @@ -17,7 +17,7 @@ Comma is distributed as a gem, best installed via Bundler.
Include the gem in your Gemfile:

```ruby
gem 'comma', '~> 4.8.0'
gem 'comma', '~> 4.9.0'
```

Or, if you want to live life on the edge, you can get master from the main comma repository:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ source "https://rubygems.org"
gem "coveralls", :require => false
gem "rubocop", "~> 1.30.0", :require => false
gem "rubocop-performance", :require => false
gem "sqlite3"
gem "activesupport", "6.0.6"
gem "activerecord", "6.0.6"
gem "sqlite3", "< 2"
gem "activesupport", "6.1.7.8"
gem "activerecord", "6.1.7.8"

gemspec :path => "../"
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activemodel (6.1.7.6)
activesupport (= 6.1.7.6)
activerecord (6.1.7.6)
activemodel (= 6.1.7.6)
activesupport (= 6.1.7.6)
activesupport (6.1.7.6)
activemodel (6.1.7.8)
activesupport (= 6.1.7.8)
activerecord (6.1.7.8)
activemodel (= 6.1.7.8)
activesupport (= 6.1.7.8)
activesupport (6.1.7.8)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
Expand All @@ -23,29 +23,34 @@ GEM
rake
thor (>= 0.14.0)
ast (2.4.2)
concurrent-ruby (1.2.3)
bigdecimal (3.1.8)
concurrent-ruby (1.3.3)
coveralls (0.8.23)
json (>= 1.8, < 3)
simplecov (~> 0.16.1)
term-ansicolor (~> 1.3)
thor (>= 0.19.4, < 2.0)
tins (~> 1.6)
diff-lcs (1.5.0)
diff-lcs (1.5.1)
docile (1.4.0)
i18n (1.14.1)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
json (2.7.1)
mini_portile2 (2.8.5)
json (2.7.2)
minitest (5.14.4)
parallel (1.24.0)
parser (3.3.0.4)
mize (0.4.1)
protocol (~> 2.0)
parallel (1.25.1)
parser (3.3.4.0)
ast (~> 2.4.1)
racc
racc (1.7.3)
protocol (2.0.1)
ruby_parser (~> 3.0)
racc (1.8.0)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.9.0)
rexml (3.2.6)
regexp_parser (2.9.2)
rexml (3.3.1)
strscan
rspec (3.5.0)
rspec-core (~> 3.5.0)
rspec-expectations (~> 3.5.0)
Expand Down Expand Up @@ -75,36 +80,44 @@ GEM
rubocop-ast (>= 1.18.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-performance (1.19.1)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
ruby-progressbar (1.13.0)
ruby_parser (3.21.1)
racc (~> 1.5)
sexp_processor (~> 4.16)
sexp_processor (4.17.2)
simplecov (0.16.1)
docile (~> 1.1)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
sqlite3 (1.7.0)
mini_portile2 (~> 2.8.0)
sqlite3 (1.7.3-x86_64-darwin)
sqlite3 (1.7.3-x86_64-linux)
strscan (3.1.0)
sync (0.5.0)
term-ansicolor (1.7.1)
term-ansicolor (1.10.3)
mize
tins (~> 1.0)
thor (1.3.0)
tins (1.32.1)
thor (1.3.1)
tins (1.33.0)
bigdecimal
sync
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.5.0)
zeitwerk (2.6.12)
zeitwerk (2.6.16)

PLATFORMS
ruby
x86_64-darwin
x86_64-linux

DEPENDENCIES
activerecord (= 6.1.7.6)
activesupport (= 6.1.7.6)
activerecord (= 6.1.7.8)
activesupport (= 6.1.7.8)
appraisal (~> 1.0.0)
comma!
coveralls
Expand All @@ -115,7 +128,7 @@ DEPENDENCIES
rspec-its
rubocop (~> 1.30.0)
rubocop-performance
sqlite3
sqlite3 (< 2)

BUNDLED WITH
2.5.5
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ source "https://rubygems.org"
gem "coveralls", :require => false
gem "rubocop", "~> 1.30.0", :require => false
gem "rubocop-performance", :require => false
gem "sqlite3"
gem "activesupport", "7.0.8"
gem "activerecord", "7.0.8"
gem "sqlite3", "< 2"
gem "activesupport", "7.0.8.4"
gem "activerecord", "7.0.8.4"

gemspec :path => "../"
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activemodel (7.0.8)
activesupport (= 7.0.8)
activerecord (7.0.8)
activemodel (= 7.0.8)
activesupport (= 7.0.8)
activesupport (7.0.8)
activemodel (7.0.8.4)
activesupport (= 7.0.8.4)
activerecord (7.0.8.4)
activemodel (= 7.0.8.4)
activesupport (= 7.0.8.4)
activesupport (7.0.8.4)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
Expand All @@ -22,29 +22,34 @@ GEM
rake
thor (>= 0.14.0)
ast (2.4.2)
concurrent-ruby (1.2.3)
bigdecimal (3.1.8)
concurrent-ruby (1.3.3)
coveralls (0.8.23)
json (>= 1.8, < 3)
simplecov (~> 0.16.1)
term-ansicolor (~> 1.3)
thor (>= 0.19.4, < 2.0)
tins (~> 1.6)
diff-lcs (1.5.0)
diff-lcs (1.5.1)
docile (1.4.0)
i18n (1.14.1)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
json (2.7.1)
mini_portile2 (2.8.5)
json (2.7.2)
minitest (5.14.4)
parallel (1.24.0)
parser (3.3.0.4)
mize (0.4.1)
protocol (~> 2.0)
parallel (1.25.1)
parser (3.3.4.0)
ast (~> 2.4.1)
racc
racc (1.7.3)
protocol (2.0.1)
ruby_parser (~> 3.0)
racc (1.8.0)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.9.0)
rexml (3.2.6)
regexp_parser (2.9.2)
rexml (3.3.1)
strscan
rspec (3.5.0)
rspec-core (~> 3.5.0)
rspec-expectations (~> 3.5.0)
Expand Down Expand Up @@ -74,35 +79,43 @@ GEM
rubocop-ast (>= 1.18.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-performance (1.19.1)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
ruby-progressbar (1.13.0)
ruby_parser (3.21.1)
racc (~> 1.5)
sexp_processor (~> 4.16)
sexp_processor (4.17.2)
simplecov (0.16.1)
docile (~> 1.1)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
sqlite3 (1.7.0)
mini_portile2 (~> 2.8.0)
sqlite3 (1.7.3-x86_64-darwin)
sqlite3 (1.7.3-x86_64-linux)
strscan (3.1.0)
sync (0.5.0)
term-ansicolor (1.7.1)
term-ansicolor (1.10.3)
mize
tins (~> 1.0)
thor (1.3.0)
tins (1.32.1)
thor (1.3.1)
tins (1.33.0)
bigdecimal
sync
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.5.0)

PLATFORMS
ruby
x86_64-darwin
x86_64-linux

DEPENDENCIES
activerecord (= 7.0.8)
activesupport (= 7.0.8)
activerecord (= 7.0.8.4)
activesupport (= 7.0.8.4)
appraisal (~> 1.0.0)
comma!
coveralls
Expand All @@ -113,7 +126,7 @@ DEPENDENCIES
rspec-its
rubocop (~> 1.30.0)
rubocop-performance
sqlite3
sqlite3 (< 2)

BUNDLED WITH
2.5.5
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ source "https://rubygems.org"
gem "coveralls", :require => false
gem "rubocop", "~> 1.30.0", :require => false
gem "rubocop-performance", :require => false
gem "sqlite3"
gem "activesupport", "6.1.7.6"
gem "activerecord", "6.1.7.6"
gem "sqlite3", "< 2"
gem "activesupport", "7.1.3.4"
gem "activerecord", "7.1.3.4"

gemspec :path => "../"
Loading

0 comments on commit 0a86728

Please sign in to comment.