-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
36 lines (32 loc) · 831 Bytes
/
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby IO.read('.ruby-version').strip
gem 'activerecord-postgis-adapter'
gem 'awesome_print'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'name_of_person'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 4.1'
gem 'pundit'
gem 'rails', '~> 6.0.3', '>= 6.0.3.2'
gem 'redis', '~> 4.0'
gem 'sidekiq'
gem 'slim-rails'
gem 'turbolinks', '~> 5'
gem 'typhoeus'
gem 'view_component'
gem 'webpacker', '~> 4.0'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-rails', '~> 4.0.1'
end
group :development do
gem 'annotate'
gem 'listen', '~> 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end