-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (22 loc) · 702 Bytes
/
Gemfile
File metadata and controls
34 lines (22 loc) · 702 Bytes
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
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
gem 'sleeping_king_studios-tasks', '~> 0.4', '>= 0.4.1'
group :development, :test do
gem 'byebug', '~> 11.1'
gem 'rspec', '~> 3.13'
gem 'rspec-sleeping_king_studios', '~> 2.8', '>= 2.8.3'
gem 'rubocop', '~> 1.82'
gem 'rubocop-rspec', '~> 3.8'
gem 'simplecov', '~> 0.22'
end
group :docs do
gem 'jekyll', '~> 4.3'
gem 'jekyll-theme-dinky', '~> 0.2'
# Use Kramdown to parse GFM-dialect Markdown.
gem 'kramdown-parser-gfm', '~> 1.1'
gem 'sleeping_king_studios-docs', '~> 0.2', '>= 0.2.1'
# Use Webrick as local content server.
gem 'webrick', '~> 1.8'
gem 'yard', '~> 0.9', require: false
end