From 6532af129013a12935086c632e0691381ebf0987 Mon Sep 17 00:00:00 2001 From: Thibaut Courouble Date: Sat, 9 Apr 2016 08:36:01 -0400 Subject: [PATCH] Update Grunt documentation (1.0.1) --- assets/javascripts/templates/pages/about_tmpl.coffee | 4 ++-- lib/docs/scrapers/grunt.rb | 9 ++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/assets/javascripts/templates/pages/about_tmpl.coffee b/assets/javascripts/templates/pages/about_tmpl.coffee index 3a970490..a83f7945 100644 --- a/assets/javascripts/templates/pages/about_tmpl.coffee +++ b/assets/javascripts/templates/pages/about_tmpl.coffee @@ -206,9 +206,9 @@ credits = [ 'https://creativecommons.org/licenses/by/3.0/' ], [ 'Grunt', - '2014 Grunt Team', + 'GruntJS Team', 'MIT', - 'https://raw.githubusercontent.com/gruntjs/gruntjs.com/master/LICENSE' + 'https://github.com/gruntjs/grunt-docs/blob/master/package.json#L10' ], [ 'Haskell', 'The University of Glasgow', diff --git a/lib/docs/scrapers/grunt.rb b/lib/docs/scrapers/grunt.rb index dd30f69e..bd6c98f5 100644 --- a/lib/docs/scrapers/grunt.rb +++ b/lib/docs/scrapers/grunt.rb @@ -2,7 +2,7 @@ module Docs class Grunt < UrlScraper self.name = 'Grunt' self.type = 'grunt' - self.release = '0.4.5' + self.release = '1.0.1' self.base_url = 'http://gruntjs.com/' self.root_path = 'getting-started' self.initial_paths = %w(api/grunt) @@ -13,14 +13,17 @@ module Docs configuring-tasks sample-gruntfile creating-tasks + creating-plugins using-the-cli + installing-grunt + project-scaffolding ) - options[:only_patterns] = [/\Aapi\//] + options[:only_patterns] = [/\Aapi\//, /\Aupgrading-/] options[:container] = '.container > .row-fluid' options[:attribution] = <<-HTML - © 2014 Grunt Team
+ © GruntJS Team
Licensed under the MIT License. HTML end