lib/timber/cli/installer.rb in timber-2.1.0.rc3 vs lib/timber/cli/installer.rb in timber-2.1.0.rc4

- old
+ new

@@ -1,14 +1,16 @@ +require "timber/cli/file_helper" require "timber/cli/io/messages" module Timber class CLI class Installer - attr_reader :io, :api + attr_reader :io, :api, :file_helper def initialize(io, api) @io = io @api = api + @file_helper = FileHelper.new(api) end def run(app) raise NotImplementedError.new end \ No newline at end of file