-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
21 lines (14 loc) · 787 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true
source 'https://rubygems.org'
# Specify your gem's dependencies in dry-validation-rails.gemspec
gemspec
# Rake is a Make-like program implemented in Ruby [https://github.com/ruby/rake]
gem 'rake', '~> 13.0'
# Minitest provides a complete suite of testing facilities supporting [https://github.com/minitest/minitest]
gem 'minitest', '~> 5.0'
# RuboCop is a Ruby code style checking and code formatting tool [https://github.com/rubocop/rubocop]
gem 'rubocop', '~> 1.21'
# Pretty print Ruby objects with proper indentation and colors [https://github.com/awesome-print/awesome_print]
gem 'awesome_print'
# Pry is a runtime developer console and IRB alternative with powerful introspection capabilities [https://github.com/pry/pry]
gem 'pry', '~> 0.14.1'