hermaeus 1.0.1 → 1.0.2

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: ba58e39ec4af0f4fc855e2b1d8ce3ccd2fe8854f
4
- data.tar.gz: fb2dc1cd561412925fa96d5b17b58cc20b7151ec
3
+ metadata.gz: 21e1bdd247e29c25253a077f728526d215f91a14
4
+ data.tar.gz: 8a01184c5502a2a9f03d1c82ff0d20b7664bc27b
5
5
  SHA512:
6
- metadata.gz: a473d78aa69386fd50cfbbd771df52be5a93418f546310364b935292fa5d0049d8e431ed2004b534b783ee21aa6b674319bf30fdf0909cff0e7ed3100bb9c71d
7
- data.tar.gz: 11615189e9342cdfed8247f12f54ad76f7a88e50bc8e2be1f2db957e06dafc24b6e21452ab993152453ba39bbc472c74fa38c6696a903c056393366ced400f3a
6
+ metadata.gz: 86d808111b779e4a78ec52727e589e7dda9f9f102424fbd4ad1ac9aa3183c5a0989c63023133580970ec5a421e9c6ae3d8865948e396c0d4270041c789089e3f
7
+ data.tar.gz: 92660f2b99ea6cc07057606620be793ab62947edd64d4a4e2477e5cda3607fb2578b7475de8c0d194cdfe5f465a2bb33b6d12a0b92db8993cf428a9b167472c2
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## v1
4
4
 
5
+ ### v1.0.2
6
+
7
+ Fix a File.open call; it was accidentally being given a string permission set
8
+ instead of numeric.
9
+
5
10
  ### v1.0.1
6
11
 
7
12
  Deployment to a separate machine brought some hidden bugs to light. Fixed a
data/lib/hermaeus.rb CHANGED
@@ -22,7 +22,7 @@ module Hermaeus
22
22
  Config.validate @cfg
23
23
  else
24
24
  File.open Config::FILE, "w+" do |file|
25
- File.open File.expand_path(Config::SOURCE), "r", "0600" do |cfg|
25
+ File.open File.expand_path(Config::SOURCE), "r", 0600 do |cfg|
26
26
  file << cfg.read
27
27
  end
28
28
  end
@@ -1,3 +1,3 @@
1
1
  module Hermaeus
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hermaeus
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - myrrlyn