lib/tocer/cli/commands/upsert.rb in tocer-16.0.0 vs lib/tocer/cli/commands/upsert.rb in tocer-16.0.1

- old
+ new

@@ -7,11 +7,11 @@ module Tocer module CLI module Commands # Stores table of contents root path. class Upsert < Sod::Command - include Import[:inputs, :kernel] + include Import[:input, :kernel] handle "upsert" description "Update/insert table of contents." @@ -22,10 +22,10 @@ def initialize(runner: Runner.new, **) super(**) @runner = runner end - def call = runner.call inputs + def call = runner.call input private attr_reader :runner end