lib/gonative/utils/template_inflator.rb in gonative-cli-1.1.2 vs lib/gonative/utils/template_inflator.rb in gonative-cli-1.2.0

- old
+ new

@@ -2,11 +2,11 @@ module GoNative module Utils class TemplateInflator autoload :FileUtils, 'fileutils' - + extend DSL::Serviceable def initialize(options) @options = options end @@ -40,12 +40,12 @@ options.each do |key, value| new_name.gsub!(key.to_s.upcase, value) end new_name.delete_suffix(TEMPLATE_FILES_EXTENSION) end - + private - + attr_reader :options end end end