forked from rubytaiwan/ruby-taiwan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
84 lines (76 loc) · 2.1 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
76
77
78
79
80
81
82
83
84
source 'http://rubygems.org'
gem "rails", "3.1.1"
gem "bson", "1.3.1"
gem "bson_ext", "1.3.1"
gem "mongoid", "2.2.4"
# 上传组件
gem 'carrierwave', '0.5.6'
gem 'carrierwave-mongoid', '0.1.2', :require => 'carrierwave/mongoid'
# 图像处理
gem 'mini_magick','3.3'
# Mongoid 辅助插件
gem 'mongo-rails-instrumentation','0.2.4'
# Mongoid 使用自增整形ID
gem 'mongoid_auto_increment_id', "0.2.2"
# 用户系统
gem 'devise', :git => 'git://github.com/plataformatec/devise.git'
# 分页
gem 'will_paginate', '3.0.pre2'
# 三方平台 OAuth 验证登陆
gem "omniauth"
gem 'omniauth-openid'
gem "omniauth-github"
gem "omniauth-twitter"
gem "omniauth-douban", :git => "git://github.com/xdite/omniauth-douban.git"
# Rails cache 存放到 Redis
gem 'dalli', '1.1.1'
# 搜索相关的组件
gem 'chinese_pinyin', '0.4.1'
gem "rmmseg-cpp-huacnlee", "0.2.8"
gem 'redis-search', '0.6.3'
# Rails I18n
gem "rails-i18n","0.1.8"
# Redis 命名空间
gem 'redis-namespace','~> 1.0.2'
# 将一些数据存放入 Redis
gem "redis-objects", "0.5.2"
# Markdown 格式
gem "redcarpet", "~> 2.0.0b5"
# HTML 处理
gem "nokogiri", "1.5.0"
gem "jquery-rails", "1.0.16"
# Auto link
gem "rails_autolink", ">= 1.0.4"
# YAML 配置信息
gem "settingslogic", "~> 2.0.6"
gem "cells", "3.6.7"
gem "resque", "~> 1.19.0", :require => "resque/server"
gem "resque_mailer", '2.0.2'
gem "aws-ses", "~> 0.4.3"
gem 'mail_view', :git => 'git://github.com/37signals/mail_view.git'
gem "daemon-spawn", "~> 0.4.2"
gem "unicorn"
# 用于组合小图片
gem "sprite-factory", "1.4.1"
gem 'simple_form', :git => 'git://github.com/plataformatec/simple_form.git'
gem 'bootstrap-rails', :require => 'bootstrap-rails',
:git => 'git://github.com/xdite/bootstrap-rails.git'
group :assets do
gem 'sass-rails', " ~> 3.1.4"
gem 'coffee-rails', "~> 3.1.1"
gem 'uglifier'
end
group :development do
gem 'capistrano', '2.9.0'
gem 'chunky_png', "1.2.5"
end
group :development, :test do
gem 'rspec-rails', '~> 2.7.0'
gem 'delorean'
gem 'database_cleaner'
gem 'ffaker'
end
group :test do
gem 'factory_girl_rails'
gem 'simplecov', :require => false
end