Skip to content

Commit

Permalink
Add new tables and refactor old poorly code (#39)
Browse files Browse the repository at this point in the history
* Add new tables
* Refactor
  • Loading branch information
ynelin authored Oct 14, 2023
1 parent 2526f81 commit 06c3784
Show file tree
Hide file tree
Showing 22 changed files with 526 additions and 125 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.1
3.2.2
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
source 'https://rubygems.org'

ruby '2.3.1'
ruby '3.2.2'

gem 'activerecord'
gem 'activerecord-import'
gem 'activesupport'
gem 'cropio-ruby', '~> 0.3'
gem 'oj'
Expand Down
60 changes: 32 additions & 28 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,57 +1,61 @@
GEM
remote: https://rubygems.org/
specs:
activemodel (5.2.6)
activesupport (= 5.2.6)
activerecord (5.2.6)
activemodel (= 5.2.6)
activesupport (= 5.2.6)
arel (>= 9.0)
activesupport (5.2.6)
activemodel (6.1.7.2)
activesupport (= 6.1.7.2)
activerecord (6.1.7.2)
activemodel (= 6.1.7.2)
activesupport (= 6.1.7.2)
activerecord-import (1.4.1)
activerecord (>= 4.2)
activesupport (6.1.7.2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
arel (9.0.0)
byebug (11.0.1)
concurrent-ruby (1.1.9)
cropio-ruby (0.32)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
byebug (11.1.3)
concurrent-ruby (1.2.2)
cropio-ruby (0.33)
json
rest-client (~> 2.1.0rc1)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
http-accept (1.7.0)
http-cookie (1.0.4)
http-cookie (1.0.5)
domain_name (~> 0.5)
i18n (1.8.11)
i18n (1.12.0)
concurrent-ruby (~> 1.0)
json (2.6.1)
json (2.6.3)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2022.0105)
minitest (5.14.4)
mime-types-data (3.2023.0218.1)
minitest (5.15.0)
netrc (0.11.0)
oj (3.10.8)
pg (1.2.3)
oj (3.14.2)
pg (1.4.6)
rake (13.0.6)
redis (3.3.5)
rest-client (2.1.0)
http-accept (>= 1.7.0, < 2.0)
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
thread_safe (0.3.6)
tzinfo (1.2.9)
thread_safe (~> 0.1)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unf (0.1.4)
unf_ext
unf_ext (0.0.8)
unf_ext (0.0.8.2)
zeitwerk (2.6.7)

PLATFORMS
ruby
arm64-darwin-22
x86_64-darwin-20
x86_64-linux

DEPENDENCIES
activerecord
activerecord-import
activesupport
byebug
cropio-ruby (~> 0.3)
Expand All @@ -61,7 +65,7 @@ DEPENDENCIES
redis (~> 3.2)

RUBY VERSION
ruby 2.3.1p112
ruby 3.2.2p53

BUNDLED WITH
2.2.16
2.3.26
Loading

0 comments on commit 06c3784

Please sign in to comment.