-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
66 lines (60 loc) · 1.53 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "rails", "~> 6.1.7.7"
gem "puma", "~> 5.6"
gem "sass-rails", "~> 6.0"
gem "uglifier", ">= 1.3.0"
gem "pg"
gem "coffee-rails", "~> 5.0"
gem "turbolinks", "~> 5"
gem "jbuilder", "~> 2.11"
gem "bootsnap", ">= 1.14.0", require: false
gem "simple_form"
gem "bootstrap"
gem "pry-rails"
gem "jquery-rails"
gem "simple_auth"
gem "bcrypt", "~> 3.1.7"
gem "warden"
gem "execjs"
gem "okcomputer"
gem "net-http"
gem "net-smtp"
gem "net-imap"
gem "net-pop"
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "json-schema"
gem "rubocop", require: false
gem "rubocop-rails", require: false
gem "rack_session_access"
end
group :development do
gem "brakeman"
gem "faker"
gem "populate"
gem "rails-erd"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console", ">= 3.3.0"
gem "sequel"
end
group :test do
gem "capybara", "~> 3"
gem "webdrivers"
gem "factory_bot_rails"
gem "guard-rspec", require: false
gem "mutant-rspec"
gem "rails-controller-testing"
gem "rspec-activemodel-mocks"
gem "rspec-rails"
gem "selenium-webdriver"
gem "simplecov", require: false
gem "webmock"
gem "launchy"
gem "rack-test", require: "rack/test"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]