Sha256: b1de44c1dd22a94c6882c1714366c5e69ed7ad1b8c3ff5d485e1ae572a4ee5b5
Contents?: true
Size: 1.17 KB
Versions: 3
Compression:
Stored size: 1.17 KB
Contents
require 'thor/shell/color' module DeploYML # # Provides common methods used by both {LocalShell} and {RemoteShell}. # module Shell include Thor::Shell def initialize yield self if block_given? end # # Executes a Rake task. # # @param [Symbol, String] task # Name of the Rake task to run. # # @param [Array<String>] args # Additional arguments for the Rake task. # def rake(task,*args) run 'rake', rake_task(task,*args) end # # Prints a status message. # # @param [String] message # The message to print. # # @since 0.4.0 # def status(message) echo "#{Color::GREEN}>>> #{message}#{Color::CLEAR}" end protected # # Builds a `rake` task name. # # @param [String, Symbol] name # The name of the `rake` task. # # @param [Array] args # Additional arguments to pass to the `rake` task. # # @param [String] # The `rake` task name to be called. # def rake_task(name,*args) name = name.to_s unless args.empty? name += ('[' + args.join(',') + ']') end return name end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
deployml-0.4.2 | lib/deployml/shell.rb |
deployml-0.4.1 | lib/deployml/shell.rb |
deployml-0.4.0 | lib/deployml/shell.rb |