blob: 8fe591e03441e0baa637aa0d4ebf9e16bc06f1fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 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
|