summaryrefslogtreecommitdiff
path: root/Gemfile
blob: b482de615234ef6ec2618ee0f6de9c97a816c9af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true

# NOTE: This file is present to keep Travis CI happy. Edits to it will not
# be accepted.

source 'https://rubygems.org/'

if RUBY_VERSION < '1.9'
  gem 'hoe', '~> 3.20'
  gem 'rake', '< 11'
  gem 'rdoc', '< 4'

  gem 'ruby-debug'
end

if RUBY_VERSION >= '2.0'
  gem 'standardrb'
  gem 'fasterer'

  if RUBY_ENGINE == 'ruby'
    gem 'simplecov', '~> 0.18'
    gem 'byebug'
  end
end

gemspec

# vim: ft=ruby