dmfrancisco/kood

View on GitHub
lib/kood-plugin-example.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Kood
  module Plugin
    class Example < Thor
      desc "foo", "An example command"
      def foo
        puts "Hello from example"
      end
    end
  end
end