travis-web/Gemfile
Randy Morgan 082fac9185 Added handlebars template scraping and localeapp reporting
Specified handlebars templates will be parsed for {{t some.key}}. Any
translations keys that are not found in the configured i18n YAML will
be reported to the configured localeapp backend via the localeapp api.
2012-12-02 16:50:52 +09:00

38 lines
658 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: 'wycats/rake-pipeline-web-filters'
gem 'rake-pipeline-i18n-filters'
gem 'coffee-script'
gem 'compass'
gem 'tilt'
gem 'uglifier'
end
group :development, :test do
gem 'rake', '~> 0.9.2'
gem 'localeapp'
gem 'handlebars'
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