This repository was archived by the owner on Oct 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
59 lines (54 loc) · 1.3 KB
/
Gemfile
File metadata and controls
59 lines (54 loc) · 1.3 KB
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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "2.7.6"
gem "aws-sdk-ssm", "~> 1.114"
gem "aws-sdk-codepipeline", "~> 1.38.0"
gem "bootsnap", ">= 1.1.0", require: false
gem "bootstrap", ">= 4.3.1"
gem "coffee-rails", "~> 5.0"
gem "haml-rails"
gem "high_voltage"
gem "jbuilder", "~> 2.10"
gem "jquery-rails"
gem "pg"
gem "mini_racer"
gem "mongoid"
gem "puma", "~> 5.6"
gem "rollbar"
gem "rails", "~> 6.0"
gem "sass-rails", "~> 6.0"
gem "simple_form"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem "uglifier", ">= 1.3.0"
group :development do
gem "better_errors", "< 2.9.2"
gem "listen", ">= 3.0.5", "< 3.4"
gem "html2haml"
gem "rails_layout"
gem "spring"
gem "spring-commands-rspec"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console", ">= 3.3.0"
end
group :test do
gem "capybara", ">= 2.15"
gem "climate_control"
gem "database_cleaner-mongoid"
gem "launchy"
gem "geckodriver-helper"
gem "webdrivers", "~> 5.0"
gem "simplecov", "~> 0.21"
gem "simplecov-lcov"
end
group :development, :test do
gem "brakeman"
gem "bullet"
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "dotenv-rails"
gem "factory_bot_rails"
gem "faker"
gem "pry"
gem "rspec-rails"
gem "standard"
end