Merge branch 'hotfix/update-changelog' into develop
This commit is contained in:
commit
1c37268c3d
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1 +1,7 @@
|
||||||
|
bin/
|
||||||
|
!bin/git-generate-changelog
|
||||||
|
!bin/github_changelog_generator
|
||||||
|
pkg/
|
||||||
coverage/
|
coverage/
|
||||||
|
.bundle
|
||||||
|
spec/*.lock
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
sudo: false
|
cache:
|
||||||
|
- bundler
|
||||||
language: ruby
|
language: ruby
|
||||||
before_install:
|
before_install:
|
||||||
- gem update --system
|
- gem update --system
|
||||||
- gem install bundler
|
- gem install bundler
|
||||||
rvm:
|
rvm:
|
||||||
- 2.1.0
|
- 2.1
|
||||||
script: bundle exec rake checks
|
script: bundle exec rake checks
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
|
@ -13,6 +14,10 @@ matrix:
|
||||||
script:
|
script:
|
||||||
- gem build github_changelog_generator
|
- gem build github_changelog_generator
|
||||||
- gem install *.gem
|
- gem install *.gem
|
||||||
|
- install: true
|
||||||
|
script:
|
||||||
|
- gem build github_changelog_generator
|
||||||
|
- bundle install --gemfile spec/install-gem-in-bundler.gemfile
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
recipients:
|
recipients:
|
||||||
|
|
31
CHANGELOG.md
31
CHANGELOG.md
|
@ -1,5 +1,36 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## [1.11.8](https://github.com/skywinder/github-changelog-generator/tree/1.11.8) (2016-03-22)
|
||||||
|
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.7...1.11.8)
|
||||||
|
|
||||||
|
**Implemented enhancements:**
|
||||||
|
|
||||||
|
- ParserFile: Allow comments in settings file [\#358](https://github.com/skywinder/github-changelog-generator/pull/358) ([olleolleolle](https://github.com/olleolleolle))
|
||||||
|
|
||||||
|
**Fixed bugs:**
|
||||||
|
|
||||||
|
- Error when specifying exclude\_labels [\#327](https://github.com/skywinder/github-changelog-generator/issues/327)
|
||||||
|
- Parse options file options into arrays, integers, flags, and other [\#354](https://github.com/skywinder/github-changelog-generator/pull/354) ([olleolleolle](https://github.com/olleolleolle))
|
||||||
|
|
||||||
|
**Closed issues:**
|
||||||
|
|
||||||
|
- Installation fails on Ubuntu [\#352](https://github.com/skywinder/github-changelog-generator/issues/352)
|
||||||
|
- Test installing on Windows: use AppVeyor [\#348](https://github.com/skywinder/github-changelog-generator/issues/348)
|
||||||
|
- Can't run under RubyGems 2.5.1 and Ruby 2.3.0 [\#325](https://github.com/skywinder/github-changelog-generator/issues/325)
|
||||||
|
- Ruby 2.3.0 - Deprecation warning: Github::ResponseWrapper\#respond\_to?\(:to\_ary\) is old fashion which takes only one parameter [\#323](https://github.com/skywinder/github-changelog-generator/issues/323)
|
||||||
|
- between-tags and exclude-tags do not work in .github\_changelog\_generator [\#317](https://github.com/skywinder/github-changelog-generator/issues/317)
|
||||||
|
- Add a "documentation" label [\#284](https://github.com/skywinder/github-changelog-generator/issues/284)
|
||||||
|
|
||||||
|
**Merged pull requests:**
|
||||||
|
|
||||||
|
- Replace shelling-out-to-Git w/ Dir call [\#360](https://github.com/skywinder/github-changelog-generator/pull/360) ([olleolleolle](https://github.com/olleolleolle))
|
||||||
|
- ParserFile: fail parsing with config file line number; use a File instead of a filename [\#357](https://github.com/skywinder/github-changelog-generator/pull/357) ([olleolleolle](https://github.com/olleolleolle))
|
||||||
|
- On gem install, do not try to copy manpage files in the "extensions" step [\#356](https://github.com/skywinder/github-changelog-generator/pull/356) ([olleolleolle](https://github.com/olleolleolle))
|
||||||
|
- Refactor: call it option\_name, instead of key\_sym [\#355](https://github.com/skywinder/github-changelog-generator/pull/355) ([olleolleolle](https://github.com/olleolleolle))
|
||||||
|
- Add a `bundle install` test [\#353](https://github.com/skywinder/github-changelog-generator/pull/353) ([jkeiser](https://github.com/jkeiser))
|
||||||
|
- Add an AppVeyor config [\#350](https://github.com/skywinder/github-changelog-generator/pull/350) ([Arcanemagus](https://github.com/Arcanemagus))
|
||||||
|
- README: Document GitHub token URI scope [\#345](https://github.com/skywinder/github-changelog-generator/pull/345) ([olleolleolle](https://github.com/olleolleolle))
|
||||||
|
|
||||||
## [1.11.7](https://github.com/skywinder/github-changelog-generator/tree/1.11.7) (2016-03-04)
|
## [1.11.7](https://github.com/skywinder/github-changelog-generator/tree/1.11.7) (2016-03-04)
|
||||||
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.6...1.11.7)
|
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.6...1.11.7)
|
||||||
|
|
||||||
|
|
16
Gemfile.lock
16
Gemfile.lock
|
@ -17,10 +17,10 @@ GEM
|
||||||
ast (2.2.0)
|
ast (2.2.0)
|
||||||
childprocess (0.5.9)
|
childprocess (0.5.9)
|
||||||
ffi (~> 1.0, >= 1.0.11)
|
ffi (~> 1.0, >= 1.0.11)
|
||||||
codeclimate-test-reporter (0.4.8)
|
codeclimate-test-reporter (0.5.0)
|
||||||
simplecov (>= 0.7.1, < 1.0.0)
|
simplecov (>= 0.7.1, < 1.0.0)
|
||||||
colorize (0.7.7)
|
colorize (0.7.7)
|
||||||
coveralls (0.8.11)
|
coveralls (0.8.13)
|
||||||
json (~> 1.8)
|
json (~> 1.8)
|
||||||
simplecov (~> 0.11.0)
|
simplecov (~> 0.11.0)
|
||||||
term-ansicolor (~> 1.3)
|
term-ansicolor (~> 1.3)
|
||||||
|
@ -61,12 +61,12 @@ GEM
|
||||||
powerpack (0.1.1)
|
powerpack (0.1.1)
|
||||||
rack (1.6.4)
|
rack (1.6.4)
|
||||||
rainbow (2.1.0)
|
rainbow (2.1.0)
|
||||||
rake (10.5.0)
|
rake (11.0.1)
|
||||||
rspec (3.4.0)
|
rspec (3.4.0)
|
||||||
rspec-core (~> 3.4.0)
|
rspec-core (~> 3.4.0)
|
||||||
rspec-expectations (~> 3.4.0)
|
rspec-expectations (~> 3.4.0)
|
||||||
rspec-mocks (~> 3.4.0)
|
rspec-mocks (~> 3.4.0)
|
||||||
rspec-core (3.4.3)
|
rspec-core (3.4.4)
|
||||||
rspec-support (~> 3.4.0)
|
rspec-support (~> 3.4.0)
|
||||||
rspec-expectations (3.4.0)
|
rspec-expectations (3.4.0)
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
@ -75,12 +75,12 @@ GEM
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
rspec-support (~> 3.4.0)
|
rspec-support (~> 3.4.0)
|
||||||
rspec-support (3.4.1)
|
rspec-support (3.4.1)
|
||||||
rubocop (0.37.2)
|
rubocop (0.38.0)
|
||||||
parser (>= 2.3.0.4, < 3.0)
|
parser (>= 2.3.0.6, < 3.0)
|
||||||
powerpack (~> 0.1)
|
powerpack (~> 0.1)
|
||||||
rainbow (>= 1.99.1, < 3.0)
|
rainbow (>= 1.99.1, < 3.0)
|
||||||
ruby-progressbar (~> 1.7)
|
ruby-progressbar (~> 1.7)
|
||||||
unicode-display_width (~> 0.3)
|
unicode-display_width (~> 1.0, >= 1.0.1)
|
||||||
ruby-progressbar (1.7.5)
|
ruby-progressbar (1.7.5)
|
||||||
simplecov (0.11.2)
|
simplecov (0.11.2)
|
||||||
docile (~> 1.1.0)
|
docile (~> 1.1.0)
|
||||||
|
@ -92,7 +92,7 @@ GEM
|
||||||
thor (0.19.1)
|
thor (0.19.1)
|
||||||
thread_safe (0.3.5)
|
thread_safe (0.3.5)
|
||||||
tins (1.6.0)
|
tins (1.6.0)
|
||||||
unicode-display_width (0.3.1)
|
unicode-display_width (1.0.1)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
|
|
@ -101,7 +101,7 @@ Therefore, it's recommended to run this script with authentication by using a **
|
||||||
|
|
||||||
Here's how:
|
Here's how:
|
||||||
|
|
||||||
- [Generate a token here](https://github.com/settings/tokens/new?description=GitHub%20Changelog%20Generator%20token)
|
- [Generate a token here](https://github.com/settings/tokens/new?description=GitHub%20Changelog%20Generator%20token) - you only need "repo" scope for private repositories
|
||||||
- Either:
|
- Either:
|
||||||
- Run the script with `--token <your-40-digit-token>`; **OR**
|
- Run the script with `--token <your-40-digit-token>`; **OR**
|
||||||
- Set the `CHANGELOG_GITHUB_TOKEN` environment variable to your 40 digit token
|
- Set the `CHANGELOG_GITHUB_TOKEN` environment variable to your 40 digit token
|
||||||
|
|
50
appveyor.yml
Normal file
50
appveyor.yml
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
version: "{build}"
|
||||||
|
|
||||||
|
platform: x64
|
||||||
|
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
|
||||||
|
clone_depth: 10
|
||||||
|
|
||||||
|
skip_tags: true
|
||||||
|
|
||||||
|
# See here for Ruby versions pre-installed:
|
||||||
|
# http://www.appveyor.com/docs/installed-software#ruby
|
||||||
|
environment:
|
||||||
|
matrix:
|
||||||
|
- ruby_version: "21" # Older version, but matches Travis-CI
|
||||||
|
- ruby_version: "21-x64"
|
||||||
|
|
||||||
|
install:
|
||||||
|
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
|
||||||
|
|
||||||
|
# Print version and location for pre-installed ruby
|
||||||
|
- ruby --version
|
||||||
|
- where ruby
|
||||||
|
|
||||||
|
# Install latest version of RubyGems
|
||||||
|
- gem update --system --no-document --no-post-install-message
|
||||||
|
- gem --version
|
||||||
|
- where gem
|
||||||
|
|
||||||
|
# Print version and location for pre-installed bundler
|
||||||
|
- bundler --version
|
||||||
|
- where bundler
|
||||||
|
|
||||||
|
build_script:
|
||||||
|
# Install ruby dependencies
|
||||||
|
- bundle install --retry 3
|
||||||
|
- bundle exec rake checks
|
||||||
|
|
||||||
|
test_script:
|
||||||
|
- gem build github_changelog_generator
|
||||||
|
- gem install *.gem
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
- provider: Email
|
||||||
|
to:
|
||||||
|
- sky4winder+githubchangeloggenerator@gmail.com
|
||||||
|
on_build_success: false
|
||||||
|
on_build_status_changed: true
|
|
@ -16,9 +16,9 @@ Gem::Specification.new do |spec|
|
||||||
spec.description = "Changelog generation has never been so easy. Fully automate changelog generation - this gem generate change log file based on tags, issues and merged pull requests from Github issue tracker."
|
spec.description = "Changelog generation has never been so easy. Fully automate changelog generation - this gem generate change log file based on tags, issues and merged pull requests from Github issue tracker."
|
||||||
spec.homepage = "https://github.com/skywinder/Github-Changelog-Generator"
|
spec.homepage = "https://github.com/skywinder/Github-Changelog-Generator"
|
||||||
spec.license = "MIT"
|
spec.license = "MIT"
|
||||||
spec.extensions = ["Rakefile"]
|
|
||||||
|
|
||||||
spec.files = `git ls-files -z`.split("\x0")
|
spec.files = Dir['{bin,lib,man,spec}/**/*', 'Rakefile', 'README.md']
|
||||||
|
|
||||||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
||||||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
||||||
spec.require_paths = ["lib"]
|
spec.require_paths = ["lib"]
|
||||||
|
|
|
@ -3,34 +3,59 @@ require "pathname"
|
||||||
module GitHubChangelogGenerator
|
module GitHubChangelogGenerator
|
||||||
ParserError = Class.new(StandardError)
|
ParserError = Class.new(StandardError)
|
||||||
|
|
||||||
|
# ParserFile is a configuration file reader which sets options in the
|
||||||
|
# given Hash.
|
||||||
|
#
|
||||||
|
# In your project's root, you can put a file named
|
||||||
|
# <tt>.github_changelog_generator</tt> to override defaults.
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
# header_label=# My Super Changelog
|
||||||
|
# ; Comments are allowed
|
||||||
|
# future-release=5.0.0
|
||||||
|
# # Ruby-style comments, too
|
||||||
|
# since-tag=1.0.0
|
||||||
|
#
|
||||||
|
# The configuration format is <tt>some-key=value</tt> or <tt>some_key=value</tt>.
|
||||||
|
#
|
||||||
class ParserFile
|
class ParserFile
|
||||||
FILENAME = ".github_changelog_generator"
|
# @param options [Hash] options to be configured from file contents
|
||||||
|
# @param file [nil,IO] configuration file handle, defaults to opening `.github_changelog_generator`
|
||||||
def initialize(options)
|
def initialize(options, file = open_settings_file)
|
||||||
@options = options
|
@options = options
|
||||||
|
@file = file
|
||||||
end
|
end
|
||||||
|
|
||||||
# Destructively change @options using data in configured options file.
|
# Sets options using configuration file content
|
||||||
def parse!
|
def parse!
|
||||||
file.each_line { |line| parse_line!(line) } if file.exist?
|
return unless @file
|
||||||
|
@file.each_with_index { |line, i| parse_line!(line, i + 1) }
|
||||||
|
@file.close
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def file
|
FILENAME = ".github_changelog_generator"
|
||||||
@file ||= Pathname(File.expand_path(@options[:params_file] || FILENAME))
|
|
||||||
|
def open_settings_file
|
||||||
|
path = Pathname(File.expand_path(FILENAME))
|
||||||
|
File.open(path) if path.exist?
|
||||||
end
|
end
|
||||||
|
|
||||||
def parse_line!(line)
|
def parse_line!(line, line_number)
|
||||||
key_sym, value = extract_pair(line)
|
return if non_configuration_line?(line)
|
||||||
value = true if value =~ /^(true|t|yes|y|1)$/i
|
option_name, value = extract_pair(line)
|
||||||
value = false if value =~ /^(false|f|no|n|0)$/i
|
@options[option_key_for(option_name)] = convert_value(value, option_name)
|
||||||
@options[key_sym] = value
|
|
||||||
rescue
|
rescue
|
||||||
raise ParserError, "Config file #{file} is incorrect in line \"#{line.gsub(/[\n\r]+/, '')}\""
|
raise ParserError, "Failed on line ##{line_number}: \"#{line.gsub(/[\n\r]+/, '')}\""
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns a the setting as a symbol and its string value sans newlines.
|
# Returns true if the line starts with a pound sign or a semi-colon.
|
||||||
|
def non_configuration_line?(line)
|
||||||
|
line =~ /^[\#;]/ || line =~ /^[\s]+$/
|
||||||
|
end
|
||||||
|
|
||||||
|
# Returns a the option name as a symbol and its string value sans newlines.
|
||||||
#
|
#
|
||||||
# @param line [String] unparsed line from config file
|
# @param line [String] unparsed line from config file
|
||||||
# @return [Array<Symbol, String>]
|
# @return [Array<Symbol, String>]
|
||||||
|
@ -38,5 +63,41 @@ module GitHubChangelogGenerator
|
||||||
key, value = line.split("=", 2)
|
key, value = line.split("=", 2)
|
||||||
[key.sub("-", "_").to_sym, value.gsub(/[\n\r]+/, "")]
|
[key.sub("-", "_").to_sym, value.gsub(/[\n\r]+/, "")]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
KNOWN_ARRAY_KEYS = [:exclude_labels, :include_labels, :bug_labels,
|
||||||
|
:enhancement_labels, :between_tags, :exclude_tags]
|
||||||
|
KNOWN_INTEGER_KEYS = [:max_issues]
|
||||||
|
|
||||||
|
def convert_value(value, option_name)
|
||||||
|
if KNOWN_ARRAY_KEYS.include?(option_name)
|
||||||
|
value.split(",")
|
||||||
|
elsif KNOWN_INTEGER_KEYS.include?(option_name)
|
||||||
|
value.to_i
|
||||||
|
elsif value =~ /^(true|t|yes|y|1)$/i
|
||||||
|
true
|
||||||
|
elsif value =~ /^(false|f|no|n|0)$/i
|
||||||
|
false
|
||||||
|
else
|
||||||
|
value
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
IRREGULAR_OPTIONS = {
|
||||||
|
bugs_label: :bug_prefix,
|
||||||
|
enhancement_label: :enhancement_prefix,
|
||||||
|
issues_label: :issue_prefix,
|
||||||
|
header_label: :header,
|
||||||
|
front_matter: :frontmatter,
|
||||||
|
pr_label: :merge_prefix,
|
||||||
|
issues_wo_labels: :add_issues_wo_labels,
|
||||||
|
pr_wo_labels: :add_pr_wo_labels,
|
||||||
|
pull_requests: :pulls,
|
||||||
|
filter_by_milestone: :filter_issues_by_milestone,
|
||||||
|
github_api: :github_endpoint
|
||||||
|
}
|
||||||
|
|
||||||
|
def option_key_for(option_name)
|
||||||
|
IRREGULAR_OPTIONS.fetch(option_name) { option_name }
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
exclude-labels=73a91042-da6f-11e5-9335-1040f38d7f90,7adf83b4-da6f-11e5-ae18-1040f38d7f90
|
|
|
@ -1,2 +0,0 @@
|
||||||
unreleased_label: staging
|
|
||||||
unreleased: false
|
|
|
@ -1,3 +0,0 @@
|
||||||
unreleased_label=staging
|
|
||||||
unreleased=false
|
|
||||||
header==== Changelog ===
|
|
3
spec/install-gem-in-bundler.gemfile
Normal file
3
spec/install-gem-in-bundler.gemfile
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
gem "github_changelog_generator", path: Dir.glob("../pkg/github_changelog_generator-*.gem")[0]
|
|
@ -1,36 +1,47 @@
|
||||||
describe GitHubChangelogGenerator::ParserFile do
|
describe GitHubChangelogGenerator::ParserFile do
|
||||||
describe ".github_changelog_generator" do
|
describe ".github_changelog_generator" do
|
||||||
context "when no has file" do
|
let(:options) { {} }
|
||||||
let(:options) { {} }
|
|
||||||
let(:parse) { GitHubChangelogGenerator::ParserFile.new(options) }
|
context "when the well-known default file does not exist" do
|
||||||
subject { parse.parse! }
|
let(:parser) { GitHubChangelogGenerator::ParserFile.new(options) }
|
||||||
|
subject { parser.parse! }
|
||||||
it { is_expected.to be_nil }
|
it { is_expected.to be_nil }
|
||||||
end
|
end
|
||||||
|
|
||||||
context "when file is empty" do
|
context "when file is empty" do
|
||||||
let(:options) { { params_file: "spec/files/github_changelog_params_empty" } }
|
let(:parser) { GitHubChangelogGenerator::ParserFile.new(options, StringIO.new("")) }
|
||||||
let(:parse) { GitHubChangelogGenerator::ParserFile.new(options) }
|
|
||||||
|
|
||||||
it "does not change the options" do
|
it "does not change the options" do
|
||||||
expect { parse.parse! }.to_not change { options }
|
expect { parser.parse! }.to_not change { options }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context "when file is incorrect" do
|
context "when file is incorrect" do
|
||||||
let(:options) { { params_file: "spec/files/github_changelog_params_incorrect" } }
|
|
||||||
let(:options_before_change) { options.dup }
|
let(:options_before_change) { options.dup }
|
||||||
let(:parse) { GitHubChangelogGenerator::ParserFile.new(options) }
|
let(:file) { StringIO.new("unreleased_label=staging\nunreleased: false") }
|
||||||
it { expect { parse.parse! }.to raise_error(GitHubChangelogGenerator::ParserError) }
|
let(:parser) do
|
||||||
|
GitHubChangelogGenerator::ParserFile.new(options, file)
|
||||||
|
end
|
||||||
|
it { expect { parser.parse! }.to raise_error(/line #2/) }
|
||||||
|
end
|
||||||
|
|
||||||
|
context "allows empty lines and comments with semi-colon or pound sign" do
|
||||||
|
let(:file) { StringIO.new("\n \n# Comment on first line\nunreleased_label=staging\n; Comment on third line\nunreleased=false") }
|
||||||
|
let(:parser) do
|
||||||
|
GitHubChangelogGenerator::ParserFile.new(options, file)
|
||||||
|
end
|
||||||
|
it { expect { parser.parse! }.not_to raise_error }
|
||||||
end
|
end
|
||||||
|
|
||||||
context "when override default values" do
|
context "when override default values" do
|
||||||
let(:default_options) { GitHubChangelogGenerator::Parser.default_options }
|
let(:default_options) { GitHubChangelogGenerator::Parser.default_options }
|
||||||
let(:options) { { params_file: "spec/files/github_changelog_params_override" }.merge(default_options) }
|
let(:options) { {}.merge(default_options) }
|
||||||
let(:options_before_change) { options.dup }
|
let(:options_before_change) { options.dup }
|
||||||
let(:parse) { GitHubChangelogGenerator::ParserFile.new(options) }
|
let(:file) { StringIO.new("unreleased_label=staging\nunreleased=false\nheader==== Changelog ===") }
|
||||||
|
let(:parser) { GitHubChangelogGenerator::ParserFile.new(options, file) }
|
||||||
|
|
||||||
it "changes the options" do
|
it "changes the options" do
|
||||||
expect { parse.parse! }.to change { options }
|
expect { parser.parse! }.to change { options }
|
||||||
.from(options_before_change)
|
.from(options_before_change)
|
||||||
.to(options_before_change.merge(unreleased_label: "staging",
|
.to(options_before_change.merge(unreleased_label: "staging",
|
||||||
unreleased: false,
|
unreleased: false,
|
||||||
|
@ -38,17 +49,24 @@ describe GitHubChangelogGenerator::ParserFile do
|
||||||
end
|
end
|
||||||
|
|
||||||
context "turns exclude-labels into an Array", bug: '#327' do
|
context "turns exclude-labels into an Array", bug: '#327' do
|
||||||
let(:options) do
|
let(:file) do
|
||||||
{
|
StringIO.new(<<EOF
|
||||||
params_file: "spec/files/github_changelog_params_327"
|
exclude-labels=73a91042-da6f-11e5-9335-1040f38d7f90,7adf83b4-da6f-11e5-ae18-1040f38d7f90
|
||||||
}
|
header_label=# My changelog
|
||||||
|
EOF
|
||||||
|
)
|
||||||
end
|
end
|
||||||
it "reads exclude_labels into an Array" do
|
it "reads exclude_labels into an Array" do
|
||||||
pending("Related with Bug #327.")
|
expect { parser.parse! }.to change { options[:exclude_labels] }
|
||||||
expect { parse.parse! }.to change { options[:exclude_labels] }
|
.from(default_options[:exclude_labels])
|
||||||
.from(nil)
|
|
||||||
.to(["73a91042-da6f-11e5-9335-1040f38d7f90", "7adf83b4-da6f-11e5-ae18-1040f38d7f90"])
|
.to(["73a91042-da6f-11e5-9335-1040f38d7f90", "7adf83b4-da6f-11e5-ae18-1040f38d7f90"])
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it "translates given header_label into the :header option" do
|
||||||
|
expect { parser.parse! }.to change { options[:header] }
|
||||||
|
.from(default_options[:header])
|
||||||
|
.to("# My changelog")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user