cog 0.0.16 → 0.0.17
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.
- data/lib/cog/generator.rb +2 -2
- data/lib/cog/version.rb +1 -1
- metadata +3 -3
data/lib/cog/generator.rb
CHANGED
@@ -132,7 +132,7 @@ module Cog
|
|
132
132
|
def copy_if_missing(src, dest)
|
133
133
|
unless File.exists? dest
|
134
134
|
FileUtils.cp src, dest
|
135
|
-
STDOUT.write "Created #{dest}".color(:white)
|
135
|
+
STDOUT.write "Created #{dest}\n".color(:white)
|
136
136
|
end
|
137
137
|
end
|
138
138
|
|
@@ -141,7 +141,7 @@ module Cog
|
|
141
141
|
path = File.join path_components
|
142
142
|
unless File.exists? path
|
143
143
|
FileUtils.mkdir_p path
|
144
|
-
STDOUT.write "Created #{path}".color(:white)
|
144
|
+
STDOUT.write "Created #{path}\n".color(:white)
|
145
145
|
end
|
146
146
|
end
|
147
147
|
|
data/lib/cog/version.rb
CHANGED
metadata
CHANGED