-
Notifications
You must be signed in to change notification settings - Fork 0
/
gems.rb
46 lines (40 loc) · 1.04 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
# frozen_string_literal: true
# ```sh
# bundle config set --local clean 'true'
# bundle config set --local path 'vendor/bundle'
# bundle install --standalone
# ```
source 'https://rubygems.org'
group :default do
gem 'chrono_logger', '~> 1.1'
gem 'concurrent-ruby', '~> 1.1'
gem 'dry-inflector', '~> 0.2'
gem 'kamaze-version', '~> 1.0'
gem 'rouge', '~> 3.26'
gem 'stibium-bundled', '~> 0.0.1', '>= 0.0.4'
gem 'sys-proc', '~> 1.1'
gem 'thor', '~> 1.2'
gem 'xdg', '>= 2.2', '< 3.0'
end
group :development do
{ github: 'SwagDevOps/kamaze-project', branch: 'develop' }.tap do |options|
gem(*['kamaze-project'].concat([options]))
end
gem 'listen', '~> 3.1'
gem 'rake', '~> 13.0'
gem 'rubocop', '~> 1.3'
gem 'rugged', '~> 1.0'
# repl ---------------------------------
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'
gem 'yard-coderay', '~> 0.1'
end
group :test do
gem 'rspec', '~> 3.8'
gem 'sham', '~> 2.0'
end