git-changes 0.0.1 → 0.0.2

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.
data/CHANGELOG ADDED
@@ -0,0 +1,4 @@
1
+ 2011-06-24 Guillermo Álvarez <guillermo@cientifico.net>
2
+
3
+ * .gitignore, Gemfile, LICENSE, README.md, Rakefile, git-changes, git-changelog.gemspec, git-changelog.rb, cli.rb, parser.rb, version.rb, git-changelog.txt, git-log.txt, test_git-changelog.rb: Initial version
4
+
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
+
@@ -1,5 +1,5 @@
1
1
  module Git
2
2
  module Changelog
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
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.1
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: &2156725120 !ruby/object:Gem::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: *2156725120
25
+ version_requirements: *2157057020
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: rake
28
- requirement: &2156724700 !ruby/object:Gem::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: *2156724700
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