tagrity 0.1.4 → 0.1.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 +4 -4
- data/lib/tagrity/config_file.rb +1 -1
- data/lib/tagrity/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a68befc5bd00a195bc6767e46c5f9c32dacf7ea2771bc2f2d85c7f4ce1c8251e
|
|
4
|
+
data.tar.gz: e4dd17c87a1ea0b66a32647dcff90d4091a546f14111809d99730554a915274d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3612f8c0df254ceadbbb200f24cf9fe38b1c62a9cd82c6d3ef28d8be6297a49d309499548287e0a42a903bcf694d43da50d24330efee0934dab70d2188207b99
|
|
7
|
+
data.tar.gz: fe81fc0f1076e64c1c78c07b5455c5287e1dae663359ebb9451a973c7740bbea9d4a4421de0abaa5e16c6d198eb642222c67dd69306c129a308e11d9a075a7bf
|
data/lib/tagrity/config_file.rb
CHANGED
|
@@ -73,7 +73,7 @@ module Tagrity
|
|
|
73
73
|
|
|
74
74
|
def ensure_tagf(tagf)
|
|
75
75
|
set_option('tagf', tagf, 'tags')
|
|
76
|
-
|
|
76
|
+
if File.exists?(@config['tagf']) && !File.writable?(@config['tagf'])
|
|
77
77
|
raise ErrorTagFileNotWritable, "#{@config['tagf']} must be writable to be used as the tag file."
|
|
78
78
|
end
|
|
79
79
|
end
|
data/lib/tagrity/version.rb
CHANGED