summaryrefslogtreecommitdiff
path: root/Gemfile
blob: eba78042040c97eea749b1e1f1839267a7138838 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 'rake', '< 11'
  gem 'rdoc', '< 4'
elsif RUBY_VERSION >= '2.0'
  if RUBY_ENGINE == 'ruby'
    gem 'simplecov', '~> 0.18'
  end
end

gemspec

# vim: ft=ruby