forked from rubyforgood/babywearing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
64 lines (56 loc) · 1.77 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.5'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 4.3.1'
gem 'rails', '~> 5.2.4'
gem 'sassc', '2.1.0'
gem 'sassc-rails', '~> 2.1' # Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'mini_racer', platforms: :ruby
gem 'aasm'
gem 'aws-sdk-s3'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'bootstrap', '~> 4.3.1'
gem "bootstrap-table-rails"
gem 'coffee-rails', '~> 4.2'
gem 'filterrific'
gem "font-awesome-rails"
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails'
gem 'mini_magick', '~> 4.8'
gem 'money-rails', '~>1.12'
gem 'name_of_person'
gem "responders"
gem 'turbolinks', '~> 5'
gem 'whenever', require: false
gem 'will_paginate'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'pry-byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem "better_errors"
gem "binding_of_caller"
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'web-console', '>= 3.3.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'capybara'
gem 'factory_bot_rails', '~> 5.0'
gem 'rspec-rails', '~> 3.8'
# add simpleCov for Code Climate test coverage visibility
gem 'rails-controller-testing'
gem 'simplecov', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'devise', '>= 4.7.1'
gem 'pundit'
gem 'rubocop'
gem 'rubocop-rspec'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]