Add ronn & guard tools to automate building manuals

This commit is contained in:
Morgan Aldridge 2019-01-29 23:57:40 -05:00
parent f82403c88e
commit 6732cc8f17
5 changed files with 70 additions and 0 deletions

1
.ruby-gemset Normal file
View File

@ -0,0 +1 @@
basiliskiivm

1
.ruby-version Normal file
View File

@ -0,0 +1 @@
ruby-2.6.0

7
Gemfile Normal file
View File

@ -0,0 +1,7 @@
source 'https://rubygems.org'
group :development do
gem 'ronn'
gem 'guard'
gem 'guard-ronn'
end

57
Gemfile.lock Normal file
View File

@ -0,0 +1,57 @@
GEM
remote: https://rubygems.org/
specs:
coderay (1.1.2)
ffi (1.10.0)
formatador (0.2.5)
guard (2.15.0)
formatador (>= 0.2.4)
listen (>= 2.7, < 4.0)
lumberjack (>= 1.0.12, < 2.0)
nenv (~> 0.1)
notiffany (~> 0.0)
pry (>= 0.9.12)
shellany (~> 0.0)
thor (>= 0.18.1)
guard-compat (1.2.1)
guard-ronn (2.1.0)
guard (~> 2.1)
guard-compat (~> 1.1)
ronn (>= 0.7)
hpricot (0.8.6)
listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
lumberjack (1.0.13)
method_source (0.9.2)
mustache (1.1.0)
nenv (0.3.0)
notiffany (0.1.1)
nenv (~> 0.1)
shellany (~> 0.0)
pry (0.12.2)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
rb-fsevent (0.10.3)
rb-inotify (0.10.0)
ffi (~> 1.0)
rdiscount (2.2.0.1)
ronn (0.7.3)
hpricot (>= 0.8.2)
mustache (>= 0.7.0)
rdiscount (>= 1.5.8)
ruby_dep (1.5.0)
shellany (0.0.1)
thor (0.20.3)
PLATFORMS
ruby
DEPENDENCIES
guard
guard-ronn
ronn
BUNDLED WITH
2.0.1

4
Guardfile Normal file
View File

@ -0,0 +1,4 @@
guard :ronn do
watch(%r{^man/.+\.ronn$})
watch(%r{^man/.+\.m(ark)?d(own)?$})
end