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
jarib :: ~/src/git/rvm> rvm 1.9.1 --debug | |
<w> ruby 1.9.1 is not installed. | |
<i> Installing Ruby from source to: /Users/jarib/.rvm/ruby-1.9.1-p243 | |
<i> Downloading ruby-1.9.1-p243, this may take a while depending on your connection... | |
<i> Extracting ruby-1.9.1-p243 ... |
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
$ pwd | |
/Users/jarib/src/git/rvm | |
$ git pull | |
Already up-to-date. | |
$ set -x; scripts/rvm-install | |
+-zsh:8> scripts/rvm-install | |
Installing rvm source to ~/.rvm/scripts/rvm... | |
rvm is a shell script that allows a user to manage multiple ruby versions in their own account. |
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
<i> Installing ruby-1.9.1-p243 | |
+__rvm_install-source:89> __rvm_run install make install | |
+__rvm_run:1> log_file_name=install | |
+__rvm_run:1> shift | |
+__rvm_run:2> command='make install' | |
+__rvm_run:3> mkdir -p /Users/jarib/.rvm/log/ruby-1.9.1-p243 | |
+__rvm_run:4> [ 1 ']' | |
+__rvm_run:4> __rvm_log debug 'Executing: make install' | |
+__rvm_log:2> case debug (debug) |
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
/Library/Application Support/TextMate/Support/lib/ui.rb:153:in `load': Cannot parse a NULL or zero-length data (OSX::PropertyListError) | |
from /Library/Application Support/TextMate/Support/lib/ui.rb:153:in `complete' | |
from /Library/Application Support/TextMate/Support/lib/ui.rb:151:in `popen' | |
from /Library/Application Support/TextMate/Support/lib/ui.rb:151:in `complete' | |
from /Library/Application Support/TextMate/Support/lib/ui.rb:129:in `fork' | |
from /Library/Application Support/TextMate/Support/lib/ui.rb:129:in `complete' | |
from /Users/fijabakk/Library/Application Support/TextMate/Bundles/Stories Framework.tmbundle/Support/method_completer.rb:22 | |
from /tmp/temp_textmate.e62QE0:3:in `require' | |
from /tmp/temp_textmate.e62QE0:3 |
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
Sep 10 20:12:22 fi-bp-749 TextMate[94781]: initWithPlugInController: [aController version]: 1.000000 | |
Sep 10 20:12:22 fi-bp-749 TextMate[94781]: init panel: <NSPanel: 0x141483b0> | |
Sep 10 20:12:22 fi-bp-749 TextMate[94781]: loadPlugIn: Dialog2 plug-in with same bundle identifier (com.macromates.dialog2) already loaded | |
Sep 10 20:12:22 fi-bp-749 TextMate[94781]: loadPlugIn: Dialog plug-in with same bundle identifier (com.macromates.dialog_plug-in) already loaded | |
Sep 10 20:12:22 fi-bp-749 TextMate[94781]: loadPlugIn: Dialog2 plug-in with same bundle identifier (com.macromates.dialog2) already loaded |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>beforeRunningCommand</key> | |
<string>nop</string> | |
<key>command</key> | |
<string>#!/usr/bin/env ruby | |
require ENV["TM_BUNDLE_SUPPORT"] + "/method_completer" |
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
def build_tree(groups) | |
groups.map do |g| | |
{ | |
:id => g.id, | |
:text => g.name, | |
:children => g.tags.map { |t| {:id => t.id, :text => t.name }} | |
} | |
end | |
end |
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
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/> | |
<title> | |
Conjugador de Verbos da Língua Portuguesa | |
</title> | |
</head> | |
<body bgcolor="white"> | |
<font face="Arial,Helvetica" size="2"> | |
<b/> |
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
class SomePage | |
def save | |
save_button.click | |
sleep 0.1 while loading? | |
end | |
def loading? | |
loading_div.exists? | |
end |