git_changelog_generator 1.0.2 → 1.0.3
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 +4 -4
- data/README.md +11 -4
- data/git_changelog_generator.gemspec +1 -1
- data/lib/git_changelog_generator/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83e1d6c1b9cc9e5f2a87b71816dca59bb0f88dda
|
|
4
|
+
data.tar.gz: 9ff40fef542c6b2ead044bd1c1bb667ecfb26a57
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29809f6248ec70ae78713914fc1e297fc5142e657c51267dbf3b51c1a619e071869f96b9faa1e50acd3514e0677d5e376ceddbc6fb812d453b268ce8e4902b38
|
|
7
|
+
data.tar.gz: 7ecd5698da97d38ad0ad4541559233cf0eaf6c0f12665dabfc15d41e69322fdeefbcaa32a9066bf52797c7261290978ce36d9f36dad9f1fe631eeacee1c6f0a3
|
data/README.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# GitChangelogGenerator
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://badge.fury.io/rb/git_changelog_generator)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This gem creates a changelog file based on your git version history. The output is categorized by tags. Even if no tags
|
|
6
|
+
are available in the repository the gem will still work using the HEAD as virtual tag.
|
|
6
7
|
|
|
7
8
|
## Installation
|
|
8
9
|
|
|
@@ -22,7 +23,13 @@ Or install it yourself as:
|
|
|
22
23
|
|
|
23
24
|
## Usage
|
|
24
25
|
|
|
25
|
-
|
|
26
|
+
Just run the following command in a directory maintained by git
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
chlog create [filename]
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
where filename is the filename of the created file. If no argument is specified the file will be created under `changelog.txt`.
|
|
26
33
|
|
|
27
34
|
## Development
|
|
28
35
|
|
|
@@ -37,5 +44,5 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERN
|
|
|
37
44
|
|
|
38
45
|
## License
|
|
39
46
|
|
|
40
|
-
The gem is available as open source under the terms of the [
|
|
47
|
+
The gem is available as open source under the terms of the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0).
|
|
41
48
|
|
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{This is a gem for creating changelogs from git version history.}
|
|
13
13
|
spec.description = %q{This is a gem for creating changelogs from git version history.}
|
|
14
|
-
spec.homepage = "
|
|
14
|
+
spec.homepage = "https://github.com/appcom-interactive/changelog_generator"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git_changelog_generator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stefan Neidig
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-01-
|
|
11
|
+
date: 2017-01-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -86,7 +86,7 @@ files:
|
|
|
86
86
|
- git_changelog_generator.gemspec
|
|
87
87
|
- lib/git_changelog_generator.rb
|
|
88
88
|
- lib/git_changelog_generator/version.rb
|
|
89
|
-
homepage:
|
|
89
|
+
homepage: https://github.com/appcom-interactive/changelog_generator
|
|
90
90
|
licenses:
|
|
91
91
|
- MIT
|
|
92
92
|
metadata:
|