-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathGemfile
42 lines (34 loc) · 862 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
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
LOCAL_GEMS = "Gemfile.local"
gem "appraisal", ">= 2.2"
platforms :mri do
gem "fuubar"
gem "guard"
gem "guard-bundler"
gem "guard-reek"
gem "guard-rspec"
gem "guard-rubocop"
gem "hiredis"
gem "pry"
gem "redcarpet", "~> 3.4"
gem "reek", ">= 5.3"
gem "rspec-its"
gem "rubocop-mhenrixon"
gem "simplecov-sublime", require: false
gem "travis"
end
group :development do
gem "bundler", "~> 2.0"
gem "rake", "~> 12.3"
gem "rspec", "~> 3.7"
# ===== Documentation =====
gem "github_changelog_generator", "~> 1.14"
gem "github-markup", "~> 3.0"
# gem "redcarpet", "~> 3.4"
gem "yard", "~> 0.9.18"
# ===== Release Management =====
gem "gem-release", "~> 2.0"
end
eval(File.read(LOCAL_GEMS)) if File.exist?(LOCAL_GEMS) # rubocop:disable Security/Eval