travis-web/Gemfile
Randy Morgan c4bfc7b1d7 Added i18n web filters and rake task for pulling the translations down from localeapp
You will need to set ENV['LOCALEAPP'] to the secret key to run the
update. Contact randym if you need it.
2012-11-22 20:47:38 +09:00

36 lines
604 B
Ruby

ruby '1.9.3' rescue nil
source :rubygems
gem 'puma'
gem 'rack-ssl', '~> 1.3'
gem 'rack-cache'
gem 'sinatra'
group :assets do
gem 'rake-pipeline', github: 'livingsocial/rake-pipeline'
gem 'rake-pipeline-web-filters', github: 'randym/rake-pipeline-web-filters'
gem 'coffee-script'
gem 'compass'
gem 'tilt'
gem 'uglifier'
end
group :development, :test do
gem 'rake', '~> 0.9.2'
gem 'localeapp'
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