travis-web/Gemfile
Martin Charles fb8655769e Fixed Caching and Cleaned up Old Caching
Caching was broken for many reasons:
* Puma calls `Travis::Web::App.initilize` multiple times. This caused
the server start time to be incorrect, breaking caching.
* The `Date` HTTP header was missing. This caused some browsers to fail to cache
assets.
* The `ETag` was incorrectly formatted.

Some other things which were changed:
* Removed `Rack::Cache`
2014-05-21 11:50:09 -04:00

37 lines
631 B
Ruby

source 'http://rubygems.org'
ruby '2.1.2'
gem 'puma'
gem 'rack-ssl', '~> 1.3'
gem 'rack-protection', '~> 1.3'
gem 'rack-mobile-detect'
gem 'sinatra'
gem 'rake-pipeline', github: 'livingsocial/rake-pipeline'
gem 'rake-pipeline-web-filters', github: 'wycats/rake-pipeline-web-filters'
gem 'coffee-script'
gem 'compass'
gem 'tilt'
gem 'uglifier'
gem 'yui-compressor'
gem 'libv8', '~> 3.16.0'
group :development, :test do
gem 'rake'
end
group :development do
# gem 'debugger'
gem 'foreman'
gem 'rerun'
gem 'guard'
gem 'rb-fsevent', '~> 0.9.1'
end
group :test do
gem 'rspec', '~> 2.11'
gem 'sinatra-contrib'
end