rake_roll 0.1.1 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ce13775e949cfd27ece16b27f5eb48447d55e536
4
- data.tar.gz: 72ca46fd28547a270cf5f7f41350861b6f235593
3
+ metadata.gz: 09ef35c3d40587b26e5bdfbff1e5fa8e137c83cf
4
+ data.tar.gz: 31482e4674fd576b4b0a8921ec0dc17c5bd1a975
5
5
  SHA512:
6
- metadata.gz: cc7228f004231af9e6c785002d2e4d884fc7f178d8b15bf50dba6e67aff52c445881fd397ee05924a11278c9e7a6cd1f990c722fa7fff18a55433e6cedb40dec
7
- data.tar.gz: fefdc6fb928c1d93b5ba8f51ff1a39dfbe2678a63349fb784732c33d1835ef8ff6a6c8553278315b916676cbe8e8c0e475adcf1239eca802f8d2975ef284b518
6
+ metadata.gz: 48a993b6193748b25a0b0a5d21efe18f48a84d528d0d6e576362a3c40c4aec7d539afa45990bb999b2cf44432ea0aa85c99a1601e152ba6bc7f60517cffed00a
7
+ data.tar.gz: 96cbc682bbd4bc26c883bcafac62e66767f44bf5d29154831c4a43aaa7de33dfd24576d10721e4c1a4dac412a3444918b830e9c1f296b5205af209e6315d899c
@@ -102,7 +102,8 @@ module RakeRoll
102
102
 
103
103
  def push_tag_and_branch
104
104
  puts "pushing tag and branch"
105
- system("git push origin #{}")
105
+ system("git push origin #{@current_branch}")
106
+ system("git push --tags")
106
107
  end
107
108
 
108
109
  def format
data/rake_roll.gemspec CHANGED
@@ -4,7 +4,7 @@ $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.1"
7
+ spec.version = "0.1.2"
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"
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake_roll
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stuart Hanscombe
@@ -74,6 +74,7 @@ files:
74
74
  - rake_roll.gemspec
75
75
  - spec/lib/rake_roll/roller_spec.rb
76
76
  - spec/lib/rake_roll/version_spec.rb
77
+ - spec/spec_helper.rb
77
78
  homepage: http://www.thelazycamel.com
78
79
  licenses:
79
80
  - MIT
@@ -101,3 +102,4 @@ summary: 'RakeRoll: Git version tagger and changelog creator'
101
102
  test_files:
102
103
  - spec/lib/rake_roll/roller_spec.rb
103
104
  - spec/lib/rake_roll/version_spec.rb
105
+ - spec/spec_helper.rb