Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1.7"
ruby-version: "3.3.12"
- uses: actions/setup-node@v3
with:
node-version: 14
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1.7"
ruby-version: "3.3.12"
- uses: actions/setup-node@v3
with:
node-version: 14
Expand Down
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ruby 3.3.12
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ end
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.1.7'
ruby '3.3.12'

if next?
gem 'rails', '~> 7.2.0'
Expand Down Expand Up @@ -41,6 +41,7 @@ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

group :test do
gem 'test-unit'
gem 'minitest', '~> 5.25'
end

group :development, :test do
Expand Down
8 changes: 6 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,9 @@ GEM
racc (~> 1.4)
nokogiri (1.18.10-x86_64-linux-gnu)
racc (~> 1.4)
pg (1.2.3)
pg (1.6.3-arm64-darwin)
pg (1.6.3-x86_64-darwin)
pg (1.6.3-x86_64-linux)
power_assert (2.0.1)
pp (0.6.3)
prettyprint
Expand Down Expand Up @@ -282,6 +284,7 @@ GEM

PLATFORMS
arm64-darwin-23
arm64-darwin-25
x86_64-darwin-19
x86_64-linux

Expand All @@ -290,6 +293,7 @@ DEPENDENCIES
foundation-rails
jbuilder (~> 2.7)
listen (~> 3.2)
minitest (~> 5.25)
pg (>= 0.18, < 2.0)
puma (~> 4.1)
rails (~> 7.1.0)
Expand All @@ -301,7 +305,7 @@ DEPENDENCIES
webpacker (~> 5.0)

RUBY VERSION
ruby 3.1.7p261
ruby 3.3.12p206

BUNDLED WITH
2.6.9
8 changes: 6 additions & 2 deletions Gemfile.next.lock
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ GEM
racc (~> 1.4)
nokogiri (1.18.10-x86_64-linux-gnu)
racc (~> 1.4)
pg (1.2.3)
pg (1.6.3-arm64-darwin)
pg (1.6.3-x86_64-darwin)
pg (1.6.3-x86_64-linux)
power_assert (2.0.1)
pp (0.6.3)
prettyprint
Expand Down Expand Up @@ -276,6 +278,7 @@ GEM

PLATFORMS
arm64-darwin-23
arm64-darwin-25
x86_64-darwin-19
x86_64-linux

Expand All @@ -284,6 +287,7 @@ DEPENDENCIES
foundation-rails
jbuilder (~> 2.7)
listen (~> 3.2)
minitest (~> 5.25)
pg (>= 0.18, < 2.0)
puma (~> 4.1)
rails (~> 7.2.0)
Expand All @@ -295,7 +299,7 @@ DEPENDENCIES
webpacker (~> 5.0)

RUBY VERSION
ruby 3.1.7p261
ruby 3.3.12p206

BUNDLED WITH
2.6.9
36 changes: 27 additions & 9 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,40 @@
{
"name": "benchmark.fyi",
"description": "",
"description": "Benchmark results for Ruby and Rails",
"stack": "heroku-26",
"scripts": {
"postdeploy": "bundle exec rails db:schema:load"
},
"env": {
"LANG": {
"required": true
"value": "en_US.UTF-8"
},
"RACK_ENV": {
"required": true
"value": "production"
},
"RAILS_ENV": {
"required": true
"value": "production"
},
"RAILS_LOG_TO_STDOUT": {
"required": true
"value": "enabled"
},
"RAILS_SERVE_STATIC_FILES": {
"required": true
"value": "enabled"
},
"SECRET_KEY_BASE": {
"required": true
"generator": "secret"
}
},
"formation": {
"web": {
"quantity": 1
}
},
"addons": ["heroku-postgresql"],
"addons": [
{
"plan": "heroku-postgresql:essential-0"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
Expand All @@ -38,5 +43,18 @@
"url": "heroku/ruby"
}
],
"stack": "heroku-22"
"environments": {
"review": {
"addons": [
{
"plan": "heroku-postgresql:essential-0"
}
],
"formation": {
"web": {
"quantity": 1
}
}
}
}
}
Loading