sinatra/Gemfile

66 lines
1.3 KiB
Ruby
Raw Normal View History

2011-02-18 04:26:42 -05:00
# Why use bundler?
2011-02-26 11:06:11 -05:00
# Well, not all development dependencies install on all rubies. Moreover, `gem
2011-02-18 04:26:42 -05:00
# 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`.
#
2011-02-21 08:05:02 -05:00
# If you have issues with a gem: `bundle install --without-coffee-script`.
2011-02-18 04:26:42 -05:00
2011-02-21 05:54:26 -05:00
RUBY_ENGINE = 'ruby' unless defined? RUBY_ENGINE
2013-03-07 20:43:46 -05:00
source 'https://rubygems.org' unless ENV['QUICK']
2011-09-02 16:54:49 -04:00
gemspec
2011-02-18 04:26:42 -05:00
gem 'rake'
2015-09-13 00:13:54 -04:00
gem 'rack', github: 'rack/rack'
gem 'rack-test', '>= 0.6.2'
gem "minitest", "~> 5.0"
gem 'tool', '~> 0.2'
2011-02-18 04:26:42 -05:00
if RUBY_ENGINE == 'jruby'
gem 'nokogiri', '!= 1.5.0'
2012-05-13 16:32:18 -04:00
gem 'trinidad'
end
2011-05-20 08:17:59 -04:00
if RUBY_ENGINE == "ruby"
gem 'less', '~> 2.0'
gem 'mini_racer'
gem 'redcarpet'
gem 'wlang', '>= 2.0.1'
gem 'bluecloth'
gem 'rdiscount'
gem 'RedCloth'
2012-03-18 08:25:35 -04:00
gem 'puma'
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'
2016-01-31 06:51:16 -05:00
gem 'reel-rack'
gem 'celluloid', '~> 0.16.0'
2011-02-18 04:26:42 -05:00
end
if RUBY_ENGINE == "rbx"
gem 'json'
gem 'rubysl'
gem 'rubysl-test-unit'
end
2012-05-13 14:59:49 -04:00
platforms :jruby do
gem 'json'
end