Skip to content

Instantly share code, notes, and snippets.

@jigfox
Created March 9, 2012 17:27
Show Gist options
  • Save jigfox/2007656 to your computer and use it in GitHub Desktop.
Save jigfox/2007656 to your computer and use it in GitHub Desktop.
reproduce error in gem loading in pow
require 'rubygems'
require 'bundler'
Bundler.require
class PowJsonTest < Sinatra::Base
get '/' do
JSON::VERSION
end
end
run PowJsonTest
source :rubygems
gem 'sinatra', '1.3.2'
gem 'json', '1.6.5'
Run this with rackup will output "1.6.5"
Run this with pow will output "1.5.4"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment