github-changelog-generator/lib
Raphaël Pinson 6a732ceb99 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-27 13:36:41 +02:00
..
github_changelog_generator Do not alter pull_requests while iterating on it 2015-08-27 13:36:41 +02:00
CHANGELOG.md simpify expressin & update change log 2015-08-25 17:31:05 +03:00
github_changelog_generator.rb Move logging to separate class, disable logging during test execution. 2015-06-10 13:27:27 +03:00