This file contains hidden or 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
[ | |
{ "keys": ["ctrl+tab"], "command": "next_view_in_group" }, | |
{ "keys": ["ctrl+shift+tab"], "command": "prev_view_in_group" }, | |
{ "keys": ["alt+tab"], "command": "next_group"}, | |
{ "keys": ["alt+shift+tab"], "command": "prev_group"} | |
] |
This file contains hidden or 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
1.9.3 - install | |
Searching for binary rubies, this might take some time. | |
Remote file does not exist https://rvm.io/binaries/osx/10.9/x86_64/ruby-1.9.3-p429.tar.bz2 | |
Remote file does not exist http://jruby.org.s3.amazonaws.com/downloads/ruby-1.9.3-p429.tar.bz2 | |
Remote file does not exist http://binaries.rubini.us/osx/10.9/x86_64/ruby-1.9.3-p429.tar.bz2 | |
rvm_remote_server_url3 not found | |
No remote file name found | |
No binary rubies available for: osx/10.9/x86_64/ruby-1.9.3-p429. | |
Continuing with compilation. Please read 'rvm help mount' to get more information on binary rubies. | |
__rvm_setup_compile_environment_setup ruby-1.9.3-p429 |
This file contains hidden or 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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by configure, which was | |
generated by GNU Autoconf 2.69. Invocation command line was | |
$ ./configure --prefix=/Users/thinds/.rvm/rubies/ruby-1.9.3-p429 --with-opt-dir=/usr/local/opt/libyaml:/usr/local/opt/readline:/usr/local/opt/libxml2:/usr/local/opt/libxslt:/usr/local/opt/libksba:/usr/local/opt/openssl --disable-install-doc --without-tcl --without-tk --enable-shared | |
## --------- ## | |
## Platform. ## |
This file contains hidden or 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
first = "This is a test" | |
second = " to see if our slimey screen works" | |
third = first + second | |
puts third |
This file contains hidden or 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
2.0.0-p195 :002 > first = "This is a test" | |
=> "This is a test" | |
2.0.0-p195 :003 > second = " to see if our slimey screen works" | |
=> " to see if our slimey screen works" | |
2.0.0-p195 :004 > third = first + second | |
=> "This is a test to see if our slimey screen works" | |
2.0.0-p195 :005 > puts third | |
This is a test to see if our slimey screen works | |
=> nil | |
2.0.0-p195 :006 > |
This file contains hidden or 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
require ‘net/http’ | |
require ‘cgi’ | |
class StatusMessage | |
attr_accessor :status, :status_endpoint | |
end | |
def whyrun_supported? | |
true | |
end |
OlderNewer