Created
June 18, 2009 00:34
-
-
Save mortenbagai/131626 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 [email protected]: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