Skip to content

Instantly share code, notes, and snippets.

@jbnunn
Created August 14, 2013 23:20
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 jbnunn/6236753 to your computer and use it in GitHub Desktop.
Save jbnunn/6236753 to your computer and use it in GitHub Desktop.
Gemfile for app where Rails Panel isn't showing log info
source 'http://rubygems.org'
gem 'rails', '3.1.0'
gem 'unicorn'
gem "mongoid", "~> 2.4"
gem "bson_ext", "~> 1.5"
gem 'jquery-rails'
gem 'sorcery'
gem 'cancan'
gem 'twitter-bootstrap-rails', :git => 'http://github.com/seyhunak/twitter-bootstrap-rails.git'
gem 'twitter_bootstrap_form_for'
gem 'uuid'
gem 'resque'
gem 'resque-status'
gem 'redis'
gem 'redis-store', '1.0.0.beta4'
gem 'map'
gem 'aws-s3'
gem 's3_swf_upload', :git => 'git://github.com/nathancolgate/s3-swf-upload-plugin'
gem 'rabl'
gem 'httparty'
#gem 'twitter'
gem "klout", "~> 3.0.0"
gem 'mongoid-mapreduce'
gem 'heroku'
gem 'american_date'
gem 'awesome_print'
gem "easystats", "~> 0.3.2"
gem "json"
gem "rest-client"
gem "typhoeus", :git => "git://github.com/typhoeus/typhoeus"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'less-rails'
gem 'handlebars_assets'
gem 'sass-rails', " ~> 3.1.0"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
end
group :development, :test do
gem 'turn', :require => false # Pretty printed test output
# ruby-debug doesn't currently work with 1.9.3
gem "rspec-rails", "~> 2.6"
gem 'mongoid-rspec'
gem 'database_cleaner'
gem 'capybara'
gem 'watchr'
gem 'spork', '~> 0.9.0.rc'
gem 'factory_girl_rails'
gem 'capybara'
gem "json_spec", "~> 1.0.3"
gem 'meta_request' # For Chrome debugging, see https://github.com/dejan/rails_panel
end
group :test do
gem 'simplecov', :require => false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment