From af13ceeb972d1cac6a599688f65f3b651d5cbc08 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Fri, 5 Aug 2011 13:11:07 +0300 Subject: [PATCH] Write videos.json and guides.json to output dir. Those won't be used by the docs app, but this way they will be available in release version of the docs app, and people can use those files as input to JSDuck. --- lib/jsduck/app.rb | 1 + lib/jsduck/guides.rb | 6 ++++-- lib/jsduck/videos.rb | 10 ++++++++++ 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/lib/jsduck/app.rb b/lib/jsduck/app.rb index 88663182..49d7dda6 100644 --- a/lib/jsduck/app.rb +++ b/lib/jsduck/app.rb @@ -83,6 +83,7 @@ module JsDuck @timer.time(:generating) { write_search_data } @timer.time(:generating) { write_classes } @timer.time(:generating) { @guides.write(@opts.output_dir+"/guides") } + @timer.time(:generating) { @videos.write(@opts.output_dir+"/videos") } end @timer.report diff --git a/lib/jsduck/guides.rb b/lib/jsduck/guides.rb index be36a4ce..f3138fa9 100644 --- a/lib/jsduck/guides.rb +++ b/lib/jsduck/guides.rb @@ -20,11 +20,13 @@ module JsDuck # Writes all guides to given dir in JsonP format def write(dir) - # Skip it all when we have no guides return if @guides.length == 0 - FileUtils.mkdir(dir) + FileUtils.mkdir(dir) unless File.exists?(dir) @guides.each {|group| group["items"].each {|g| write_guide(g, dir) } } + # Write the JSON to output dir, so it's available in released + # version of docs and people can use it with JSDuck by themselves. + File.open(dir+"/guides.json", 'w') {|f| f.write(JSON.generate(@guides)) } end def write_guide(guide, dir) diff --git a/lib/jsduck/videos.rb b/lib/jsduck/videos.rb index bf8fd199..3b362eb3 100644 --- a/lib/jsduck/videos.rb +++ b/lib/jsduck/videos.rb @@ -13,6 +13,16 @@ module JsDuck @videos = JSON.parse(IO.read(filename)) end + # Writes videos JSON file to a dir + def write(dir) + return if @videos.length == 0 + + FileUtils.mkdir(dir) unless File.exists?(dir) + # Write the JSON to output dir, so it's available in released + # version of docs and people can use it with JSDuck by themselves. + File.open(dir+"/videos.json", 'w') {|f| f.write(JSON.generate(@videos)) } + end + # Returns all videos as array def to_array @videos -- GitLab