lib/pdd/rake_task.rb in pdd-0.20.8 vs lib/pdd/rake_task.rb in pdd-0.21.0

- old
+ new

@@ -20,20 +20,10 @@ @quiet = false desc 'Run PDD' unless ::Rake.application.last_description task(name, *args) do |_, task_args| RakeFileUtils.send(:verbose, true) do yield(*[self, task_args].slice(0, task_block.arity)) if block_given? - run end end - end - - private - - def run - # @todo #125:30m need to implement this method. - # For now, it's just a task, - # that prints a simple Running pdd... message to user - puts 'Running pdd...' unless @quiet end end end