coldshoulder 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/coldshoulder/generator.rb +1 -1
- data/lib/coldshoulder/version.rb +1 -1
- metadata +1 -1
@@ -12,7 +12,7 @@ module Coldshoulder
|
|
12
12
|
r = request_url("https://raw.github.com/github/gitignore/master/#{language}.gitignore")
|
13
13
|
if r.response_code == 200
|
14
14
|
File.open('.gitignore', 'w') do |f|
|
15
|
-
f.write("#\n# Generated using coldshoulder - github.com/bryanmikaelian/coldshoulder\n#\n\n#{r.body_str}")
|
15
|
+
f.write("#\n# Generated using coldshoulder v#{Coldshoulder::VERSION} - github.com/bryanmikaelian/coldshoulder\n#\n\n#{r.body_str}")
|
16
16
|
end
|
17
17
|
puts "Ignore file generated for language #{language}"
|
18
18
|
else
|
data/lib/coldshoulder/version.rb
CHANGED