-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (30 loc) · 1.05 KB
/
Copy pathGemfile
File metadata and controls
38 lines (30 loc) · 1.05 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
29
30
31
32
33
34
35
36
37
38
# ==============================================================================
# GEM FILE
# frozen_string_literal: true
# ==============================================================================
source "https://rubygems.org"
# Specify your gem's dependencies in string_foundation.gemspec.
gemspec
# ------------------------------------------------------------------------------
# For Development and Test
# ------------------------------------------------------------------------------
group :development, :test do
# Install bundler and rake.
gem "bundler"
gem "rake"
end
# ------------------------------------------------------------------------------
# For Test
# ------------------------------------------------------------------------------
group :test do
# Use RSpec for unit test.
gem "rspec"
# Use a code coverage analysis tool for Ruby.
gem "simplecov"
# Output the result of SimpleCov to a console.
gem "simplecov-console"
# Use Codecov to get status badges.
gem "codecov"
# Generate random text.
gem "random_token"
end