Skip to content

Instantly share code, notes, and snippets.

@pkrnjevic
Created March 15, 2012 02:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pkrnjevic/2041325 to your computer and use it in GitHub Desktop.
Save pkrnjevic/2041325 to your computer and use it in GitHub Desktop.
Sample Gemfile supporting ruby 1.9.3-p125 and mysql2 working with mariadb-5.3.5
source 'https://rubygems.org'
gem 'rails', '3.2.1'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
#gem 'pg'
gem 'mysql2'
# 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 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'activeadmin'
# 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-debug19', :require => 'ruby-debug'
group :development, :test do
gem 'pry'
gem 'minitest'
gem 'miniskirt'
gem 'capybara'
gem 'mocha'
gem 'turn'
end
#
# ================= End of Gemfile =====================
#
# This is what was included by bundler (listed since I didn't specify versions in Gemfile)
#
# Gems included by the bundle:
# * actionmailer (3.2.1)
# * actionpack (3.2.1)
# * activeadmin (0.4.3)
# * activemodel (3.2.1)
# * activerecord (3.2.1)
# * activeresource (3.2.1)
# * activesupport (3.2.1)
# * ansi (1.4.2)
# * arel (3.0.2)
# * bcrypt-ruby (3.0.1)
# * bourbon (1.4.0)
# * builder (3.0.0)
# * bundler (1.1.1)
# * capybara (1.1.2)
# * childprocess (0.3.1)
# * coderay (1.0.5)
# * coffee-rails (3.2.2)
# * coffee-script (2.2.0)
# * coffee-script-source (1.2.0)
# * devise (2.0.4)
# * erubis (2.7.0)
# * execjs (1.3.0)
# * fastercsv (1.5.4)
# * ffi (1.0.11)
# * formtastic (2.1.1)
# * has_scope (0.5.1)
# * hike (1.2.1)
# * i18n (0.6.0)
# * inherited_resources (1.3.1)
# * journey (1.0.3)
# * jquery-rails (2.0.1)
# * json (1.6.5)
# * kaminari (0.13.0)
# * mail (2.4.3)
# * meta_search (1.1.3)
# * metaclass (0.0.1)
# * method_source (0.7.1)
# * mime-types (1.17.2)
# * miniskirt (1.1.1)
# * minitest (2.10.0)
# * mocha (0.10.5)
# * multi_json (1.1.0)
# * mysql2 (0.3.11)
# * nokogiri (1.5.2)
# * orm_adapter (0.0.6)
# * polyamorous (0.5.0)
# * polyglot (0.3.3)
# * pry (0.9.8.4)
# * rack (1.4.1)
# * rack-cache (1.2)
# * rack-ssl (1.3.2)
# * rack-test (0.6.1)
# * rails (3.2.1)
# * railties (3.2.1)
# * rake (0.9.2.2)
# * rdoc (3.12)
# * responders (0.8.0)
# * rubyzip (0.9.6.1)
# * sass (3.1.15)
# * sass-rails (3.2.4)
# * selenium-webdriver (2.20.0)
# * slop (2.4.4)
# * sprockets (2.1.2)
# * thor (0.14.6)
# * tilt (1.3.3)
# * treetop (1.4.10)
# * turn (0.9.3)
# * tzinfo (0.3.32)
# * uglifier (1.2.3)
# * warden (1.1.1)
# * xpath (0.1.4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment