forked from Jeiwan/StackUnderflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
74 lines (69 loc) · 1.58 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
74
source 'https://rubygems.org'
gem 'rails', '4.1.5'
group :development, :test do
gem 'capistrano', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-rvm', require: false
gem 'capistrano-sidekiq', require: false
gem 'capistrano3-unicorn', require: false
gem 'capybara'
gem 'capybara-webkit'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'rspec-rails'
end
group :test do
gem "codeclimate-test-reporter", require: nil
gem 'json_spec'
gem 'shoulda-matchers'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'mailcatcher'
gem 'quiet_assets'
end
group :production do
gem 'rails_12factor'
end
gem 'active_model_serializers'
gem 'cancancan'
gem 'carrierwave'
gem 'cocoon'
gem 'coffee-rails'
gem 'devise'
gem 'doorkeeper'
gem 'dotenv'
gem 'dotenv-deployment', require: 'dotenv/deployment'
gem 'faker'
gem 'handlebars_assets'
gem 'jbuilder'
gem 'jquery-rails'
gem 'kaminari'
gem 'launchy'
gem 'less-rails'
gem 'mini_magick'
gem 'mysql2'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-github'
gem 'omniauth-twitter'
gem 'omniauth-vkontakte'
gem 'pg'
gem 'private_pub'
gem 'remotipart'
gem 'responders'
gem 'rubocop', require: false
gem 'sass-rails'
gem 'sidekiq'
gem 'sidetiq'
gem 'simple_form', git: 'https://github.com/plataformatec/simple_form'
gem 'sinatra', require: false
gem 'slim-rails'
gem 'therubyracer'
gem 'thin'
gem 'thinking-sphinx'
gem 'twitter-bootstrap-rails', git: 'git://github.com/seyhunak/twitter-bootstrap-rails.git', branch: 'bootstrap3'
gem 'uglifier'
gem 'unicorn'