Skip to content

Instantly share code, notes, and snippets.

@ch3stnut
Created February 10, 2014 08:08
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 ch3stnut/b823200c71faaf469a09 to your computer and use it in GitHub Desktop.
Save ch3stnut/b823200c71faaf469a09 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
# Backend
# Rails 4
gem 'rails', '4.0.2'
# Postgres gem for special postgresql feature support
gem 'pg', '0.17.1'
# Use thin as the app server
gem 'thin', '1.6.1'
# Multi-tenancy
gem 'apartment', '0.23.0'
# For Rails 4
gem 'sprockets-rails', '2.0.1'
# All CKEditor gems. We will use carrierwave for file uploads
gem 'ckeditor', '4.0.9'
gem 'carrierwave', '0.9.0'
gem 'mini_magick', '3.7.0'
# Views
gem 'jquery-rails', '3.0.4'
gem 'jquery-ui-rails', github: 'joliss/jquery-ui-rails', branch: 'rails-4.0.2'
gem 'bootstrap-sass', '3.0.2.1'
# Country Selection
gem 'carmen-rails', '1.0.0'
# Color picker
gem 'jquery-minicolors-rails', '2.1.1'
# Models
# To use has_secure_password
gem 'bcrypt-ruby', '3.1.2'
# Validate existence (of belongs_to association)
gem 'validates_existence', '0.9.2'
# Assets
# SASS and Coffee
gem 'sass-rails', '4.0.1'
gem 'coffee-rails', '4.0.1'
# Uglifier for less transmitted data
gem 'uglifier', '2.4.0'
# Development
group :development do
# As long as we haven't got a nice name for this app...
gem 'rename', '1.0.2'
# Model annotation
gem 'annotate', '2.6.1'
end
group :test do
gem 'capybara', '2.2.1'
gem 'spork-rails', '4.0.0'
end
group :development, :test do
gem 'rspec-rails', '2.14.1'
gem 'faker', '1.2.0'
gem 'factory_girl_rails', '4.3.0'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment