Skip to content

Instantly share code, notes, and snippets.

@mortenbagai
Created June 18, 2009 00:34
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 mortenbagai/131626 to your computer and use it in GitHub Desktop.
Save mortenbagai/131626 to your computer and use it in GitHub Desktop.
Counting objects: 5, done.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 303 bytes, done.
Total 3 (delta 1), reused 0 (delta 0)
-----> Heroku receiving push
-----> Installing gem bluecloth >=2.0.0 from http://gems.rubyforge.org
Building native extensions. This could take a while...
Successfully installed bluecloth-2.0.3
1 gem installed
-----> Installing gem googlecharts from http://gems.rubyforge.org
Successfully installed googlecharts-1.3.6
1 gem installed
-----> Rails app detected
Compiled slug size is 920K
-----> Launching........ done
App deployed to Heroku
To git@heroku.com:fierce-night-20.git
3a18812..865c371 master -> master
tubbs:chronix morten$ heroku console --app fierce-night-20
Ruby console for fierce-night-20.heroku.com
>> gem 'bluecloth'
=> true
>> require 'bluecloth'
=> true
>> BlueCloth.new
=> #<BlueCloth:0xab58ea425ba text: ""; options: {}>
>> tubbs:chronix morten$ heroku console --app fierce-night-20
Ruby console for fierce-night-20.heroku.com
>> gem 'bluecloth'
=> false
>> require 'bluecloth'
=> false
>> BlueCloth.new
=> #<BlueCloth:0xab58eca7e4a text: ""; options: {}>
>> tubbs:chronix morten$ heroku console --app fierce-night-20
Ruby console for fierce-night-20.heroku.com
>> BlueCloth.new
NameError: uninitialized constant BlueCloth
>> require 'bluecloth'
=> true
>> BlueCloth.new
=> #<BlueCloth:0xace8d784f5e text: ""; options: {}>
>> tubbs:chronix morteheroku console --app fierce-night-20
Ruby console for fierce-night-20.heroku.com
>> require 'bluecloth'
=> false
>> BlueCloth.new
=> #<BlueCloth:0xab58ec896fc text: ""; options: {}>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment