-
Notifications
You must be signed in to change notification settings - Fork 13
/
Gemfile
66 lines (48 loc) · 1.14 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
source 'https://rubygems.org'
ruby '>= 2.4.4'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails'
gem 'pg', "~> 0.18"
gem 'puma'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'turbolinks'
gem 'jbuilder'
gem 'bootstrap'
gem 'font-awesome-sass', '~> 5.5.0'
gem 'high_voltage'
gem 'jquery-rails'
gem 'kaminari'
gem 'bootstrap4-kaminari-views'
gem 'bcrypt'
gem 'cocoon'
gem 'devise', git: 'https://github.com/plataformatec/devise'
gem 'omniauth'
gem 'omniauth-github'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'pundit'
gem 'aws-sdk'
gem 'paperclip'
gem 'awesome_print', require: 'ap'
gem 'devise-i18n'
gem 'redcarpet'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara'
gem 'selenium-webdriver'
gem 'rubocop', require: false
gem 'simplecov', :require => false
end
group :development do
gem 'web-console'
gem 'rails_real_favicon'
gem 'guard'
gem 'guard-minitest'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]