Created
May 26, 2012 14:19
-
-
Save he9lin/2794109 to your computer and use it in GitHub Desktop.
Project Gemfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yay Ruby!!