Sha256: b9370aa8ca7b5cdd205f26bdc3580343bd6c815f996f01ac34acc7118b15c53e

Contents?: true

Size: 305 Bytes

Versions: 3

Compression:

Stored size: 305 Bytes

Contents

module Birdwatcher
  module Commands
    class Back < Birdwatcher::Command
      self.meta = {
        :description => "Unloads current module",
        :names       => %w(back unload),
        :usage       => "back"
      }

      def run
        console.current_module = nil
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
birdwatcher-0.4.0 lib/birdwatcher/commands/back.rb
birdwatcher-0.3.1 lib/birdwatcher/commands/back.rb
birdwatcher-0.1.0 lib/birdwatcher/commands/back.rb