File: Gemfile

package info (click to toggle)
ruby-marginalia 1.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 140 kB
  • sloc: ruby: 631; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 198 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
source "https://rubygems.org"

gemspec

rails_version = ENV["RAILS_VERSION"] || "6.1.0"
if rails_version == "main"
  gem "rails", github: "rails/rails"
else
  gem "rails", "~> #{rails_version}"
end