Fix robocop issues with cli.rb

This commit is contained in:
Enrico Stahn 2015-03-27 12:08:53 +11:00
parent 3993eeec28
commit da8f725b2d

View File

@ -23,13 +23,13 @@ module GitHubChangelogGenerator
default_task :generate default_task :generate
desc 'generate', 'Generates the CHANGELOG.md based on the given options' desc 'generate', 'Generates the CHANGELOG.md based on the given options'
option :user, :aliases => '-u', :type => :string, :desc => 'Username of the owner of target GitHub repo' option :user, aliases: '-u', type: :string, desc: 'Username of the owner of target GitHub repo'
option :project, :aliases => '-p', :type => :string, :desc => 'Username of the owner of target GitHub repo' option :project, aliases: '-p', type: :string, desc: 'Username of the owner of target GitHub repo'
option :token, :aliases => '-t', :type => :string, :desc => 'To make more than 50 requests per hour your GitHub token required. You can generate it here: https://github.com/settings/tokens/new' option :token, aliases: '-t', type: :string, desc: 'To make more than 50 requests per hour your GitHub token required. You can generate it here: https://github.com/settings/tokens/new'
option :issues_wo_labels, :type => :boolean, :default => true, :desc => 'Include closed issues without labels to changelog.' option :issues_wo_labels, type: :boolean, default: true, desc: 'Include closed issues without labels to changelog.'
def generate def generate
print_table([['Project:', 'zanui/chef-thumbor'], ['Username:', 'estahn']]) print_table([['Project:', 'zanui/chef-thumbor'], ['Username:', 'estahn']])
end end
end end
end end