forked from caok/books-share
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Gemfile
73 lines (67 loc) · 1.5 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
# source 'https://rubygems.org'
source 'http://ruby.taobao.org/'
gem 'rails', '3.2.13'
gem 'mysql2', '0.3.13'
gem 'slim-rails'
gem 'kaminari'
gem 'nokogiri'
gem 'simple_form'
gem 'client_side_validations'
gem 'client_side_validations-simple_form'
gem 'devise'
gem 'cancan'
gem 'acts_as_follower'
gem 'angularjs-rails'
gem 'settingslogic'
# attachment
gem 'carrierwave', "~> 0.9.0"
gem 'mini_magick'
gem 'mime-types'
gem 'carrierwave-qiniu'
gem 'qiniu-rs'
# tag
gem 'acts-as-taggable-on'
# fulltext search
gem 'thinking-sphinx'
# douban book api
gem "mini-douban", "~> 0.0.5"
# create pretty URL
gem 'friendly_id'
# for github login
gem 'omniauth-github'
# DelayedJob
gem "delayed_job_active_record", "~> 4.0.0"
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'jquery-rails'
gem 'uglifier', '>= 1.0.3'
gem 'turbo-sprockets-rails3'
gem 'bootstrap-sass'
#gem 'therubyracer', :platforms => :ruby #Recommended to install Node.js, without therubyracer
end
group :development do
gem 'awesome_print'
gem 'thin'
gem 'pry-debugger'
gem 'quiet_assets'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'capistrano'
end
group :development, :test do
gem 'rspec-rails'
gem 'jasmine'
gem 'factory_girl_rails'
gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git'
end
group :test do
gem 'capybara'
gem 'simplecov', require: false
end
group :production do
#gem 'pg'
gem 'exception_notification'
gem 'unicorn', :platforms => :ruby
end