rubocop autofixes

This commit is contained in:
Petr Korolev 2015-04-21 23:37:03 +03:00
parent e27fe24a76
commit b7980c8900
2 changed files with 1 additions and 9 deletions

View File

@ -133,9 +133,6 @@ module GitHubChangelogGenerator
filtered_pull_requests
end
# This method fetch missing required attributes for pull requests
# :merged_at - is a date, when issue PR was merged.
# More correct to use this date, not closed date.
@ -158,7 +155,6 @@ module GitHubChangelogGenerator
end
end
# Include issues with labels, specified in :include_labels
# @param [Array] issues to filter
# @return [Array] filtered array of issues

View File

@ -74,7 +74,6 @@ module GitHubChangelogGenerator
tags
end
# This method fetch all closed issues and separate them to pull requests and pure issues
# (pull request is kind of issue in term of GitHub)
# @return [Tuple] with issues and pull requests
@ -163,8 +162,6 @@ module GitHubChangelogGenerator
end
end
# Try to find tag date in local hash.
# Otherwise fFetch tag time and put it to local hash file.
# @param [String] tag_name name of the tag
@ -190,6 +187,5 @@ module GitHubChangelogGenerator
def fetch_commit(event)
@github.git_data.commits.get @options[:user], @options[:project], event[:commit_id]
end
end
end