File: Gemfile

package info (click to toggle)
pry 0.15.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,772 kB
  • sloc: ruby: 21,692; sh: 17; makefile: 11
file content (23 lines) | stat: -rw-r--r-- 439 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

source 'https://rubygems.org'
gemspec

gem 'rake'
gem 'yard'
gem 'rspec'

gem "psych", '<= 5.3.0'

if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.3.0')
  gem 'method_source', '= 1.0.0'
end

if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.3.0')
  gem 'reline'
  gem 'prism', '>= 0.25.0'
end

if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.2.0')
  gem 'rubocop', require: false
end