1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Add missing require to Rakefile

Use bundle exec to make manpage
Don't set executable bit on manpage
This commit is contained in:
Shay Elkin
2013-03-24 14:01:19 +02:00
parent 925ec3751f
commit 054e3f3795
2 changed files with 3 additions and 2 deletions

View File

@@ -85,13 +85,13 @@ docs/content/2.download/source/jq.tgz: jq
tarball: docs/content/2.download/source/jq.tgz
jq.1: docs/content/3.manual/manual.yml
( cd docs; rake manpage; ) > $@
( cd docs; bundle exec rake manpage; ) > $@
install: jq jq.1
install -d -m 0755 $(prefix)/bin
install -m 0755 jq $(prefix)/bin
install -d -m 0755 $(mandir)/man1
install -m 0755 jq.1 $(mandir)/man1
install -m 0644 jq.1 $(mandir)/man1
uninstall:
rm -vf $(prefix)/bin/jq

View File

@@ -4,6 +4,7 @@ require 'maruku'
require 'json'
require 'ronn'
require 'tempfile'
require 'yaml'
module ExtraFilters
def markdownify(input)