Class: AppEngine::Admin::GemBundler
- Inherits:
-
Object
- Object
- AppEngine::Admin::GemBundler
- Defined in:
- lib/appengine-tools/gem_bundler.rb
Instance Method Summary collapse
- #bundle(args) ⇒ Object
-
#initialize(root) ⇒ GemBundler
constructor
A new instance of GemBundler.
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 |