mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
update deps to support 1.8.7
This commit is contained in:
parent
5bf6050db7
commit
c3cd5dfb1c
2 changed files with 9 additions and 1 deletions
|
@ -2,14 +2,20 @@ source "https://rubygems.org" unless ENV['QUICK']
|
|||
gemspec
|
||||
|
||||
gem 'sinatra', :github => 'sinatra/sinatra'
|
||||
gem 'temple', :github => 'zzak/temple', :branch => 'sinatra-contrib-bug'
|
||||
gem 'temple', :github => 'zzak/temple', :branch => '0-6-patched'
|
||||
|
||||
group :development, :test do
|
||||
platform :ruby_18, :jruby do
|
||||
gem 'json'
|
||||
gem 'rdoc'
|
||||
end
|
||||
|
||||
platform :ruby do
|
||||
gem 'execjs', '2.0.0'
|
||||
gem 'nokogiri', '1.5.10'
|
||||
gem 'redcarpet', '2.3.0'
|
||||
gem 'slim', '2.1.0'
|
||||
gem 'liquid', '2.6.1'
|
||||
gem 'yajl-ruby'
|
||||
end
|
||||
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
require 'sinatra/json'
|
||||
require 'sinatra/base'
|
||||
|
||||
$KCODE = "UTF-8"
|
||||
|
||||
module Sinatra
|
||||
#
|
||||
# = Sinatra::RespondWith
|
||||
|
|
Loading…
Reference in a new issue