Class: AppEngine::Admin::GemBundler

Inherits:
Object
  • Object
show all
Defined in:
lib/appengine-tools/gem_bundler.rb

Instance Method Summary collapse

Constructor Details

#initialize(root) ⇒ GemBundler

Returns a new instance of GemBundler.



33
34
35
36
# File 'lib/appengine-tools/gem_bundler.rb', line 33

def initialize(root)
  @root = root
  @app = Application.new(root)
end

Instance Method Details

#bundle(args) ⇒ Object



38
39
40
41
# File 'lib/appengine-tools/gem_bundler.rb', line 38

def bundle(args)
  verify_gemfile
  gem_bundle(args)
end