summaryrefslogtreecommitdiff
path: root/Gemfile
blob: b5a72e47ced1669518a492d534bf5952dee36a88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- ruby -*-

# 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 'rdoc', '< 4'
  gem 'rake', '< 11'
elsif RUBY_VERSION >= '2.0'
  if RUBY_ENGINE == 'ruby'
    gem 'simplecov', '~> 0.7'
    gem 'coveralls', '~> 0.7'
  end
end

gemspec

# vim: syntax=ruby