Sha256: 88fb403a507c4f088128df5194af918fcb648cb47cf1d626529d251d093347aa

Contents?: true

Size: 1.86 KB

Versions: 1

Compression:

Stored size: 1.86 KB

Contents

source 'https://rubygems.org'

# Look in asciidoctor.gemspec for runtime and development dependencies
gemspec

group :development do
  ruby_version = Gem::Version.new RUBY_VERSION
  gem 'concurrent-ruby', '~> 1.0.0' unless ruby_version < (Gem::Version.new '1.9.3')
  if ruby_version < (Gem::Version.new '2.2.0')
    if ruby_version < (Gem::Version.new '2.1.0')
      if ruby_version < (Gem::Version.new '2.0.0')
        gem 'haml', '~> 4.0.0'
        if ruby_version < (Gem::Version.new '1.9.3')
          gem 'cucumber', '~> 1.3.0'
          gem 'nokogiri', '~> 1.5.0'
          gem 'slim', '~> 2.1.0'
          gem 'thread_safe', '0.3.6'
          gem 'tilt', '2.0.7'
        else
          gem 'nokogiri', '~> 1.6.0'
          gem 'slim', '<= 3.0.7'
        end
      else
        gem 'nokogiri', '~> 1.6.0'
      end
    else
      gem 'nokogiri', '~> 1.7.0' if Gem::Platform.local =~ 'x86-mingw32' || Gem::Platform.local =~ 'x64-mingw32'
      # pin nokogiri because XPath behavior changed on JRuby starting in 1.8.3 (see sparklemotion/nokogiri#1803)
      gem 'nokogiri', '1.8.2' if RUBY_ENGINE == 'jruby'
      gem 'racc', '~> 1.4.0' if RUBY_VERSION == '2.1.0' && RUBY_ENGINE == 'rbx'
    end
  else
    # pin nokogiri because XPath behavior changed on JRuby starting in 1.8.3 (see sparklemotion/nokogiri#1803)
    gem 'nokogiri', '1.8.2' if RUBY_ENGINE == 'jruby'
  end
end

group :doc do
  gem 'yard'
  gem 'yard-tomdoc'
end

# enable this group to use Guard for continuous testing
# after removing comments, run `bundle install` then `guard`
#group :guardtest do
#  gem 'guard'
#  gem 'guard-test'
#  gem 'libnotify'
#  gem 'listen', :github => 'guard/listen'
#end

group :ci do
  gem 'simplecov', '~> 0.14.1'
  if ENV['SHIPPABLE']
    gem 'simplecov-csv', '~> 0.1.3'
    gem 'ci_reporter', '~> 2.0.0'
    gem 'ci_reporter_minitest', '~> 1.0.0'
    #gem 'ci_reporter_cucumber', '~> 1.0.0'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
asciidoctor-1.5.8 Gemfile