Skip to content

Instantly share code, notes, and snippets.

@he9lin
Created May 26, 2012 14:19
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 he9lin/2794109 to your computer and use it in GitHub Desktop.
Save he9lin/2794109 to your computer and use it in GitHub Desktop.
Project Gemfile
source 'http://rubygems.org'
gem 'rails', '3.1.1'
group :assets do
gem 'sass-rails', '~> 3.1.4'
gem 'coffee-rails', '~> 3.1.1'
gem 'uglifier', '>= 1.0.3'
gem 'compass', "0.12.alpha"
end
gem 'jquery-rails'
# Authentication
gem 'bcrypt-ruby'
gem 'warden'
# gem 'omniauth', :git => 'git://github.com/intridea/omniauth.git', :branch => '0-3-stable'
gem 'omniauth-oauth'
gem 'omniauth-tqq'
# gem 'omniauth-weibo-oauth2'
gem 'omniauth-weibo'
gem 'omniauth-renren'
# Database
gem "mongoid", ">= 2.1.5"
gem "bson_ext", ">= 1.3.1"
gem "rspec-rails", ">= 2.8.1"
# API
gem "grape", :git => "git://github.com/intridea/grape.git", :branch => 'master'
# Geocoding
gem "geocoder", ">= 1.1.0"
# view
gem "kaminari"
# Payment
gem 'activemerchant', :require => 'active_merchant'
gem "activemerchant_patch_for_china"
gem 'xml-simple'
gem "state_machine", :git => "git://github.com/durran/state_machine.git", :branch => "mongoid-2.3-fixes"
#gem 'state_machine'
# Javascript testing
group :development, :test do
gem "jasmine"
end
# Pub
gem "thin"
gem "private_pub" # , :git => "git://github.com/heyook/private_pub.git"
# Setting
gem 'settingslogic', ">= 2.0.8"
# Apple Push Notification
gem 'apn_sender', :require => 'apn'
# Delay mail
gem 'resque_mailer'
# Test dependencies
gem "mail_view"
# Deploy
gem 'god'
gem 'powder'
gem 'whenever', :require => false
# weibo request
gem "httparty"
gem "nokogiri"
gem 'chinese_pinyin', '~> 0.4.1'
gem 'rmmseg-cpp', :git => "git://github.com/heyook/rmmseg-cpp.git"
gem 'hashie'
gem 'faye-redis', :git => "git://github.com/faye/faye-redis-ruby.git"
# monitoring
gem 'newrelic_rpm'
group :test do
# Time freeze
gem "timecop"
# BDD testing support
gem "database_cleaner", ">= 0.6.7"
# Continuous testing support
gem "guard", ">= 0.10.0"
gem "spork", "~> 0.9.0.rc"
# gem 'rb-fsevent', '0.9.0.pre4', :require => false if RUBY_PLATFORM =~ /darwin/i
gem "guard-rspec"
gem "guard-spork"
gem 'guard-coffeescript'
gem "factory_girl_rails", "~> 1.2.0"
gem "capybara", :git => 'git://github.com/jnicklas/capybara.git', :branch => 'master'
gem "capybara-webkit", '~> 0.7.0'
gem "launchy", ">= 2.0.5"
# Mongoid spec
gem "mongoid-rspec", ">= 1.4.4"
# Resque spec
gem 'resque_spec', '~> 0.6.6'
# Cucumber feature
gem 'turnip', '~> 0.3.1'
end
@loveybot
Copy link

Yay Ruby!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment