Sha256: 4088a7453195e16ba86125728354068d32fd1c81bb9ca2f1b27fab5d48f16696

Contents?: true

Size: 705 Bytes

Versions: 4

Compression:

Stored size: 705 Bytes

Contents

source 'https://rubygems.org'

git_source(:github) do |repo_name|
  repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
  "https://github.com/#{repo_name}.git"
end

# Specify your gem's dependencies in hamlit.gemspec
gemspec

if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.2.2')
  gem 'rack', '< 2'
end

gem 'benchmark-ips', '2.3.0'
gem 'maxitest'

if /java/ === RUBY_PLATFORM # JRuby
  gem 'pandoc-ruby'
else
  gem 'pry-byebug'
  gem 'redcarpet'

  if RUBY_PLATFORM !~ /mswin|mingw/ && RUBY_ENGINE != 'truffleruby'
    if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.7.0') # Travis cannot compile ruby.h with C++
      gem 'faml'
    end
    gem 'stackprof'
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hamlit-2.9.5-java Gemfile
hamlit-2.9.4-java Gemfile
hamlit-2.9.5 Gemfile
hamlit-2.9.4 Gemfile