summaryrefslogtreecommitdiff
path: root/Gemfile
blob: 747bc712163f0c83a911c614bd3f0b738a0b0caa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# vim: set ft=ruby:

source 'https://rubygems.org'

case ENV['JSON']
when 'ext', nil
  if ENV['RUBY_ENGINE'] == 'jruby'
    gemspec :name => 'json', :path => 'java'
  else
    gemspec :name => 'json'
  end
when 'pure'
  gemspec :name => 'json_pure'
end

gem 'simplecov'