mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
19 lines
329 B
Ruby
19 lines
329 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
source 'https://rubygems.org'
|
||
|
gem 'asciidoctor'
|
||
|
gem 'asciidoctor-diagram'
|
||
|
gem 'asciidoctor-foodogsquared-extensions'
|
||
|
gem 'concurrent-ruby'
|
||
|
gem 'open-uri-cached'
|
||
|
gem 'rouge'
|
||
|
|
||
|
group :development do
|
||
|
gem 'rake'
|
||
|
gem 'ruby-lsp', require: false
|
||
|
end
|
||
|
|
||
|
group :lint do
|
||
|
gem 'rubocop', require: false
|
||
|
end
|