File: Gemfile

package info (click to toggle)
ruby-spring-watcher-listen 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 124 kB
  • sloc: ruby: 144; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 405 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

# Specify your gem's dependencies in spring-watcher-listen.gemspec
gemspec

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

gem "spring", github: "rails/spring", branch: "main"