lib/nutrella/command.rb in nutrella-0.8.0 vs lib/nutrella/command.rb in nutrella-0.9.0

- old
+ new

@@ -10,11 +10,11 @@ @cache_filename = File.join(configuration_directory, ".nutrella.cache.yml") @configuration_filename = File.join(configuration_directory, ".nutrella.yml") end def run - open board_url + open board_url # rubocop:disable Security/Open end private def board_url @@ -24,13 +24,13 @@ def open(url) system("open #{url}") end def task_board - TaskBoard.new(Configuration.values(configuration_filename)) + Nutrella::TaskBoard.new(Nutrella::Configuration.values(configuration_filename)) end def url_cache - Cache.new(cache_filename, 5) + Nutrella::Cache.new(cache_filename, 5) end end end