File: Gemfile

package info (click to toggle)
ruby-json 2.3.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 940 kB
  • sloc: ansic: 3,388; java: 3,162; ruby: 2,768; sh: 37; makefile: 10
file content (14 lines) | stat: -rw-r--r-- 241 bytes parent folder | download
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