px_github_changelog_generator 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +9 -0
  3. data/README.md +357 -0
  4. data/Rakefile +19 -0
  5. data/bin/git-generate-changelog +5 -0
  6. data/bin/github_changelog_generator +5 -0
  7. data/lib/github_changelog_generator/argv_parser.rb +225 -0
  8. data/lib/github_changelog_generator/file_parser_chooser.rb +27 -0
  9. data/lib/github_changelog_generator/generator/entry.rb +218 -0
  10. data/lib/github_changelog_generator/generator/generator.rb +177 -0
  11. data/lib/github_changelog_generator/generator/generator_fetcher.rb +202 -0
  12. data/lib/github_changelog_generator/generator/generator_processor.rb +237 -0
  13. data/lib/github_changelog_generator/generator/generator_tags.rb +210 -0
  14. data/lib/github_changelog_generator/generator/section.rb +129 -0
  15. data/lib/github_changelog_generator/helper.rb +37 -0
  16. data/lib/github_changelog_generator/octo_fetcher.rb +535 -0
  17. data/lib/github_changelog_generator/options.rb +159 -0
  18. data/lib/github_changelog_generator/parser.rb +89 -0
  19. data/lib/github_changelog_generator/parser_file.rb +101 -0
  20. data/lib/github_changelog_generator/reader.rb +88 -0
  21. data/lib/github_changelog_generator/ssl_certs/cacert.pem +3138 -0
  22. data/lib/github_changelog_generator/task.rb +68 -0
  23. data/lib/github_changelog_generator/version.rb +5 -0
  24. data/lib/github_changelog_generator.rb +49 -0
  25. data/man/git-generate-changelog.1 +393 -0
  26. data/man/git-generate-changelog.1.html +359 -0
  27. data/man/git-generate-changelog.html +270 -0
  28. data/man/git-generate-changelog.md +274 -0
  29. data/spec/files/angular.js.md +9395 -0
  30. data/spec/files/bundler.md +1911 -0
  31. data/spec/files/config_example +5 -0
  32. data/spec/files/github-changelog-generator.md +305 -0
  33. data/spec/github_changelog_generator_spec.rb +32 -0
  34. data/spec/install_gem_in_bundler.gemfile +5 -0
  35. data/spec/spec_helper.rb +74 -0
  36. data/spec/unit/generator/entry_spec.rb +766 -0
  37. data/spec/unit/generator/generator_processor_spec.rb +203 -0
  38. data/spec/unit/generator/generator_spec.rb +47 -0
  39. data/spec/unit/generator/generator_tags_spec.rb +337 -0
  40. data/spec/unit/generator/section_spec.rb +43 -0
  41. data/spec/unit/octo_fetcher_spec.rb +590 -0
  42. data/spec/unit/options_spec.rb +67 -0
  43. data/spec/unit/parser_file_spec.rb +94 -0
  44. data/spec/unit/parser_spec.rb +54 -0
  45. data/spec/unit/reader_spec.rb +120 -0
  46. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_commits/when_API_is_valid/returns_commits.json +1 -0
  47. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_commits_before/when_API_is_valid/returns_commits.json +1 -0
  48. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_issue_with_proper_key/values.json +1 -0
  49. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_issues.json +1 -0
  50. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_issues_with_labels.json +1 -0
  51. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_pull_request_with_proper_key/values.json +1 -0
  52. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_pull_requests_with_labels.json +1 -0
  53. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid.json +1 -0
  54. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_pull_requests/when_API_call_is_valid/returns_correct_pull_request_keys.json +1 -0
  55. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_pull_requests/when_API_call_is_valid/returns_pull_requests.json +1 -0
  56. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_pull_requests/when_API_call_is_valid.json +1 -0
  57. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_commit/when_API_call_is_valid/returns_commit.json +1 -0
  58. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_commit/when_API_call_is_valid.json +1 -0
  59. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_date_of_tag/when_API_call_is_valid/returns_date.json +1 -0
  60. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_date_of_tag/when_API_call_is_valid.json +1 -0
  61. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_events_async/when_API_call_is_valid/populates_issues.json +1 -0
  62. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_events_async/when_API_call_is_valid.json +1 -0
  63. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_API_call_is_valid/should_return_tags.json +1 -0
  64. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_API_call_is_valid/should_return_tags_count.json +1 -0
  65. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_API_call_is_valid.json +1 -0
  66. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_wrong_token_provided/should_raise_Unauthorized_error.json +1 -0
  67. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_wrong_token_provided.json +1 -0
  68. metadata +250 -0
@@ -0,0 +1,5 @@
1
+ user=spec_user
2
+ project=spec_project
3
+ unreleased=false
4
+ future-release=5.0.0
5
+ since-tag=1.0.0
@@ -0,0 +1,305 @@
1
+ # Changelog
2
+
3
+ ## [1.3.10](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.10) (2015-03-18)
4
+
5
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.9...1.3.10)
6
+
7
+ **Fixed bugs:**
8
+
9
+ - Exclude closed PR's from changelog. [\#69](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/69)
10
+
11
+ **Merged pull requests:**
12
+
13
+ - Fix termination in case of empty unreleased section with `--unreleased-only` option. [\#70](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/70) ([github-changelog-generator](https://github.com/github-changelog-generator))
14
+
15
+ ## [1.3.9](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.9) (2015-03-06)
16
+
17
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.8...1.3.9)
18
+
19
+ **Implemented enhancements:**
20
+
21
+ - Improve method of detecting owner and repository [\#63](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/63)
22
+
23
+ **Merged pull requests:**
24
+
25
+ - Resolved concurrency problem in case of issues \> 2048 [\#65](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/65) ([github-changelog-generator](https://github.com/github-changelog-generator))
26
+
27
+ ## [1.3.8](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.8) (2015-03-05)
28
+
29
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.6...1.3.8)
30
+
31
+ **Merged pull requests:**
32
+
33
+ - Fix `git remote` parsing in case, when script running without parameters inside destination directory [\#61](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/61) ([github-changelog-generator](https://github.com/github-changelog-generator))
34
+
35
+ ## [1.3.6](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.6) (2015-03-05)
36
+
37
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.5...1.3.6)
38
+
39
+ ## [1.3.5](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.5) (2015-03-04)
40
+
41
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.4...1.3.5)
42
+
43
+ **Fixed bugs:**
44
+
45
+ - Pull Requests in Wrong Tag [\#60](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/60)
46
+
47
+ ## [1.3.4](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.4) (2015-03-03)
48
+
49
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.3...1.3.4)
50
+
51
+ **Fixed bugs:**
52
+
53
+ - --no-issues appears to break PRs [\#59](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/59)
54
+
55
+ ## [1.3.3](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.3) (2015-03-03)
56
+
57
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.2...1.3.3)
58
+
59
+ **Closed issues:**
60
+
61
+ - Add \# character to encapsulate list. [\#58](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/58)
62
+
63
+ ## [1.3.2](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.2) (2015-03-03)
64
+
65
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.1...1.3.2)
66
+
67
+ **Fixed bugs:**
68
+
69
+ - generation failed if github commit api return `404 Not Found` [\#57](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/57)
70
+
71
+ ## [1.3.1](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.1) (2015-02-27)
72
+
73
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.0...1.3.1)
74
+
75
+ ## [1.3.0](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.0) (2015-02-26)
76
+
77
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.8...1.3.0)
78
+
79
+ **Implemented enhancements:**
80
+
81
+ - Do not show `Unreleased` section, when it's empty. [\#55](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/55)
82
+
83
+ - Separate list exclude and include labels [\#52](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/52)
84
+
85
+ - Unreleased issues in separate section [\#47](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/47)
86
+
87
+ - Separate by lists: Enhancements, Bugs, Pull requests. [\#31](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/31)
88
+
89
+ **Fixed bugs:**
90
+
91
+ - Test pull request with invalid label \(\#26\) in changelog appeared. [\#44](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/44)
92
+
93
+ **Merged pull requests:**
94
+
95
+ - Implement filtering of Pull Requests by milestones [\#50](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/50) ([github-changelog-generator](https://github.com/github-changelog-generator))
96
+
97
+ ## [1.2.8](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.8) (2015-02-17)
98
+
99
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.7...1.2.8)
100
+
101
+ **Closed issues:**
102
+
103
+ - Bugs, that closed simultaneously with push not appeared in correct version. [\#37](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/37)
104
+
105
+ **Merged pull requests:**
106
+
107
+ - Feature/fix 37 [\#49](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/49) ([github-changelog-generator](https://github.com/github-changelog-generator))
108
+
109
+ - Prettify output [\#48](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/48) ([github-changelog-generator](https://github.com/github-changelog-generator))
110
+
111
+ ## [1.2.7](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.7) (2015-01-26)
112
+
113
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.6...1.2.7)
114
+
115
+ **Merged pull requests:**
116
+
117
+ - Add compare link between older version and newer version [\#46](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/46) ([sue445](https://github.com/sue445))
118
+
119
+ ## [1.2.6](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.6) (2015-01-21)
120
+
121
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.5...1.2.6)
122
+
123
+ **Merged pull requests:**
124
+
125
+ - fix link tag format [\#45](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/45) ([sugamasao](https://github.com/sugamasao))
126
+
127
+ ## [1.2.5](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.5) (2015-01-15)
128
+
129
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.4...1.2.5)
130
+
131
+ **Implemented enhancements:**
132
+
133
+ - Use milestone to specify in which version bug was fixed [\#22](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/22)
134
+
135
+ **Fixed bugs:**
136
+
137
+ - Error when trying to generate log for repo without tags [\#32](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/32)
138
+
139
+ **Merged pull requests:**
140
+
141
+ - PrettyPrint class is included using lowercase 'pp' [\#43](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/43) ([schwing](https://github.com/schwing))
142
+
143
+ - support enterprise github via command line options [\#42](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/42) ([glenlovett](https://github.com/glenlovett))
144
+
145
+ ## [1.2.4](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.4) (2014-12-16)
146
+
147
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.3...1.2.4)
148
+
149
+ **Fixed bugs:**
150
+
151
+ - Sometimes user is NULL during merges [\#41](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/41)
152
+
153
+ - Crash when try generate log for rails [\#35](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/35)
154
+
155
+ ## [1.2.3](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.3) (2014-12-16)
156
+
157
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.2...1.2.3)
158
+
159
+ **Implemented enhancements:**
160
+
161
+ - Add ability to run with one parameter instead -u -p [\#38](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/38)
162
+
163
+ - Detailed output [\#33](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/33)
164
+
165
+ **Fixed bugs:**
166
+
167
+ - Docs lacking or basic behavior not as advertised [\#30](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/30)
168
+
169
+ **Merged pull requests:**
170
+
171
+ - Implement async fetching [\#39](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/39) ([github-changelog-generator](https://github.com/github-changelog-generator))
172
+
173
+ - Fix crash when user is NULL [\#40](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/40) ([github-changelog-generator](https://github.com/github-changelog-generator))
174
+
175
+ ## [1.2.2](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.2) (2014-12-10)
176
+
177
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.1...1.2.2)
178
+
179
+ **Fixed bugs:**
180
+
181
+ - Encapsulate \[ \> \* \_ \ \] signs in issues names [\#34](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/34)
182
+
183
+ **Merged pull requests:**
184
+
185
+ - Add a Bitdeli Badge to README [\#36](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/36) ([bitdeli-chef](https://github.com/bitdeli-chef))
186
+
187
+ ## [1.2.1](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.1) (2014-11-22)
188
+
189
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.0...1.2.1)
190
+
191
+ **Fixed bugs:**
192
+
193
+ - Script fills changelog only for first 30 tags. [\#20](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/20)
194
+
195
+ **Merged pull requests:**
196
+
197
+ - Issues for last tag not in list [\#29](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/29) ([github-changelog-generator](https://github.com/github-changelog-generator))
198
+
199
+ - Disable default --filter-pull-requests option. [\#28](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/28) ([github-changelog-generator](https://github.com/github-changelog-generator))
200
+
201
+ ## [1.2.0](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.0) (2014-11-19)
202
+
203
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.1.4...1.2.0)
204
+
205
+ **Merged pull requests:**
206
+
207
+ - Add filter for pull-requests labels. \(option --filter-pull-requests\) [\#27](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/27) ([github-changelog-generator](https://github.com/github-changelog-generator))
208
+
209
+ - Add ability to insert authors of pull-requests \(--\[no-\]author option\) [\#25](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/25) ([github-changelog-generator](https://github.com/github-changelog-generator))
210
+
211
+ - Don't receive issues in case of --no-isses flag specied [\#24](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/24) ([github-changelog-generator](https://github.com/github-changelog-generator))
212
+
213
+ ## [1.1.4](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.1.4) (2014-11-18)
214
+
215
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.1.2...1.1.4)
216
+
217
+ **Implemented enhancements:**
218
+
219
+ - Implement ability to retrieve GitHub token from ENV variable \(to not put it to script directly\) [\#19](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/19)
220
+
221
+ **Merged pull requests:**
222
+
223
+ - Sort tags by date [\#23](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/23) ([github-changelog-generator](https://github.com/github-changelog-generator))
224
+
225
+ ## [1.1.2](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.1.2) (2014-11-12)
226
+
227
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.1.1...1.1.2)
228
+
229
+ **Merged pull requests:**
230
+
231
+ - Fix bug with dot signs in project name [\#18](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/18) ([github-changelog-generator](https://github.com/github-changelog-generator))
232
+
233
+ - Fix bug with dot signs in user name [\#17](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/17) ([github-changelog-generator](https://github.com/github-changelog-generator))
234
+
235
+ ## [1.1.1](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.1.1) (2014-11-10)
236
+
237
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.1.0...1.1.1)
238
+
239
+ **Merged pull requests:**
240
+
241
+ - Remove duplicates of issues and pull-requests with same number [\#15](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/15) ([github-changelog-generator](https://github.com/github-changelog-generator))
242
+
243
+ - Sort issues by tags [\#14](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/14) ([github-changelog-generator](https://github.com/github-changelog-generator))
244
+
245
+ - Add ability to add or exclude issues without any labels [\#13](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/13) ([github-changelog-generator](https://github.com/github-changelog-generator))
246
+
247
+ ## [1.1.0](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.1.0) (2014-11-10)
248
+
249
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.0.1...1.1.0)
250
+
251
+ **Implemented enhancements:**
252
+
253
+ - Detect username and project form origin [\#11](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/11)
254
+
255
+ **Fixed bugs:**
256
+
257
+ - Bug with wrong credentials in 1.0.1 [\#12](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/12)
258
+
259
+ - Markdown formating in the last line wrong [\#9](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/9)
260
+
261
+ ## [1.0.1](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.0.1) (2014-11-10)
262
+
263
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.0.0...1.0.1)
264
+
265
+ ## [1.0.0](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.0.0) (2014-11-07)
266
+
267
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/0.1.0...1.0.0)
268
+
269
+ **Implemented enhancements:**
270
+
271
+ - Add support for fixed issues and implemented enchanments. [\#6](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/6)
272
+
273
+ - Implement option to specify output filename [\#4](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/4)
274
+
275
+ **Fixed bugs:**
276
+
277
+ - Last tag not appeared in changelog [\#5](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/5)
278
+
279
+ **Merged pull requests:**
280
+
281
+ - Implement support of different tags. [\#8](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/8) ([github-changelog-generator](https://github.com/github-changelog-generator))
282
+
283
+ - Add support for issues in CHANGELOG [\#7](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/7) ([github-changelog-generator](https://github.com/github-changelog-generator))
284
+
285
+ ## [0.1.0](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/0.1.0) (2014-11-07)
286
+
287
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/0.0.2...0.1.0)
288
+
289
+ **Merged pull requests:**
290
+
291
+ - Fix parsing date of pull request [\#3](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/3) ([github-changelog-generator](https://github.com/github-changelog-generator))
292
+
293
+ - Add changelog generation for last tag [\#2](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/2) ([github-changelog-generator](https://github.com/github-changelog-generator))
294
+
295
+ - Add option \(-o --output\) to specify name of the output file. [\#1](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/1) ([github-changelog-generator](https://github.com/github-changelog-generator))
296
+
297
+ ## [0.0.2](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/0.0.2) (2014-11-06)
298
+
299
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/0.0.1...0.0.2)
300
+
301
+ ## [0.0.1](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/0.0.1) (2014-11-06)
302
+
303
+
304
+
305
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/Github-Changelog-Generator)*
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe GitHubChangelogGenerator::ChangelogGenerator do
4
+ describe "#run" do
5
+ let(:arguments) { [] }
6
+ let(:instance) { described_class.new(arguments) }
7
+ let(:output_path) { File.join(__dir__, "tmp", "test.output") }
8
+
9
+ after { FileUtils.rm_rf(output_path) }
10
+
11
+ let(:generator) { instance_double(::GitHubChangelogGenerator::Generator) }
12
+
13
+ before do
14
+ allow(instance).to receive(:generator) { generator }
15
+ allow(generator).to receive(:compound_changelog) { "content" }
16
+ end
17
+
18
+ context "when full path given as the --output argument" do
19
+ let(:arguments) { ["--output", output_path] }
20
+ it "puts the complete output path to STDOUT" do
21
+ expect { instance.run }.to output(Regexp.new(output_path)).to_stdout
22
+ end
23
+ end
24
+
25
+ context "when empty value given as the --output argument" do
26
+ let(:arguments) { ["--output", ""] }
27
+ it "puts the complete output path to STDOUT" do
28
+ expect { instance.run }.to output(/content/).to_stdout
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "github_changelog_generator", path: Dir.glob("../pkg/github_changelog_generator-*.gem")[0]
@@ -0,0 +1,74 @@
1
+ # frozen_string_literal: true
2
+
3
+ #
4
+ # Author:: Enrico Stahn <mail@enricostahn.com>
5
+ #
6
+ # Copyright 2014, Zanui, <engineering@zanui.com.au>
7
+ #
8
+ # Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ # See the License for the specific language governing permissions and
18
+ # limitations under the License.
19
+ #
20
+ require "simplecov"
21
+ require "vcr"
22
+ require "webmock/rspec"
23
+
24
+ # This module is only used to check the environment is currently a testing env
25
+ module SpecHelper
26
+ end
27
+
28
+ SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter
29
+ SimpleCov.start do
30
+ add_filter "gemfiles/"
31
+ end
32
+
33
+ require "github_changelog_generator"
34
+ require "github_changelog_generator/task"
35
+
36
+ VCR.configure do |c|
37
+ c.allow_http_connections_when_no_cassette = true
38
+ c.cassette_library_dir = "spec/vcr"
39
+ c.ignore_localhost = true
40
+ c.default_cassette_options = {
41
+ record: :new_episodes,
42
+ serialize_with: :json,
43
+ preserve_exact_body_bytes: true,
44
+ decode_compressed_response: true
45
+ }
46
+ c.filter_sensitive_data("<GITHUB_TOKEN>") do
47
+ "token #{ENV.fetch('CHANGELOG_GITHUB_TOKEN', 'frobnitz')}"
48
+ end
49
+
50
+ c.configure_rspec_metadata!
51
+
52
+ c.hook_into :webmock, :faraday
53
+ end
54
+
55
+ RSpec.configure do |config|
56
+ config.expect_with :rspec do |expectations|
57
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
58
+ end
59
+
60
+ config.mock_with :rspec do |mocks|
61
+ mocks.verify_partial_doubles = true
62
+ end
63
+
64
+ config.filter_run :focus
65
+ config.run_all_when_everything_filtered = true
66
+
67
+ config.warnings = true
68
+
69
+ config.default_formatter = "doc" if config.files_to_run.one?
70
+
71
+ config.order = :random
72
+
73
+ Kernel.srand config.seed
74
+ end