forked from gazeldx/mystory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·35 lines (31 loc) · 1.66 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
#source 'http://rubygems.org'
source 'http://ruby.taobao.org'
gem 'rails', '3.2.11'
gem 'sass-rails', '~> 3.2.3'# Sass adapter for the Rails asset pipeline.
group :assets do
gem 'coffee-rails', '~> 3.2.1'# Coffee Script adapter for the Rails asset pipeline.
gem 'uglifier', '>= 1.0.3'# Ruby wrapper for UglifyJS JavaScript compressor
end
gem 'jquery-rails'# This gem provides jQuery and the jQuery-ujs driver for your Rails 3 application.
gem 'haml', '3.1.4'# 简化html的写法 http://haml.info/
gem "slim", "~> 1.1.0"# 简化html的写法 http://slim-lang.com/
gem "formtastic"# 用于简化form
#gem 'devise'# For authentication
gem 'therubyracer', "~> 0.9.9"# Call JavaScript code and manipulate JavaScript objects from Ruby. Call Ruby code and manipulate Ruby objects from JavaScript.
gem 'unicorn', '4.1.1'# Web Server
gem "rest-client", "~> 1.6.7"# https://github.com/archiloque/rest-client
gem "pg", '0.11.0'# For Postgresql Database
gem "mini_magick", "~> 3.3"# 图片处理,如生成缩略图
gem "carrierwave", "0.6.2"# 用于上传文件或图片
gem "carrierwave-upyun", "~> 0.1.3"# 提供CarrierWave的UpYun存储支持
gem 'will_paginate', '~> 3.0'# 分页
gem "acts_as_follower"# 关注功能
gem "settingslogic", "~> 2.0.6"# 将配置文件生成为Object或Hash,方便程序使用.见对config.yml的处理。
gem "aws-ses", "~> 0.4.4", :require => 'aws/ses'# 用Amazon的邮件服务SES发送邮件
gem "weibo_2"# 支持weibo.com的同步和登录等
#gem 'books'
gem 'books', :git => "git://github.com/gazeldx/books.git"
# gem 'books', path: "~/books"# This is for your development.
gem 'github-markdown', :require => 'github/markdown'
gem 'grape'
# gem 'helios'