larva 0.6.3 → 0.6.4

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: 8f891d9ef6ab88da917a60b22f423e349120a105
4
- data.tar.gz: eece3b45ba7c7af53986cf707702fe540847019b
3
+ metadata.gz: 7fe5c86ee62d31f112c08c749a292a4c2bfa3923
4
+ data.tar.gz: 69518a580563e06e7765356cdb037d0b34f36da6
5
5
  SHA512:
6
- metadata.gz: 62be18692555b7f14c6146b8cae0bf51a49ab429936da40b6536fe43a1941bdfd9bbe4946d03720dafd3edf986b61f4542883be171f3fb806c50c5c640097b01
7
- data.tar.gz: 12fa64c396a72afcfb4fb0be85a5a1d5df3f78d0ec9e00799b922f4dffd211bc79c60da5dce332c2690f789a1433738803b3ea3d743f8ba8eb5fbf965b45a4fa
6
+ metadata.gz: 7428d4afcce9d19ee7b58b097f6697f4978cb81e04112c6368feea68b71b86b1b87f7cef246f9f8162a518905dc645017d28571b3082234e3974071a9562437e
7
+ data.tar.gz: 8605c1e6c276e0e235b6cc400197c4b4a798149aac6f07fec16e59a4cf4c81667152a470415846fcc53a6903a93729bbc84bac416eed602a16714ad3727dabb5
@@ -1,3 +1,6 @@
1
+ # 0.6.4 / 2014-02-23
2
+ * [BUGFIX] Use camelize, not classify
3
+
1
4
  # 0.6.3 / 2014-02-23
2
5
  * [FEATURE] Git init and commit new daemon.
3
6
 
data/bin/larva CHANGED
@@ -53,7 +53,7 @@ class DaemonCreator
53
53
  next unless File.file?(path)
54
54
  contents = File.read(path)
55
55
  File.open(path, 'w+') do |file|
56
- contents.gsub!("LarvaSpawn", @daemon_name.classify)
56
+ contents.gsub!("LarvaSpawn", @daemon_name.camelize)
57
57
  contents.gsub!("larva_spawn", @daemon_name)
58
58
  contents.gsub!("LARVA_SPAWN", @daemon_name.upcase)
59
59
  file.write(contents)
@@ -1,3 +1,3 @@
1
1
  module Larva
2
- VERSION = '0.6.3'
2
+ VERSION = '0.6.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: larva
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - iHiD