-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
48 lines (39 loc) · 1.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
source 'https://rubygems.org'
# Specify your gem's dependencies in flows.gemspec
gemspec
# things that should be part of a standard library
gem 'bundler', '~> 2.0'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.0'
# Documentation is the key!
gem 'yard'
# linters to make code and documentation awesome
# gem 'forspell', '~> 0.0.8'
gem 'inch'
gem 'mdl'
gem 'reek'
gem 'rubocop'
gem 'rubocop-md'
gem 'rubocop-performance'
gem 'rubocop-rake'
gem 'rubocop-rspec'
# let's make dubugging confortable
gem 'awesome_print'
gem 'pry'
# 100% coverage does not mean that you cover everything,
# but 50% coverage means that you haven't covered half of the project.
gem 'codecov'
gem 'simplecov'
# benchmarking tools
gem 'benchmark-ips'
gem 'kalibera'
gem 'ruby-prof'
gem 'stackprof'
# make benchmark scripts a convinient CLI tool
gem 'gli'
gem 'rainbow'
gem 'warning' # to suppress some unhandable Ruby warnings during CLI execution
# alternatives for comparison in benchmarking
gem 'dry-monads', '~> 1.3'
gem 'dry-transaction'
gem 'trailblazer-operation'