-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
43 lines (37 loc) · 1008 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
37
38
39
40
41
42
43
source 'https://rubygems.org'
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', '~> 6.0'
gem 'activerecord-session_store'
gem 'bcrypt', '~> 3.1.7'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'bootstrap-sass', '~> 3.3.6'
gem 'coffee-rails', '~> 4.2'
gem 'jbuilder', '~> 2.7'
gem 'jquery-rails'
gem 'kaminari'
gem 'puma', '~> 4.1'
gem 'sass-rails', '~> 6.0'
gem 'sqlite3', '~> 1.4'
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara', '~> 2.15'
gem 'factory_bot_rails'
gem 'faker'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-rails', '~> 4.0.0.beta'
gem 'webdrivers'
end
group :development do
gem 'letter_opener_web'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
gem 'admin', path: 'admin'