Sha256: 2d55be7b9bfacb0d4d5269e05cee0e0140d89537fb69642e2d9efb263044450c
Contents?: true
Size: 1.41 KB
Versions: 1
Compression:
Stored size: 1.41 KB
Contents
require "pastel" require "geny/context/base" require "geny/actions/ui" require "geny/actions/git" require "geny/actions/shell" require "geny/actions/files" require "geny/actions/templates" module Geny module Context # The `invoke` behavior for all commands is evaluated in # the context of this class. All methods that are defined # here are available inside `invoke`. class Invoke < Base # A utility for colored output # @return [Pastel] # @see https://github.com/piotrmurach/pastel def color Pastel.new(enabled: $stdout.tty?) end # A utility for printing messages to the console # @return [Actions::UI] def ui Actions::UI.new(color: color) end # A utility for interacting with files # @return [Actions::Files] def files Actions::Files.new end # A utility for running shell commands # @return [Actions::Shell] def shell Actions::Shell.new(ui: ui) end # A utility for interacting with git repositories # @return [Actions::Git] def git Actions::Git.new(shell: shell) end # A utility for rendering and copying templates # @return [Actions::Templates] def templates Actions::Templates.new( root: command.templates_path, view: View.new(command: command, locals: locals) ) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
geny-0.1.0 | lib/geny/context/invoke.rb |