rake-n-bake 1.0.4 → 1.0.5

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: d416c51bf6ac943aa3cfbf97389557ca1d17d4f5
4
- data.tar.gz: 9eb9acb3e384f03f3c2832943f27040f498420c6
3
+ metadata.gz: a818eee7cb0bf7959752aa34683da02ea1a8d82e
4
+ data.tar.gz: fec60f1e1a9fdecbf4f1a657c76f4d280057432e
5
5
  SHA512:
6
- metadata.gz: 58d695b0463cf22a91a871c3d952f6d9fa4e2569806f2f26bf3645301f1faf2a3542dad975fadb04d622bf830bce62a44850cff26a59db203e0f8edd467844eb
7
- data.tar.gz: 7cb760f6db95a6689c8bb0e4b410e389b74d166c65a40c469777c9f52737fdb3a3e03343ad1760682236edb6bb6be6c922782e18397cfdc57ae3d44019b8e4b8
6
+ metadata.gz: 86c98341c780bc85870bf552356fbe7075cf07bbaa133168e05ef324b1e271311d0d799d127d3a61073db24fa2f67483e5c5305b612262e8d14f67826754ab8a
7
+ data.tar.gz: 832f93811f23e84728f724cce3f5059f84d62e316472534259cb7b920f95465d646e99b33c2dca23b2c830a9d07c4de5f05f7516d706ee55c6415f2fac41da71
data/history.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.0.5 (21 October 2014)
2
+
3
+ * Fix semver tasks to write to the correct file
4
+
1
5
  == 1.0.4 (21 October 2014)
2
6
 
3
7
  * Update history.rdoc in semver tasks
@@ -52,7 +52,7 @@ module RakeNBake
52
52
  end
53
53
 
54
54
  def self.update_history_file
55
- history_file = File.join(File.dirname(__FILE__), '../history.rdoc')
55
+ history_file = 'history.rdoc'
56
56
  if File.exist? history_file
57
57
  current_history = File.read history_file
58
58
  File.open history_file, 'w' do |f|
data/rake-n-bake.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-n-bake"
7
- spec.version = '1.0.4'
7
+ spec.version = '1.0.5'
8
8
  spec.authors = ["Richard Vickerstaff", "Adam Whittingham"]
9
9
  spec.email = ["m3akq@btinternet.com", "adam.whittingham@gmail.com"]
10
10
  spec.description = "Common rake tasks, baked to perfection and ready to serve!"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake-n-bake
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Vickerstaff