-
Notifications
You must be signed in to change notification settings - Fork 9
/
Gemfile
33 lines (26 loc) · 925 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
31
32
33
# frozen_string_literal: true
# This is a file to declare which gems (libraries) to install and use.
#
# Since this file contains no gems required to run the tool so far,
# you will not need to install gems if you are just a user.
# You will need these gems only on developing/testing the tool.
#
# You can install gems listed below by this command:
# $ gem install bundler
# $ bundle install --path vendor/bundle
# If it is not your first time to execute this command, then you can just run
# $ bundle install
source "https://rubygems.org"
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
# tool to debug your script
gem 'pry'
gem 'pry-byebug'
# testing framework
gem 'rspec', '~> 3.0'
gem 'rspec-its'
gem 'rspec-temp_dir'
# checks your coding style
gem 'rubocop', require: false
gem 'rubocop-rspec', require: false
# measures the coverage of your test code
gem 'simplecov', require: false