-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (37 loc) · 901 Bytes
/
Copy pathGemfile
File metadata and controls
42 lines (37 loc) · 901 Bytes
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
# frozen_string_literal: true
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
ruby '2.5.3'
gem 'bootstrap', '~> 4.1.2'
gem 'bootstrap-datepicker-rails'
gem 'cancancan', '~> 2.0'
gem 'carrierwave', '~> 1.2.2'
gem 'coffee-rails', '~> 4.2'
gem 'devise'
gem 'fog-aws'
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails'
gem 'mini_magick'
gem 'pg'
gem 'puma', '~> 3.12'
gem 'rails', '~> 5.1.4'
gem 'sass-rails', '~> 5.0'
gem 'sprockets-rails'
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'factory_bot_rails'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rails-controller-testing'
gem 'rspec-rails', '~> 3.8'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'listen'
gem 'web-console', '>= 3.3.0'
end