0x1eef
de1440b1d8
Add two 'rake watch' tasks: - 'rake watch:server' Watch for changes using the Ruby web server. - 'rake watch:deploy:local' Watch for changes using a local web server (eg nginx). Fix #24
20 lines
402 B
Ruby
20 lines
402 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
gem "nanoc", "~> 4.12"
|
|
gem "nanoc-live", "~> 1.0"
|
|
gem "nanoc-gunzip.rb", "~> 0.1"
|
|
gem "nanoc-webpack.rb", "~> 0.1"
|
|
gem "rainpress", "~> 1.0"
|
|
gem "sass"
|
|
gem "standardrb"
|
|
gem "ryo.rb"
|
|
gem "paint"
|
|
gem "dotenv"
|
|
gem "adsf"
|
|
gem "puma"
|
|
|
|
require 'rbconfig'
|
|
if RbConfig::CONFIG['target_os'] =~ /(?i-mx:bsd|dragonfly)/
|
|
gem 'rb-kqueue', '>= 0.2'
|
|
end
|