-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
83 lines (63 loc) · 1.73 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
75
76
77
78
79
80
81
82
83
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.0'
gem 'rails', '~> 6.0.2', '>= 6.0.2.2'
gem 'puma', '~> 4.1'
gem 'sass-rails', '>= 6'
gem 'webpacker', '~> 4.0'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.7'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'pg'
gem 'dotenv-rails'
gem 'devise'
# gem 'bootstrap-sass'
gem 'bootstrap', '~> 4.5.3'
# gem 'active_bootstrap_skin'
gem 'country_select'
gem 'apartment', :github => 'influitive/apartment', :ref => 'f266f73e58835f94e4ec7c16f28443fe5eada1ac'
gem 'carrierwave'
gem 'mini_magick'
gem 'fog-aws'
gem 'httparty'
gem 'paper_trail'
group :production, :staging do
gem 'asset_sync'
end
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'pry'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'capistrano', '~> 3.14', require: false
gem 'capistrano-rails', '~> 1.4', require: false
gem 'capistrano-rvm'
gem 'capistrano-passenger'
gem 'ed25519'
gem 'bcrypt_pbkdf'
gem 'rubocop', '~> 0.92.0', require: false
end
group :test do
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
gem 'webdrivers'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'ransack', '~> 2.3'
gem 'responders', '~> 3.0'
gem 'simple_form', '~> 5.2'
gem 'kaminari', '~> 1.2'
gem 'acts_as_paranoid', '~> 0.8.1'
gem 'inherited_resources', '~> 1.13'
gem 'pundit', '~> 2.3'
gem 'enumerize', '~> 2.7'
gem 'caxlsx', '~> 3.0'
gem 'ahoy_email', '1.0.3'
gem 'redis', '~> 4.0'
gem 'whenever', '~> 1.0'
gem 'appsignal', '~> 3.4'