Skip to content

Commit

Permalink
updates for local dev environment runnign macos 15.0.1 and new ruby a…
Browse files Browse the repository at this point in the history
…nd node and gems
  • Loading branch information
er-k committed Nov 12, 2024
1 parent d549a0b commit aa2e68a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.0.3
3.2.2
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ gem 'jbuilder', '~> 2.5'
# gem 'redis', '~> 3.0'

# Use sqlite3 as the database for Active Record
gem "sqlite3", "~> 1.4.2"
gem "sqlite3", "~> 1.5.0"

gem 'mysql2'

Expand Down
7 changes: 4 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ GEM
bootsnap (1.10.3)
msgpack (~> 1.2)
builder (3.2.4)
byebug (11.0.0)
byebug (11.1.3)
cancancan (3.5.0)
capistrano (3.17.3)
airbrussh (>= 1.0.0)
Expand Down Expand Up @@ -289,7 +289,8 @@ GEM
actionpack (>= 5.2)
activesupport (>= 5.2)
sprockets (>= 3.0.0)
sqlite3 (1.4.2)
sqlite3 (1.5.4)
mini_portile2 (~> 2.8.0)
sshkit (1.21.6)
net-scp (>= 1.1.2)
net-ssh (>= 2.8.0)
Expand Down Expand Up @@ -357,7 +358,7 @@ DEPENDENCIES
spring
spring-watcher-listen (~> 2.0.0)
sprockets-rails
sqlite3 (~> 1.4.2)
sqlite3 (~> 1.5.0)
tzinfo-data
uglifier (>= 1.3.0)
web-console (>= 3.3.0)
Expand Down
6 changes: 3 additions & 3 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
t.string "summary"
t.datetime "created_at", precision: nil, null: false
t.datetime "updated_at", precision: nil, null: false
t.bigint "primary_location_id"
t.integer "primary_location_id"
t.boolean "primary", default: false
t.boolean "front_page", default: false, null: false
t.string "short_note"
Expand All @@ -50,7 +50,7 @@
end

create_table "permissions", force: :cascade do |t|
t.bigint "user_id"
t.integer "user_id"
t.string "role", null: false
t.string "subject_class"
t.integer "subject_id"
Expand All @@ -69,7 +69,7 @@
t.boolean "tbd", default: false, null: false
t.boolean "closed", default: false, null: false
t.string "note"
t.bigint "location_id"
t.integer "location_id"
t.index ["close"], name: "index_timetables_on_close"
t.index ["date"], name: "index_timetables_on_date"
t.index ["location_id", "date"], name: "index_timetables_on_location_id_and_date", unique: true
Expand Down

0 comments on commit aa2e68a

Please sign in to comment.