-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
66 lines (64 loc) · 1.42 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'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.5.1'
gem 'administrate'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'bootstrap', '~> 4.0.0'
gem 'jquery-rails'
gem 'bourbon'
gem 'foreman'
gem 'dotenv'
gem 'coffee-rails', '~> 4.2'
gem 'devise'
gem 'gibbon'
gem 'google-api-client'
gem 'high_voltage'
gem "mini_magick"
gem 'carrierwave', '~> 1.0'
gem 'jbuilder', '~> 2.5'
gem 'pg'
gem 'puma', '~> 3.11'
gem 'rails', '~> 5.2.0'
gem 'sass-rails', '~> 5.0'
gem 'simple_form'
gem 'slim-rails'
gem 'sprockets'
gem 'sucker_punch'
gem 'uglifier', '>= 1.3.0'
gem 'figaro'
gem 'enum_help'
gem 'excon'
gem 'gravatar_image_tag'
gem 'kaminari'
gem 'paperclip'
gem 'pundit'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'sendgrid'
gem 'semantic-ui-sass', github: 'doabit/semantic-ui-sass'
group :development do
gem 'annotate'
gem 'better_errors'
gem 'letter_opener'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'pry'
gem 'rails_layout'
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-rails'
end
group :test do
gem 'capybara', '>= 2.15', '< 4.0'
gem 'chromedriver-helper'
gem 'database_cleaner'
gem 'launchy'
gem 'selenium-webdriver'
end
gem 'sidekiq'
gem 'sidekiq-status'