-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
50 lines (37 loc) · 848 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
source 'https://rubygems.org'
ruby ENV['CUSTOM_RUBY_VERSION'] || '2.1.0'
gem 'rails', '4.0.0'
group :production do
gem 'pg'
end
group :development do
# gem 'sqlite3'
gem 'pg'
end
group :test, :development do
gem 'rspec-rails'
gem 'factory_girl_rails', '~> 4.0'
end
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'bourbon'
gem 'backbone-on-rails'
# encrypt password
gem 'bcrypt-ruby', '~> 3.0.1', require: 'bcrypt'
# feed related gem
gem 'feedjira'
gem 'loofah'
gem 'unicorn-rails'
gem 'ruby-readability', :require => 'readability'
# cron task
gem 'whenever', :require => false
gem 'rails_12factor', group: :production
# for sharing
gem 'social-share-button'
gem 'omniauth'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'grape'