This repository was archived by the owner on May 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
110 lines (91 loc) · 1.95 KB
/
Copy pathGemfile
File metadata and controls
110 lines (91 loc) · 1.95 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
source 'https://rubygems.org'
ruby '2.3.0'
gem 'rails', '4.2.6'
gem 'pg', '~> 0.15'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem "responders"
gem 'rubocop', require: false
# layout
gem "slim"
gem "slim-rails"
gem "therubyracer" # compile coffee while deployment
gem "less-rails"
gem "twitter-bootstrap-rails"
gem 'formtastic'
gem 'cocoon'
gem "font-awesome-rails"
gem 'turbolinks'
gem 'jquery-turbolinks'
gem 'will_paginate', '~> 3.1.0'
gem 'faker'
# json
gem 'active_model_serializers'
gem 'oj'
gem 'oj_mimic_json'
# upload
gem 'carrierwave'
gem 'remotipart'
# readltime
gem 'private_pub'
gem 'thin'
# authentication
gem 'devise'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem 'pundit'
gem 'doorkeeper'
# parallelization
gem 'sidekiq'
gem 'sinatra', '>= 1.3.0', require: nil
# cron
# gem 'sidetiq'
gem 'whenever'
# search
gem 'mysql2'
gem 'thinking-sphinx'
# deploy
gem 'dotenv'
gem 'dotenv-deployment', require: 'dotenv/deployment'
gem 'unicorn'
# cache
gem 'redis-rails'
group :test do
gem 'shoulda-matchers', '~> 3.1'
gem 'pundit-matchers', '~> 1.1.0'
gem 'capybara'
gem 'capybara-json'
gem 'capybara-email'
gem 'json_spec'
gem 'launchy'
end
group :development, :test do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'byebug'
gem 'poltergeist'
gem "letter_opener"
# workflow
gem 'guard-rails'
gem 'guard-livereload', '~> 2.5', require: false
gem 'guard-redis'
gem 'guard-sidekiq'
# deploy
gem 'capistrano', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-rbenv', require: false
gem 'capistrano-sidekiq', require: false
gem 'capistrano3-unicorn', require: false
end
group :development do
gem 'web-console', '~> 2.0'
gem 'spring'
gem 'pry-rails'
end