-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgems.rb
53 lines (45 loc) · 1.19 KB
/
gems.rb
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
49
50
51
52
53
# frozen_string_literal: true
# ```sh
# bundle config set --local clean 'true'
# bundle config set --local path 'vendor/bundle'
# bundle install
# ```
source 'https://rubygems.org'
group :default do
gem 'cli-ui', '~> 1.3'
gem 'cliver', '~> 0.3'
gem 'dotenv', '~> 2.7'
gem 'dry-inflector', '~> 0.1'
gem 'kamaze-version', '~> 1.0'
gem 'process_lock', '~> 0.1'
gem 'tenjin', '~> 0.7'
gem 'tty-editor', '~> 0.5'
gem 'tty-screen', '>= 0.6.2', '~> 0.7'
end
# --------------------------------------------------------------------
# rspec, rubocop, rake, rugged and yard are supported tools
# but we don't force to use them
# --------------------------------------------------------------------
group :development do
gem 'rake', '~> 13.0'
gem 'rubocop', '~> 1.9'
gem 'rugged', '~> 1.0'
gem 'sys-proc', '~> 1.1'
# 'listen' is used to "watch"
# but could be incompatible with some systems
gem 'listen', '~> 3.2'
end
group :repl do
gem 'interesting_methods', '~> 0.1'
gem 'pry', '~> 0.12'
end
group :doc do
gem 'github-markup', '~> 3.0'
gem 'redcarpet', '~> 3.5'
gem 'yard', '~> 0.9'
end
group :test do
gem 'mocha', '~> 1.11'
gem 'rspec', '~> 3.7'
gem 'sham', '~> 2.0'
end