-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
59 lines (53 loc) · 1.12 KB
/
Gemfile
File metadata and controls
59 lines (53 loc) · 1.12 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
source 'https://rubygems.org'
ruby '2.7.2'
gem 'rails', '6.0.4.1'
gem 'actionview'
gem 'bcrypt'
gem 'faker'
gem 'carrierwave'
gem 'mini_magick'
gem 'bootstrap-sass'
gem 'puma'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder'
gem 'bootsnap', require: false
gem 'nokogiri'
gem 'omniauth'
gem 'omniauth-twitter'
gem 'dotenv-rails'
gem 'activerecord-import'
gem 'whenever'
gem 'font-awesome-sass'
gem 'omniauth-rails_csrf_protection'
gem 'sidekiq'
gem 'kaminari'
gem 'kaminari-bootstrap', '~> 3.0.1'
gem 'pg'
gem 'jb'
gem 'rack-cors'
gem 'firebase-auth-rails'
gem 'faraday'
group :development, :test do
gem 'byebug', '9.0.6', platform: :mri
gem 'capybara'
gem 'selenium-webdriver'
end
group :development do
gem 'web-console'
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
end
group :test do
gem 'rails-controller-testing'
gem 'minitest'
gem 'minitest-reporters'
gem 'guard'
gem 'guard-minitest'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]