Skip to content

Instantly share code, notes, and snippets.

@halida
Created March 12, 2012 02:44
Show Gist options
  • Save halida/2019392 to your computer and use it in GitHub Desktop.
Save halida/2019392 to your computer and use it in GitHub Desktop.
my gemfile
source 'http://rubygems.org'
gem 'rails', '3.2.2'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :assets do
# gem 'sass-rails', " ~> 3.1.0"
gem 'sass-rails', git: "https://github.com/rails/sass-rails.git", :branch => '3-2-stable'
gem 'coffee-rails', " ~> 3.2.0"
gem 'compass-rails'
gem 'uglifier'
gem 'therubyracer'
gem 'sprite-factory', '>= 1.4.0'
gem 'chunky_png'
end
# -------------------------------------------------
# functional
gem 'mysql2', '>= 0.3'
gem 'devise', '1.4.7'
gem "cancan"
gem 'rails_admin', :git => 'https://github.com/halida/rails_admin.git'
# image upload
gem 'carrierwave', '0.5.6'
gem 'mini_magick','3.3'
# -------------------------------------------------
# backend
gem 'acts-as-taggable-on'
gem 'redcarpet', '1.17.2'
gem 'gravatar-ultimate'
gem 'acts_as_commentable_with_threading', git: "https://github.com/elight/acts_as_commentable_with_threading.git"
gem 'will_paginate', '~> 3.0.pre2'
gem 'client_side_validations', :git => 'https://github.com/bcardarella/client_side_validations.git'
gem 'activemerchant'
gem 'sunspot_rails', '>= 1.2.1'
gem 'exception_notification'
gem "xml-simple"
gem 'oa-openid', :require => 'omniauth/openid'
gem 'twitter_oauth'
gem 'gmaps4rails', '~> 1.3.0'
gem 'geokit'
gem 'resque'
gem 'resque-scheduler'
# for strip uncessary strings
gem "auto_strip_attributes", "~> 2.0"
gem 'rails_autolink'
gem "truncate_html", "~> 0.5.4"
# for page view log
gem 'impressionist'
# -------------------------------------------------
# fontend gems
gem 'haml'
gem "actionmailer_inline_css"
# gem 'zfben_libjs', '~> 0.0.26'
gem "barista"
gem 'jquery-rails'
gem 'country_select'
gem 'jcrop-rails'
# -------------------------------------------------
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug'
# gem 'ruby-debug19', :require => 'ruby-debug'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development, :test do
gem 'sunspot_solr'
# gem 'webrat'
gem 'unicorn'
gem 'mail_view'
# gem "erb2haml"
# not display assets info in log
gem 'quiet_assets', git: 'https://github.com/AgilionApps/quiet_assets.git', tag: 'v0.1.0'
gem 'rspec'
gem 'rspec-rails', "~> 2.6"
gem "capybara"
gem 'guard-rspec'
gem 'factory_girl_rails'
gem 'database_cleaner', "~> 0.7.1"
gem 'guard'
gem 'guard-rake'
gem 'guard-livereload'
gem 'rack-livereload'
gem 'libnotify'
end
group :production do
gem 'newrelic_rpm'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment