github-changelog-generator/lib/github_changelog_generator
Raphaël Pinson 1ec72afe32 Do not alter pull_requests while iterating on it
Deleting elements of an array while iterating on it
results in never seeing the last element.

    > a = [1,2,3]
     => [1, 2, 3]
    > a.each do |e|
    >   p a
    >   a.delete(e)
    > end
    [1, 2, 3]
    [2, 3]
     => [2]
2015-08-31 15:15:42 +03:00
..
generator Do not alter pull_requests while iterating on it 2015-08-31 15:15:42 +03:00
fetcher.rb This commit close #262 2015-08-25 14:27:40 +03:00
helper.rb Move logging to separate class, disable logging during test execution. 2015-06-10 13:27:27 +03:00
parser.rb This fix #270 2015-08-26 17:01:18 +03:00
reader.rb Go with souble quotes. (See https://github.com/skywinder/github-changelog-generator/pull/220#discussion_r27262657 ) 2015-04-02 12:05:26 +03:00
task.rb Add release_url to rake task options 2015-08-24 14:55:57 +02:00
version.rb Update gemspec to version 1.8.2 2015-08-26 17:02:00 +03:00