lib/theme_check/storage.rb in theme-check-0.6.0 vs lib/theme_check/storage.rb in theme-check-0.7.0
- old
+ new
@@ -1,17 +1,17 @@
# frozen_string_literal: true
module ThemeCheck
class Storage
- def read(relative_path)
+ def path(relative_path)
raise NotImplementedError
end
- def write(relative_path, content)
+ def read(relative_path)
raise NotImplementedError
end
- def path(relative_path)
+ def write(relative_path, content)
raise NotImplementedError
end
def files
raise NotImplementedError