releaseable 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/releaseable/github.rb +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.8
|
data/lib/releaseable/github.rb
CHANGED
@@ -52,7 +52,7 @@ module Releaseable
|
|
52
52
|
if info[:file]
|
53
53
|
file = info[:file]
|
54
54
|
raise "bad file #{info[:file]}" unless File.exist?(file) && File.readable?(file)
|
55
|
-
info[:name] ||= File.basename(file)
|
55
|
+
info[:name] ||= File.basename(file) # + rand(1000).to_s
|
56
56
|
end
|
57
57
|
|
58
58
|
raise "required name for filename with data parameter" unless info[:name]
|