Skip to content

Instantly share code, notes, and snippets.

@osiro
Created May 1, 2014 04:04
Show Gist options
  • Save osiro/458713d474f9c85c8f59 to your computer and use it in GitHub Desktop.
Save osiro/458713d474f9c85c8f59 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '~> 3.1.0'
gem 'rack', '1.3.3'
# Rails extensions
gem 'derail', git: 'git://github.com/sj26/derail.git'
# PostgreSQL is for winners!
gem 'pg'
# Stop PostgreSQL being quite so chatty
gem 'silent-postgres'
# Easy postgresql text search
gem 'pg_search'
# JSON for 1.8.7
gem 'json', platform: :ruby_18
gem 'therubyracer'
gem 'sass-rails'
# Gems used only for assets and not required in production environments by default.
group :assets do
gem 'compass', '~> 0.12.alpha.0'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'jquery-rails'
# Views helpers
gem 'haml-rails'
gem 'nestive', git: 'git://github.com/sj26/nestive.git'
gem 'formtastic', '~> 2.0.0.rc4'
gem 'truncate_html'
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary' # May have to install manually
# active admin uses kaminari for pagination
# Authentication
gem 'devise'
# File uploads
gem 'carrierwave'
# Mini-magick for image processing with minimal overhead
gem 'mini_magick'
# Concise controllers
gem 'inherited_resources', :git => "git://github.com/josevalim/inherited_resources.git", :tag => "v1.2.2"
gem 'has_scope'
# Better handling of money data types
gem 'money'
# ActiveRecord sugar
gem 'squeel'
gem 'valium'
# For order and delivery state tracking
gem 'state_machine'
# For seeds file progress bars
gem 'progressbar', require: false
# Contact us form
gem 'mail_form'
# mail queuer
gem 'mailhopper'
# Billing via SecurePay
gem 'activemerchant'
# ActiveModel datetime validations and parsing
gem 'validates_timeliness'
# MailChimp API
gem 'gibbon'
# Sorting class for admin ajax sorting
gem 'acts_as_list'
# admin interface generator
gem 'activeadmin', :git => "git://github.com/gregbell/active_admin.git", :ref => "9bff2846d7db6081e4fdae0b2e6c6ce2218b6401"
# front end templating
gem 'liquid'
# scheduled tasks
gem 'rufus-scheduler'
# breadcrumbs
gem 'breadcrumbs_on_rails'
# URL parsing
gem 'addressable'
# sitemap
gem "sitemap_generator", "~> 3.0.0"
# Cache with redis
gem 'redis'
gem 'redis-store'
# Deployment
gem 'rvm', require: nil
gem 'tfg_cap', require: nil, git: '[email protected]:thefrontiergroup/tfg-cap.git'
gem 'airbrake'
group :test do
gem 'factory_girl_rails'
gem 'capybara', '~> 2.0'
gem "capybara-webkit", "0.14.2"
gem 'ffaker'
gem 'timecop' # for running time related specs
gem 'launchy'
gem 'database_cleaner'
end
group :development, :test do
# Debugging everywhere
# gem 'ruby-debug', platform: :ruby_18
# gem 'ruby-debug19', platform: :ruby_19, require: 'ruby-debug'
# Testing
gem 'rspec-rails', ">= 2.0.0.beta"
gem 'spork'
# Acceptance testing
# gem 'cucumber-rails'
# Continuous testing/building
gem 'growl'
gem 'guard-bundler'
gem 'ruby_gntp'
end
group :development do
gem 'rails-dev-boost', :git => 'git://github.com/thedarkone/rails-dev-boost.git', :require => 'rails_development_boost'
gem 'oink'
end
gem 'dalli'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment