-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
28 lines (21 loc) · 1.07 KB
/
Copy pathGemfile
File metadata and controls
28 lines (21 loc) · 1.07 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
# frozen_string_literal: true
# RubyGems.org is the Ruby community’s gem hosting service.
source 'https://rubygems.org'
# Loads the gems from omniauth-bcrypt.gemspec. Those are the dependencies for the gem. All other gems listed in this
# file are only required if you checkout the gem's code.
gemspec
# debase is a fast implementation of the standard Ruby debugger debug.rb for Ruby 2.0.
# https://github.com/denofevil/debase
gem 'debase', '~> 0.2'
# Minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking.
# https://github.com/seattlerb/minitest
gem 'minitest', '~> 5.14'
# Death to haphazard monkey-patching! Extend Minitest through simple hooks.
# https://github.com/CapnKernul/minitest-reporters
gem 'minitest-reporters', '~> 1.4'
# Rake is a Make-like program implemented in Ruby.
# https://github.com/ruby/rake
gem 'rake', '~> 13.0'
# Code coverage for Ruby with a powerful configuration library and automatic merging of coverage across test suites.
# https://github.com/colszowka/simplecov
gem 'simplecov', '~> 0.18', require: false