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

source 'https://rubygems.org'

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

gem "rake"
gem "test-unit"