-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
39 lines (26 loc) · 1.63 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
# frozen_string_literal: true
source 'https://rubygems.org'
# Specify your gem's dependencies in followability.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'
# Common monads for Ruby [https://github.com/dry-rb/dry-monads]
gem 'dry-monads', '~> 1.4'
# A mixin to add configuration functionality to your classes [https://github.com/dry-rb/dry-configurable]
gem 'dry-configurable', '~> 0.15.0'
# Pry is a runtime developer console and IRB alternative with powerful introspection capabilities [https://github.com/pry/pry]
gem 'pry', '~> 0.14.1'
# A toolkit of support libraries and Ruby core extensions extracted from the Rails framework [https://github.com/rails/rails]
gem 'activesupport', '>= 5.0', '>= 7.0.4'
# A toolkit for building modeling frameworks like Active Record [https://github.com/rails/rails]
gem 'activemodel', '>= 5.0', '>= 7.0.4'
# Databases on Rails. Build a persistent domain model by mapping database tables to Ruby classes [https://github.com/rails/rails]
gem 'activerecord', '>= 5.0', '>= 7.0.4'
# Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity [https://github.com/rails/rails]
gem 'rails', '>= 5.0', '>= 7.0.4'