class Gem::Commands::ExecCommand
def initialize
def initialize super('exec', 'Run a command in context of a gem bundle', {:manifest => nil}) add_option('-m', '--manifest MANIFEST', "Specify the path to the manifest file") do |manifest, options| options[:manifest] = manifest end end