Sha256: 875956683b2920e6e35ce22cf1321841472036e8fbe68c904479b355f811c122

Contents?: true

Size: 1.77 KB

Versions: 16

Compression:

Stored size: 1.77 KB

Contents

# Why use bundler?
# Well, not all development dependencies install on all rubies. Moreover, `gem
# install sinatra --development` doesn't work, as it will also try to install
# development dependencies of our dependencies, and those are not conflict free.
# So, here we are, `bundle install`.
#
# If you have issues with a gem: `bundle install --without-coffee-script`.

RUBY_ENGINE = 'ruby' unless defined? RUBY_ENGINE
source 'https://rubygems.org' unless ENV['QUICK']
gemspec

gem 'rake'
gem 'rack-test', '>= 0.6.2'
gem "minitest", "~> 5.0"

# Allows stuff like `tilt=1.2.2 bundle install` or `tilt=master ...`.
# Used by the CI.
repos  = {'tilt' => "rtomayko/tilt", 'rack' => "rack/rack"}

%w[tilt rack].each do |lib|
  dep = case ENV[lib]
        when 'stable', nil then nil
        when /(\d+\.)+\d+/ then "~> " + ENV[lib].sub("#{lib}-", '')
        else {:github => repos[lib], :branch => dep}
        end
  gem lib, dep
end

if RUBY_ENGINE == 'jruby'
  gem 'nokogiri', '!= 1.5.0'
  gem 'jruby-openssl'
  gem 'trinidad'
end

if RUBY_ENGINE == "ruby" and RUBY_VERSION > '1.9.2'
  gem 'less', '~> 2.0'
  gem 'therubyracer'
  gem 'redcarpet'
  gem 'wlang', '>= 2.0.1'
  gem 'bluecloth'
  gem 'rdiscount'
  gem 'RedCloth'
  gem 'puma'
  gem 'net-http-server'
  gem 'yajl-ruby'
  gem 'nokogiri'
  gem 'thin'
  gem 'slim', '~> 2.0'
  gem 'coffee-script', '>= 2.0'
  gem 'rdoc'
  gem 'kramdown'
  gem 'maruku'
  gem 'creole'
  gem 'wikicloth'
  gem 'markaby'
  gem 'radius'
  gem 'asciidoctor'
  gem 'liquid'
  gem 'stylus'
  gem 'rabl'
  gem 'builder'
  gem 'erubis'
  gem 'haml', '>= 3.0'
  gem 'sass'
end

if RUBY_ENGINE == "rbx"
  gem 'json'
  gem 'rubysl'
  gem 'rubysl-test-unit'
end

platforms :ruby_18, :jruby do
  gem 'json' unless RUBY_VERSION > '1.9' # is there a jruby but 1.8 only selector?
end

Version data entries

16 entries across 16 versions & 7 rubygems

Version Path
logstash-input-salesforce-3.0.0 vendor/jruby/1.9/gems/sinatra-1.4.7/Gemfile
arcabouco-0.2.13 vendor/bundle/gems/sinatra-1.4.7/Gemfile
ivanvc-logstash-input-s3-3.1.1.4 vendor/local/gems/sinatra-1.4.7/Gemfile
ivanvc-logstash-input-s3-3.1.1.3 vendor/local/gems/sinatra-1.4.7/Gemfile
ivanvc-logstash-input-s3-3.1.1.2 vendor/local/gems/sinatra-1.4.7/Gemfile
logstash-filter-delta-1.1.0 vendor/bundle/jruby/2.2.0/gems/sinatra-1.4.7/Gemfile
logstash-filter-delta-1.0.1 vendor/bundle/jruby/2.2.0/gems/sinatra-1.4.7/Gemfile
logstash-filter-base64-1.0.4 vendor/bundle/jruby/2.2.0/gems/sinatra-1.4.7/Gemfile
logstash-filter-base64-1.0.3 vendor/bundle/jruby/2.2.0/gems/sinatra-1.4.7/Gemfile
logstash-filter-delta-1.0.0 vendor/bundle/jruby/2.2.0/gems/sinatra-1.4.7/Gemfile
logstash-filter-base64-1.0.2 vendor/bundle/jruby/2.3.0/gems/sinatra-1.4.7/Gemfile
logstash-filter-base64-1.0.1 vendor/bundle/jruby/2.3.0/gems/sinatra-1.4.7/Gemfile
logstash-filter-base64-1.0.0 vendor/bundle/jruby/2.3.0/gems/sinatra-1.4.7/Gemfile
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/sinatra-1.4.7/Gemfile
sinatra-1.4.7 Gemfile
sinatra-1.4.6 Gemfile