rake_roll 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2b9cc9d2a1d41becbc6477d915718b4464d6a2ae
4
- data.tar.gz: c374754ef6e5a2d86a4898072e8a64ac8285fbb0
3
+ metadata.gz: ce13775e949cfd27ece16b27f5eb48447d55e536
4
+ data.tar.gz: 72ca46fd28547a270cf5f7f41350861b6f235593
5
5
  SHA512:
6
- metadata.gz: eb1f1f3572c31b4b5d779aa794ccbe3677beda5a220ad9b3fa820b81793d5e22e732fbb39f0dbacc6c4dabfb91171b668ce1b988bae712ad5046d4473a4a2fa8
7
- data.tar.gz: e7856cc595443774d22222cb248aad3a275828b53a67d9ade7840288190582a4f6db436cb0aa986832c72be6fde8f09b24021a5de7133c8c00565147d871807e
6
+ metadata.gz: cc7228f004231af9e6c785002d2e4d884fc7f178d8b15bf50dba6e67aff52c445881fd397ee05924a11278c9e7a6cd1f990c722fa7fff18a55433e6cedb40dec
7
+ data.tar.gz: fefdc6fb928c1d93b5ba8f51ff1a39dfbe2678a63349fb784732c33d1835ef8ff6a6c8553278315b916676cbe8e8c0e475adcf1239eca802f8d2975ef284b518
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # RakeRoll
2
2
 
3
- TODO: Write a gem description
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 )
@@ -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] == "*"}.collect do |line|
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.0"
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: Will version and tag a release and create an updated changelog of the git commits, parsing only commits that are written in a simple markup structure"
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.0
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-16 00:00:00.000000000 Z
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: Will version and tag a release and create an updated changelog
56
- of the git commits, parsing only commits that are written in a simple markup structure'
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: []