Skip to content

Instantly share code, notes, and snippets.

@ArionHardison
Created October 17, 2012 22:56
Show Gist options
  • Save ArionHardison/3908849 to your computer and use it in GitHub Desktop.
Save ArionHardison/3908849 to your computer and use it in GitHub Desktop.
source 'http://railskits.com/gems/346f847f-17aa-a61c-2a1c-5b88d306fb88'
source 'http://rubygems.org'
gem 'rails', "3.2.8"
gem 'jquery-rails'
gem "pg"
gem "airbrake" # exception reporting
gem "inherited_resources"
gem "will_paginate"
gem "haml-rails"
gem "less"
gem "thin"
gem "simple_form"
gem "gon" # something a/ js and rails
gem "client_side_validations"
gem 'address_standardization'
# this is the engine that we use to support all of our api shit
gem 'rails3_acts_as_paranoid' , :git => "git://github.com/goncalossilva/rails3_acts_as_paranoid.git"
gem 'ssl_requirement' #TODO replace with http://apidock.com/rails/ActionController/ForceSSL/ClassMethods/force_ssl
gem "devise_oauth2_providable", :git => "git://github.com/socialcast/devise_oauth2_providable.git" # API
gem 'devise-encryptable'
gem 'devise'
gem 'saas-kit'
gem "stripe" # payments
gem "heroku", :require => false
# gem "redis" # redis
gem "cancan" # user permissions
gem "best_in_place" # inline editing
gem "uuidtools" # no idea
gem "geocoder" # address and loc
gem "resque" # redis queues
gem "carmen" # states, country drop down
gem 'friendly_id'
gem "wicked"
gem "carrierwave" # upload photos
gem 'doorkeeper' # OAuth 2 provider
gem "yajl-ruby" # blazing fast parser
gem "asin" # amazon
gem "pusher" # web sockets
gem "merit" # Reputation system
gem 'amazon-ecs'
group :assets do
gem 'coffee-rails'
gem 'sass-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'brakeman'
gem 'quiet_assets'
gem 'rails-dev-tweaks'
gem 'sextant'
end
group :test, :development do
gem "debugger"
gem 'rspec-rails'
end
group :test do
gem 'webrat'
gem 'factory_girl_rails'
gem 'faker'
gem 'mocha'
gem "capybara"
gem "cucumber-rails"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment