rake_roll 0.1.0 → 0.1.1
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 +7 -1
- data/lib/rake_roll/roller.rb +3 -4
- data/rake_roll.gemspec +2 -2
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce13775e949cfd27ece16b27f5eb48447d55e536
|
|
4
|
+
data.tar.gz: 72ca46fd28547a270cf5f7f41350861b6f235593
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc7228f004231af9e6c785002d2e4d884fc7f178d8b15bf50dba6e67aff52c445881fd397ee05924a11278c9e7a6cd1f990c722fa7fff18a55433e6cedb40dec
|
|
7
|
+
data.tar.gz: fefdc6fb928c1d93b5ba8f51ff1a39dfbe2678a63349fb784732c33d1835ef8ff6a6c8553278315b916676cbe8e8c0e475adcf1239eca802f8d2975ef284b518
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# RakeRoll
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
RakeRoll: Roll out your release versions with ease, RakeRoll will version and tag a release then create an updated changelog of the git commits, picking only those starting with a *
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -52,6 +52,12 @@ Or install it yourself as:
|
|
|
52
52
|
* Feature: #1111 Adding rake_roll to the Gemfile
|
|
53
53
|
* HotFix: Don't Delete current users
|
|
54
54
|
|
|
55
|
+
TODO
|
|
56
|
+
|
|
57
|
+
Write tests
|
|
58
|
+
Write RDocs
|
|
59
|
+
Code Tidy
|
|
60
|
+
|
|
55
61
|
## Contributing
|
|
56
62
|
|
|
57
63
|
1. Fork it ( http://github.com/<my-github-username>/rake_roll/fork )
|
data/lib/rake_roll/roller.rb
CHANGED
|
@@ -50,9 +50,7 @@ module RakeRoll
|
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
def parsed_git_log(tag=nil)
|
|
53
|
-
git_log(tag).split("\n").select{|line| line[0] == "*"}
|
|
54
|
-
line.split(" | ").reverse.join(" | ")
|
|
55
|
-
end
|
|
53
|
+
git_log(tag).split("\n").select{|line| line[0] == "*"}
|
|
56
54
|
end
|
|
57
55
|
|
|
58
56
|
def push
|
|
@@ -108,7 +106,8 @@ module RakeRoll
|
|
|
108
106
|
end
|
|
109
107
|
|
|
110
108
|
def format
|
|
111
|
-
"--pretty=format:'%s | %an | %h'"
|
|
109
|
+
#"--pretty=format:'%s | %an | %h'"
|
|
110
|
+
"--pretty=format:'%s'"
|
|
112
111
|
end
|
|
113
112
|
|
|
114
113
|
def git_log(tag=nil)
|
data/rake_roll.gemspec
CHANGED
|
@@ -4,11 +4,11 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "rake_roll"
|
|
7
|
-
spec.version = "0.1.
|
|
7
|
+
spec.version = "0.1.1"
|
|
8
8
|
spec.authors = ["Stuart Hanscombe"]
|
|
9
9
|
spec.email = ["hanscs1969@yahoo.co.uk"]
|
|
10
10
|
spec.summary = "RakeRoll: Git version tagger and changelog creator"
|
|
11
|
-
spec.description = "RakeRoll:
|
|
11
|
+
spec.description = "RakeRoll: Roll out your release versions with ease, RakeRoll will version and tag a release then create an updated changelog of the git commits (picking only those starting with a *)"
|
|
12
12
|
spec.homepage = "http://www.thelazycamel.com"
|
|
13
13
|
spec.license = "MIT"
|
|
14
14
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rake_roll
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stuart Hanscombe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-11-
|
|
11
|
+
date: 2014-11-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -52,8 +52,9 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
|
-
description: 'RakeRoll:
|
|
56
|
-
|
|
55
|
+
description: 'RakeRoll: Roll out your release versions with ease, RakeRoll will version
|
|
56
|
+
and tag a release then create an updated changelog of the git commits (picking only
|
|
57
|
+
those starting with a *)'
|
|
57
58
|
email:
|
|
58
59
|
- hanscs1969@yahoo.co.uk
|
|
59
60
|
executables: []
|