Skip to content

Commit

Permalink
Merge pull request #29 from lewagon/update-activerecord-sqlite
Browse files Browse the repository at this point in the history
Update sqlite3 and activerecord to match versions students are using
  • Loading branch information
Eschults authored Oct 24, 2024
2 parents 6dac11c + 2ce8ee6 commit 29e9a8f
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 24 deletions.
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ gem "rspec-rails", "~> 3.8"
gem "rubocop", "~> 1.64"
gem "sinatra", "~> 2.2", require: false
gem "sinatra-contrib", "~> 2.2", require: false
gem "sqlite3", "~> 1.4"
gem "activerecord", "~> 7.0"
gem "sqlite3", '~> 1.7.3'
gem 'activerecord', '~> 7.1.3.2'

44 changes: 22 additions & 22 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
GEM
remote: https://rubygems.org/
specs:
actionpack (7.1.3)
actionview (= 7.1.3)
activesupport (= 7.1.3)
actionpack (7.1.3.4)
actionview (= 7.1.3.4)
activesupport (= 7.1.3.4)
nokogiri (>= 1.8.5)
racc
rack (>= 2.2.4)
rack-session (>= 1.0.1)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.2)
rails-html-sanitizer (~> 1.6)
actionview (7.1.3)
activesupport (= 7.1.3)
actionview (7.1.3.4)
activesupport (= 7.1.3.4)
builder (~> 3.1)
erubi (~> 1.11)
rails-dom-testing (~> 2.2)
rails-html-sanitizer (~> 1.6)
activemodel (7.1.3)
activesupport (= 7.1.3)
activerecord (7.1.3)
activemodel (= 7.1.3)
activesupport (= 7.1.3)
activemodel (7.1.3.4)
activesupport (= 7.1.3.4)
activerecord (7.1.3.4)
activemodel (= 7.1.3.4)
activesupport (= 7.1.3.4)
timeout (>= 0.4.0)
activesupport (7.1.3)
activesupport (7.1.3.4)
base64
bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2)
Expand Down Expand Up @@ -93,7 +93,7 @@ GEM
psych (5.1.2)
stringio
racc (1.7.3)
rack (2.2.8)
rack (2.2.10)
rack-protection (2.2.4)
rack
rack-session (1.0.2)
Expand All @@ -110,9 +110,9 @@ GEM
rails-html-sanitizer (1.6.0)
loofah (~> 2.21)
nokogiri (~> 1.14)
railties (7.1.3)
actionpack (= 7.1.3)
activesupport (= 7.1.3)
railties (7.1.3.4)
actionpack (= 7.1.3.4)
activesupport (= 7.1.3.4)
irb
rackup (>= 1.0.0)
rake (>= 12.2)
Expand Down Expand Up @@ -175,19 +175,19 @@ GEM
rack-protection (= 2.2.4)
sinatra (= 2.2.4)
tilt (~> 2.0)
sqlite3 (1.7.2-arm64-darwin)
sqlite3 (1.7.2-x86_64-darwin)
sqlite3 (1.7.2-x86_64-linux)
sqlite3 (1.7.3-arm64-darwin)
sqlite3 (1.7.3-x86_64-darwin)
sqlite3 (1.7.3-x86_64-linux)
stringio (3.1.0)
strscan (3.1.0)
thor (1.3.0)
thor (1.3.2)
tilt (2.3.0)
timeout (0.4.1)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.5.0)
webrick (1.8.1)
zeitwerk (2.6.12)
zeitwerk (2.7.1)

PLATFORMS
arm64-darwin-21
Expand All @@ -197,7 +197,7 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
activerecord (~> 7.0)
activerecord (~> 7.1.3.2)
awesome_print (~> 1.8)
faker (~> 3.4)
nokogiri (~> 1.13)
Expand All @@ -207,7 +207,7 @@ DEPENDENCIES
rubocop (~> 1.64)
sinatra (~> 2.2)
sinatra-contrib (~> 2.2)
sqlite3 (~> 1.4)
sqlite3 (~> 1.7.3)

RUBY VERSION
ruby 3.3.5p100
Expand Down

0 comments on commit 29e9a8f

Please sign in to comment.