forked from huacnlee/quora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
75 lines (56 loc) · 1.41 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
source 'http://rubygems.org'
gem 'rails', '3.0.5'
# MongoDB
gem "mongoid", "2.0.0"
gem "bson", "1.2.4"
gem "bson_ext", "1.2.4"
gem 'mongo-rails-instrumentation'
gem "mongoid-eager-loading"
# gem "mongoid-sphinx-huacnlee", :path => "/Users/jason/work/mongoid-sphinx", :require => "mongoid_sphinx"
gem "mongoid-sphinx-huacnlee", :require => "mongoid_sphinx"
gem "mongoid_rails_migrations"
gem "redis"
# to_xs 方法,Mongoid-sphinx 需要
gem 'fast_xs'
# Vote 插件 for Mongoid
gem 'voteable_mongoid', "0.6.0"
# 用户系统
gem 'devise', '1.2.rc2'
# 邀请系统
gem 'devise_invitable', '0.4.rc5'
# 图片上传
gem 'carrierwave'
gem 'mini_magick'
# 分页
gem 'will_paginate', '3.0.pre'
gem 'memcache-client'
# OAuth
gem 'omniauth', '0.2.0'
gem "oa-openid", '0.2.0'
# gem "omniauth_china", :path => "/Users/jason/work/omniauth_china"
gem "omniauth_china", "0.0.6"
# 后台列表
# gem 'wice_grid', '3.0.0.pre1'
# 设置
gem 'settingslogic'
# 前端优化
gem 'smurf-huacnlee', :require => "smurf"
# 表单
gem 'simple_form', "1.3.1"
# 缓存管理
gem 'tagged-cache'
# PUT 颜色
gem 'colorize'
# 后台表格
gem 'mongoid_wice_grid', :require => "wice_grid"
# Crontab 辅助
gem 'whenever'
# AWS SES
gem "aws-ses", "0.4.2", :require => 'aws/ses'
# Background Jobs
gem "resque"
gem "resque_mailer"
# Comet
gem "juggernaut"
# Diff 内容并输出 HTML 格式
gem "htmldiff", :git => "git://github.com/huacnlee/htmldiff.git"