git-changes 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +4 -0
- data/LICENSE +14 -0
- data/README.md +32 -0
- data/lib/git-changelog/version.rb +1 -1
- metadata +8 -5
data/CHANGELOG
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
2
|
+
Version 2, July 2011
|
3
|
+
|
4
|
+
Copyright (C) 2011 Guillermo Álvarez Fernández
|
5
|
+
|
6
|
+
Everyone is permitted to copy and distribute verbatim or modified
|
7
|
+
copies of this license document, and changing it is allowed as long
|
8
|
+
as the name is changed.
|
9
|
+
|
10
|
+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
11
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
12
|
+
|
13
|
+
0. You just DO WHAT THE FUCK YOU WANT TO.
|
14
|
+
|
data/README.md
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
|
2
|
+
GIT-CHANGES
|
3
|
+
===========
|
4
|
+
|
5
|
+
Git-changes is a small gem that generates a summary of changes with a CHANGELOG like format.
|
6
|
+
|
7
|
+
It is designed for occasions when you do not need a good log of changes and for small projects.
|
8
|
+
|
9
|
+
|
10
|
+
USAGE
|
11
|
+
=====
|
12
|
+
|
13
|
+
git changes
|
14
|
+
|
15
|
+
|
16
|
+
REQUIREMENTS
|
17
|
+
============
|
18
|
+
|
19
|
+
* GIT
|
20
|
+
|
21
|
+
|
22
|
+
INSTALL
|
23
|
+
=======
|
24
|
+
|
25
|
+
From rubygems:
|
26
|
+
|
27
|
+
gem install git-changes
|
28
|
+
|
29
|
+
From the code
|
30
|
+
|
31
|
+
bundle && rake install
|
32
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-changes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -14,7 +14,7 @@ default_executable:
|
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: ruby-debug
|
17
|
-
requirement: &
|
17
|
+
requirement: &2157057020 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ! '>='
|
@@ -22,10 +22,10 @@ dependencies:
|
|
22
22
|
version: '0'
|
23
23
|
type: :development
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *2157057020
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: rake
|
28
|
-
requirement: &
|
28
|
+
requirement: &2157056600 !ruby/object:Gem::Requirement
|
29
29
|
none: false
|
30
30
|
requirements:
|
31
31
|
- - ! '>='
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
|
-
version_requirements: *
|
36
|
+
version_requirements: *2157056600
|
37
37
|
description: It taks the output from git-log, parses it, and output with the standard
|
38
38
|
format of changelog.
|
39
39
|
email:
|
@@ -44,7 +44,10 @@ extensions: []
|
|
44
44
|
extra_rdoc_files: []
|
45
45
|
files:
|
46
46
|
- .gitignore
|
47
|
+
- CHANGELOG
|
47
48
|
- Gemfile
|
49
|
+
- LICENSE
|
50
|
+
- README.md
|
48
51
|
- Rakefile
|
49
52
|
- bin/git-changes
|
50
53
|
- git-changelog.gemspec
|