app/commands/template.rb in skippy-0.2.0.a vs app/commands/template.rb in skippy-0.3.0.a
- old
+ new
@@ -13,15 +13,15 @@
end
end
default_command(:list)
desc 'install SOURCE', 'Install a new template'
- def install(source)
+ def install(_source)
raise Skippy::Error, 'Not implemented'
end
desc 'remove TEMPLATE', 'Remove an installed template'
- def remove(template_name)
+ def remove(_template_name)
raise Skippy::Error, 'Not implemented'
end
end