-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
30 lines (25 loc) · 815 Bytes
/
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
# frozen_string_literal: true
source 'https://rubygems.org'
# Specify your gem's dependencies in solargraph-rspec.gemspec
gemspec
# Development Dependencies
gem 'bundler' # Dependency management
gem 'debug' # Debugging
gem 'profile-viewer' # View profile from Vernier
gem 'rake' # Build
gem 'rspec' # Testing
gem 'rubocop' # Linting
gem 'simplecov' # Code coverage
gem 'simplecov-cobertura' # Code coverage
# gem 'vernier' # Profiling only on Ruby >= 3.2.1
group :third_party_plugin_tests do
gem 'actionmailer'
gem 'airborne'
gem 'rspec-rails'
gem 'rspec-sidekiq'
gem 'shoulda-matchers'
gem 'webmock'
end
# Debugging
# Use local solargraph repo for ease of debugging
# gem 'solargraph', path: '../solargraph'