Skip to content

Instantly share code, notes, and snippets.

@denisdefreyne
Created October 18, 2022 19:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save denisdefreyne/aef71df3c2e676fab04084bbe717ef1f to your computer and use it in GitHub Desktop.
Save denisdefreyne/aef71df3c2e676fab04084bbe717ef1f to your computer and use it in GitHub Desktop.
gemfile-source-block
# AFTER: #source not taking a block
source 'https://rubygems.org'
gem 'nanoc', '~> 4.12.7'
group :nanoc do
gem 'guard-nanoc'
end
gem 'adsf' # web server
gem 'kramdown' # markdown!
gem 'nokogiri' # for nanoc check: internal links
gem 'w3c_validators' # for nanoc check: css
# BEFORE: #source taking a block
source 'https://rubygems.org' do
gem 'nanoc', '~> 4.12.7'
group :nanoc do
gem 'guard-nanoc'
end
gem 'adsf' # web server
gem 'kramdown' # markdown!
gem 'nokogiri' # for nanoc check: internal links
gem 'w3c_validators' # for nanoc check: css
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment