File: Gemfile

package info (click to toggle)
ruby-spring 4.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 444 kB
  • sloc: ruby: 3,584; sh: 9; makefile: 7
file content (16 lines) | stat: -rw-r--r-- 334 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
source 'https://rubygems.org'

# Specify your gem's dependencies in spring.gemspec
gemspec

gem "rake"

if ENV["RAILS_VERSION"] == "edge"
  gem "activesupport", github: "rails/rails", branch: "main"
elsif ENV["RAILS_VERSION"]
  gem "activesupport", "~> #{ENV["RAILS_VERSION"]}.0"
else
  gem "activesupport"
end

gem "minitest", "< 6"