Returns a new instance of Storage.
7 8 9 10 11
# File 'lib/git_chain/storage.rb', line 7 def initialize(path: nil, file_name: nil) @path = path || %x{pwd}.strip @file_name = file_name || FILE_NAME @file_path = @path + "/" + @file_name end