Skip to content

Instantly share code, notes, and snippets.

@yaroslav-ilin
Created February 13, 2012 07:04
Show Gist options
  • Save yaroslav-ilin/1814519 to your computer and use it in GitHub Desktop.
Save yaroslav-ilin/1814519 to your computer and use it in GitHub Desktop.
Universal Rails Gemfile
source :rubygems
gem 'russian'
gem 'rails', '3.2.1'
group :development, :test do
platforms :ruby do
gem 'sqlite3'
end
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
end
end
group :production do
platforms :ruby do
gem 'pg'
gem 'mysql'
end
platforms :jruby do
gem 'activerecord-jdbcpostgresql-adapter'
gem 'activerecord-jdbcmysql-adapter'
end
end
gem 'json'
group :assets do
gem 'sass-rails'
# gem 'coffee-rails'
gem 'uglifier'
end
gem 'jquery-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment