Skip to content

Instantly share code, notes, and snippets.

@vaskoz
Created January 24, 2013 04:25
Show Gist options
  • Save vaskoz/4617630 to your computer and use it in GitHub Desktop.
Save vaskoz/4617630 to your computer and use it in GitHub Desktop.
Base Gemfile to run both MRI Ruby and Torquebox JRuby
source 'https://rubygems.org'
gem 'rails', '3.2.11'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
platform :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
gem 'jruby-openssl'
gem "torquebox", "2.x.incremental.1334"
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyrhino', platforms: [:jruby]
gem 'therubyracer', platforms: [:ruby]
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment