Skip to content

Instantly share code, notes, and snippets.

@hamakn
Created September 3, 2012 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hamakn/3608139 to your computer and use it in GitHub Desktop.
Save hamakn/3608139 to your computer and use it in GitHub Desktop.
check vcap-staging BUNDLE_WITHOUT option
---
BUNDLE_DISABLE_SHARED_GEMS: "1"
BUNDLE_WITHOUT: test
BUNDLE_PATH: vendor/bundle
source "http://rubygems.org"
gem "sinatra"
group "test" do
gem "hogehogemax"
end
GEM
remote: http://rubygems.org/
specs:
rack (1.4.1)
rack-protection (1.2.0)
rack
sinatra (1.3.3)
rack (~> 1.3, >= 1.3.6)
rack-protection (~> 1.2)
tilt (~> 1.3, >= 1.3.3)
tilt (1.3.3)
hogehogemax (0.0.1)
PLATFORMS
ruby
DEPENDENCIES
sinatra
hogehogemax
require 'rubygems' # for ruby18
require 'sinatra'
get '/' do
"<h1>Hello!!</h1>"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment