summaryrefslogtreecommitdiff
path: root/Gemfile
blob: a90dd9d271421c56d2954761f5135128c0297447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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"
gem "all_images", "~> 0"