-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
53 lines (37 loc) · 870 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '>= 3.2'
gem 'pg'
gem 'twitter-bootstrap-rails'
# Gems used only for assets and not required
# in production environments by default
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'less'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platform => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'jquery-ui-rails'
end
gem 'jquery-rails'
gem 'bcrypt-ruby'
# To use debugger
gem 'debugger'
# To validate form dynamically
gem "simple_form"
gem 'client_side_validations'
gem 'client_side_validations-simple_form'
gem "cocoon"
# user management
gem 'warden'
# clip images
gem 'rmagick'
gem 'carrierwave'
gem 'remotipart', '~> 0.4'
gem 'RedCloth'
gem 'sanitize'
gem 'redactor-rails'
# omniauth
gem 'omniauth-weibo-oauth2'
gem "private_pub"
gem "thin"