chchchanges 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 02e6a1cfe609c3ca5b4ee80e93aaee9f88e466a2
4
+ data.tar.gz: ceb6cbc827e904f7600c03b134b3037688afdf1e
5
+ SHA512:
6
+ metadata.gz: 6307ec5cc81dfa4e195693e8b35aef7222614a61f4309ca8badbf499bfa107a1d629bb4ba56ce27e05027fadadbbf741b07488c525b89810840f38929d089fcf
7
+ data.tar.gz: 042d90017b3b30d6ee013c859914c2f7e5968e07064db5eaf52637d0f71d85dd0270d9ac50a40657214c5fc835efc1cb16cbb14ffd5848ee643aebe5ed296734
@@ -0,0 +1 @@
1
+ {"type":"Fixed","ticket":"","url":"","description":"Fixed the CHANGELOG generator feature from writing the changelog to 9CHANGELOG","version":"0.1.0","tags":[]}
@@ -0,0 +1 @@
1
+ {"type":"Added","ticket":"","url":"","description":"Initial functionality with CHANGELOG entry, generator, and parser features","version":"0.1.0","tags":[]}
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ steps.md
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.1.5
5
+ before_install: gem install bundler -v 1.13.6
data/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # Change Log
2
+
3
+ ## [0.1.0]
4
+ ### Added
5
+ - [] Initial functionality with CHANGELOG entry, generator, and parser features
6
+ ### Fixed
7
+ - [] Fixed the CHANGELOG generator feature from writing the changelog to 9CHANGELOG
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at ezell@rbmtechnologies.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in chchchanges.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Eric Zell
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # Chchchanges
2
+
3
+ ### chchchanges makes it convenient to create and maintain a proper CHANGELOG.
4
+
5
+ With chchchanges, users can create CHANGELOG entries from the command line. Each
6
+ entry is saved as in individual .json file which prevents CHANGELOG merge conflicts.
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ ```ruby
13
+ gem 'chchchanges'
14
+ ```
15
+
16
+ And then execute:
17
+
18
+ $ bundle
19
+
20
+ Or install it yourself as:
21
+
22
+ $ gem install chchchanges
23
+
24
+ ## Usage
25
+
26
+ TODO: Write usage instructions here
27
+
28
+ ## Development
29
+
30
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
31
+
32
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
33
+
34
+ ## Contributing
35
+
36
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/chchchanges. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
37
+
38
+
39
+ ## License
40
+
41
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "chchchanges"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,38 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'chchchanges/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "chchchanges"
8
+ spec.version = Chchchanges::VERSION
9
+ spec.authors = ["Eric Zell"]
10
+ spec.email = ["ericjzell@gmail.com"]
11
+
12
+ spec.summary = %q{chchchanges makes it convenient to create and maintain a proper CHANGELOG.}
13
+ spec.description = %q{chchchanges makes it convenient to create and maintain a proper CHANGELOG.
14
+ Users can create CHANGELOG entries from the command line. Each entry is saved
15
+ as in individual .json file which prevents CHANGELOG merge conflicts.}
16
+ spec.homepage = "https://github.com/EricJZell/chchchanges"
17
+ spec.license = "MIT"
18
+
19
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
20
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
21
+ # if spec.respond_to?(:metadata)
22
+ # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
23
+ # else
24
+ # raise "RubyGems 2.0 or newer is required to protect against " \
25
+ # "public gem pushes."
26
+ # end
27
+
28
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
29
+ f.match(%r{^(test|spec|features)/})
30
+ end
31
+ spec.bindir = "exe"
32
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
33
+ spec.require_paths = ["lib"]
34
+
35
+ spec.add_development_dependency "bundler", "~> 1.13"
36
+ spec.add_development_dependency "rake", "~> 10.0"
37
+ spec.add_development_dependency "rspec", "~> 3.0"
38
+ end
data/exe/chchchanges ADDED
@@ -0,0 +1,49 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
4
+
5
+ require 'chchchanges'
6
+ require 'optparse'
7
+
8
+ options = {}
9
+
10
+ option_parser = OptionParser.new do |opts|
11
+ executable_name = File.basename($PROGRAM_NAME)
12
+ opts.banner = "
13
+ Chchchanges makes it convenient to create and maintain a proper CHANGELOG.
14
+
15
+ Usage: chchchanges [options]
16
+ "
17
+
18
+ opts.on('-e', '--entry', 'Create a CHANGELOG entry') do
19
+ options[:entry] = true
20
+ end
21
+
22
+ opts.on('-g', '--generator', 'Generate a CHANGELOG from existing entries') do
23
+ options[:generator] = true
24
+ end
25
+
26
+ opts.on('-p', '--parser', 'Parse an existing CHANGELOG into individual .json files') do
27
+ options[:parser] = true
28
+ end
29
+
30
+ end
31
+
32
+ begin
33
+ option_parser.parse!
34
+ rescue OptionParser::InvalidOption => error
35
+ puts "Spydecz doesn't recognize that #{ error }"
36
+ exit
37
+ rescue OptionParser::AmbiguousOption => error
38
+ puts "That's an #{ error}"
39
+ exit
40
+ end
41
+
42
+ if options.empty?
43
+ puts " error: you must enter a --entry, --generator, or --paser option"
44
+ puts option_parser.help
45
+ else
46
+ Chchchanges::Entry.new.call if options[:entry]
47
+ Chchchanges::Generator.new.call if options[:generator]
48
+ Chchchanges::Parser.new.call if options[:parser]
49
+ end
@@ -0,0 +1,8 @@
1
+ require "chchchanges/version"
2
+ require "chchchanges/entry"
3
+ require "chchchanges/generator"
4
+ require "chchchanges/parser"
5
+
6
+ module Chchchanges
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,91 @@
1
+ require 'json'
2
+ require 'securerandom'
3
+ module Chchchanges
4
+ class Entry
5
+
6
+ def initialize
7
+ end
8
+
9
+ def call
10
+ Dir.mkdir('.changelog_entries') unless Dir.exists?('.changelog_entries')
11
+ write_to_file
12
+ end
13
+
14
+ private
15
+
16
+ def get_version
17
+ puts "What is the targeted release version for this change? (example '15.5.11')"
18
+ user_input = gets.chomp
19
+ if user_input.match(/^(\d+\.)+\d+$/)
20
+ return user_input
21
+ else
22
+ handle_unexpected_input(user_input, "Invalid version number")
23
+ get_version
24
+ end
25
+ end
26
+
27
+ def get_type
28
+ change_types_hash = {
29
+ 1 => "Added", 2 => "Changed", 3 => "Fixed", 4 => "Deprecated",
30
+ 5 => "Removed", 6 => "Security", 7 => "Unspecified"
31
+ }
32
+ puts "What type of change is this?\n"
33
+ change_types_hash.each do |number, change_type|
34
+ puts "#{number} - #{change_type}\n"
35
+ end
36
+ user_input = gets.chomp
37
+ if change_types_hash.keys.include?(user_input.to_i)
38
+ return change_types_hash[user_input.to_i]
39
+ else
40
+ handle_unexpected_input(user_input, "Invalid change type selection")
41
+ get_type
42
+ end
43
+ end
44
+
45
+ def get_tags
46
+ puts "Please enter any tags, comma separated. (Optional)"
47
+ tags = gets.chomp.split(',')
48
+ tags.map! { |tag| tag.strip}
49
+ end
50
+
51
+ def get_ticket
52
+ puts "Please enter Ticket # (Optional):"
53
+ ticket = gets.chomp
54
+ end
55
+
56
+ def get_description
57
+ puts "Please enter a description for this change (at least 5 characters):"
58
+ description = gets.chomp
59
+ if description.match(/^.{5}/)
60
+ return description
61
+ else
62
+ handle_unexpected_input(description, "Invalid Description")
63
+ get_description
64
+ end
65
+ end
66
+
67
+ def handle_unexpected_input(input, message)
68
+ if input.downcase == 'q'
69
+ puts "Goodbye!"
70
+ exit
71
+ else
72
+ puts message
73
+ end
74
+ end
75
+
76
+ def write_to_file
77
+ version = get_version
78
+ info = {
79
+ type: get_type,
80
+ ticket: get_ticket,
81
+ url: "",
82
+ description: get_description,
83
+ version: version,
84
+ tags: get_tags
85
+ }.to_json
86
+ File.write(".changelog_entries/#{Time.now.strftime("%Y_%m_%d_%H%M")}_v#{version}.json", info)
87
+ end
88
+
89
+ end
90
+
91
+ end
@@ -0,0 +1,48 @@
1
+ require 'json'
2
+ module Chchchanges
3
+ class Generator
4
+ attr_accessor :changelog_hash, :changelog
5
+
6
+ def initialize
7
+ @changelog_hash = {}
8
+ @changelog = "# Change Log\n"
9
+ end
10
+
11
+ def call
12
+ read_changelog_entry_files
13
+ write_to_changelog_file
14
+ end
15
+
16
+ private
17
+
18
+ def read_changelog_entry_files
19
+ Dir.foreach('.changelog_entries') do |json_file|
20
+ next if json_file == '.' or json_file == '..'
21
+ entry = File.read(".changelog_entries/#{json_file}")
22
+ entry_hash = JSON.parse(entry)
23
+ version = entry_hash["version"]
24
+ type = entry_hash["type"]
25
+ description = entry_hash["description"]
26
+ ticket = entry_hash["ticket"]
27
+ @changelog_hash[version] = {} unless changelog_hash[version]
28
+ @changelog_hash[version][type] = [] unless changelog_hash[version][type]
29
+ @changelog_hash[version][type] << "- [#{ticket}] #{description}\n"
30
+ end
31
+ end
32
+
33
+ def write_to_changelog_file
34
+ versions = @changelog_hash.keys.sort_by{|v| Gem::Version.new(v)}.reverse
35
+ versions.each do |version|
36
+ change_types = changelog_hash[version]
37
+ @changelog << "\n## [#{version}]\n"
38
+ change_types.sort.each do |type, changes|
39
+ @changelog << "### #{type}\n"
40
+ changes.sort.each do |change|
41
+ @changelog << change
42
+ end
43
+ end
44
+ end
45
+ File.write('CHANGELOG.md', @changelog)
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,78 @@
1
+ require 'json'
2
+ require 'securerandom'
3
+ module Chchchanges
4
+ class Parser
5
+ attr_accessor :entries, :version, :type
6
+
7
+ def initialize
8
+ @entries = []
9
+ @version = ""
10
+ @type = ""
11
+ end
12
+
13
+ def call
14
+ Dir.mkdir('.changelog_entries') unless Dir.exists?('.changelog_entries')
15
+ parse_changelog
16
+ write_to_files
17
+ end
18
+
19
+ private
20
+
21
+ def get_version(line)
22
+ line.match(/\[(.*?)\]/)[1]
23
+ end
24
+
25
+ def get_type(line)
26
+ line.gsub('### ', '')
27
+ end
28
+
29
+ def get_description(line)
30
+ match = line.match(/^.*[\]\-] /)[0]
31
+ line.gsub(match, '')
32
+ end
33
+
34
+ def get_ticket(line)
35
+ match = line.match(/\[(.*?)\]/)
36
+ match ? match[1] : ""
37
+ end
38
+
39
+ def create_entry(line, version, type)
40
+ description = get_description(line)
41
+ ticket = get_ticket(line)
42
+ info = {
43
+ type: type,
44
+ ticket: ticket,
45
+ url: "",
46
+ description: description,
47
+ version: version,
48
+ tags: []
49
+ }.to_json
50
+ @entries << info
51
+ end
52
+
53
+ def parse_changelog
54
+ changelog_lines = File.readlines('CHANGELOG.md')
55
+ changelog_lines.each_with_index do |line, index|
56
+ line.strip!
57
+ if line.start_with?('## [')
58
+ @version = get_version(line)
59
+ elsif line.start_with?('###')
60
+ @type = get_type(line)
61
+ elsif line.start_with?('-')
62
+ create_entry(line, version, type)
63
+ elsif line.empty?
64
+ else
65
+ puts "Warning: Unexpected input at line #{index + 1}"
66
+ end
67
+ end
68
+ end
69
+
70
+ def write_to_files
71
+ @entries = @entries.uniq
72
+ @entries.each do |entry|
73
+ File.write(".changelog_entries/#{SecureRandom.hex}.json", entry)
74
+ end
75
+ end
76
+
77
+ end
78
+ end
@@ -0,0 +1,3 @@
1
+ module Chchchanges
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,110 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chchchanges
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Eric Zell
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-12-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.13'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.13'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: |-
56
+ chchchanges makes it convenient to create and maintain a proper CHANGELOG.
57
+ Users can create CHANGELOG entries from the command line. Each entry is saved
58
+ as in individual .json file which prevents CHANGELOG merge conflicts.
59
+ email:
60
+ - ericjzell@gmail.com
61
+ executables:
62
+ - chchchanges
63
+ extensions: []
64
+ extra_rdoc_files: []
65
+ files:
66
+ - ".changelog_entries/1192b2e6cfb3c57360e4a90adb105f24.json"
67
+ - ".changelog_entries/66dcb740d4c86e3ba889d7831baf7d30.json"
68
+ - ".gitignore"
69
+ - ".rspec"
70
+ - ".travis.yml"
71
+ - CHANGELOG.md
72
+ - CODE_OF_CONDUCT.md
73
+ - Gemfile
74
+ - LICENSE.txt
75
+ - README.md
76
+ - Rakefile
77
+ - bin/console
78
+ - bin/setup
79
+ - chchchanges.gemspec
80
+ - exe/chchchanges
81
+ - lib/chchchanges.rb
82
+ - lib/chchchanges/entry.rb
83
+ - lib/chchchanges/generator.rb
84
+ - lib/chchchanges/parser.rb
85
+ - lib/chchchanges/version.rb
86
+ homepage: https://github.com/EricJZell/chchchanges
87
+ licenses:
88
+ - MIT
89
+ metadata: {}
90
+ post_install_message:
91
+ rdoc_options: []
92
+ require_paths:
93
+ - lib
94
+ required_ruby_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ required_rubygems_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ requirements: []
105
+ rubyforge_project:
106
+ rubygems_version: 2.6.7
107
+ signing_key:
108
+ specification_version: 4
109
+ summary: chchchanges makes it convenient to create and maintain a proper CHANGELOG.
110
+ test_files: []