File: Gemfile

package info (click to toggle)
ruby-tty-command 0.10.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 452 kB
  • sloc: ruby: 1,990; makefile: 4; sh: 4
file content (16 lines) | stat: -rw-r--r-- 292 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
source "https://rubygems.org"

gemspec

gem "json", "2.4.1" if RUBY_VERSION == "2.0.0"

group :test do
  gem "simplecov", "~> 0.16.1"
  gem "coveralls", "~> 0.8.22"
end

if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.1.0")
group :perf do
  gem "memory_profiler", "~> 0.9.8"
end
end