Created
January 24, 2013 04:25
-
-
Save vaskoz/4617630 to your computer and use it in GitHub Desktop.
Base Gemfile to run both MRI Ruby and Torquebox JRuby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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