source 'https://rubygems.org'

gemspec

gem 'rake'

gem 'introspection', '~> 0.0.1'

# Avoid breaking change in psych v4 (https://bugs.ruby-lang.org/issues/17866)
if RUBY_VERSION >= '3.1.0'
  gem 'psych', '< 4'
end

if RUBY_VERSION >= '2.2.0'
  # No test libraries in standard library
  gem 'minitest'
end
