-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
84 lines (63 loc) · 2.02 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.2"
gem "rails", "~> 7.0.4"
# The original asset pipeline for Rails
gem "sprockets-rails"
# Use PostgreSQL as the database for Active Record
gem "pg", "~> 1.4.5"
# Use the Puma web server
gem "puma", "~> 6.1"
# Use JavaScript with ESM import maps
gem "importmap-rails"
# JavaScript frameworks for single page app functions
gem "stimulus-rails", "~> 1.2"
gem "turbo-rails", "~> 1.3"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", "~> 1.16", require: false
group :production do
# JS minification
gem "mini_racer", "~> 0.6"
gem "terser", "~> 1.1"
# Force domain name rather than xxx.herokuapp.com
gem "rack-canonical-host", "~> 1.1"
end
group :development, :test do
gem "debug", "1.6.1", platforms: %i[mri mingw x64_mingw]
end
group :development do
gem "poke-api-v2"
gem "web-console"
end
group :test do
gem "fuubar", "~> 2.0"
gem "rspec", "~> 3.12"
gem "rspec-rails", "~> 6.0"
gem "capybara", "~> 3.38"
gem "capybara-selenium", "~> 0.0.6"
gem "selenium-webdriver", "~> 4.8"
# For CircleCI
gem "rspec_junit_formatter", "~> 0.6", require: false
gem "rubocop", "~> 1.50"
gem "rubocop-capybara", "~> 2.17"
gem "rubocop-rails", "~> 2.19"
gem "rubocop-rspec", "~> 2.19"
end
# TODO: This is a fork that fixes errors during testing. Eyes on this PR:
# https://github.com/active-hash/active_hash/pull/282
gem "active_hash", git: "https://github.com/vinnydiehl/active_hash.git",
branch: "fix-nil-error"
gem "email_validator", "~> 2.2"
gem "google_sign_in", "~> 1.2"
gem "pokepaste", "~> 0.1"
# HAML/SCSS Preprocessors
gem "haml", "~> 6.1"
gem "haml-rails", "~> 2.0"
gem "sassc-rails", "~> 2.1"
# Markdown processor for HAML
gem "kramdown", "~> 2.4"
# #redirect_post helper
gem "repost", "~> 0.4"