From 8f634b9d079a9a7ba89939cbaac02b17180edce6 Mon Sep 17 00:00:00 2001 From: Nicolas McCurdy Date: Sat, 4 Jan 2014 22:46:44 -0500 Subject: [PATCH] Add brief documentation comments for Homesick and Homesick::Actions --- lib/homesick.rb | 1 + lib/homesick/actions.rb | 1 + rubocop-todo.yml | 3 --- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/homesick.rb b/lib/homesick.rb index a4fdc18..026d6e6 100644 --- a/lib/homesick.rb +++ b/lib/homesick.rb @@ -1,6 +1,7 @@ # -*- encoding : utf-8 -*- require 'thor' +# Homesick's command line interface (with some helper methods) class Homesick < Thor autoload :Shell, 'homesick/shell' autoload :Actions, 'homesick/actions' diff --git a/lib/homesick/actions.rb b/lib/homesick/actions.rb index bf20a9e..239c33e 100644 --- a/lib/homesick/actions.rb +++ b/lib/homesick/actions.rb @@ -1,5 +1,6 @@ # -*- encoding : utf-8 -*- class Homesick + # Git-related and file-related helper methods for the Homesick class module Actions # TODO: move this to be more like thor's template, empty_directory, etc def git_clone(repo, config = {}) diff --git a/rubocop-todo.yml b/rubocop-todo.yml index 7ecb968..225b514 100644 --- a/rubocop-todo.yml +++ b/rubocop-todo.yml @@ -8,9 +8,6 @@ ClassLength: CyclomaticComplexity: Max: 16 -Documentation: - Enabled: false - Eval: Enabled: false