View gist:1291
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
config.action_mailer.smtp_settings = { | |
:address => "mail.authsmtp.com", | |
:domain => "famspam.com", | |
:port => 2525, | |
:user_name => "user", | |
:password => "pass", | |
:authentication => :cram_md5 | |
} |
View gist:1803
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
$ cat init.rb | pygmentize -f html -l ruby | |
*** Error while highlighting: | |
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc4 in position 16: ordinal not in range(128) | |
(file "/Library/Python/2.5/site-packages/Pygments-0.9-py2.5.egg/pygments/lexer.py", line 151, in get_tokens) | |
$ pygmentize init.rb | |
<works> |
View gist:1835
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
try | |
{ | |
beginAt(atUrl); | |
} | |
catch (RuntimeException re) | |
{ | |
// If we get here, it's possible that we are running on java 1.5 + | |
// and the server is websphere. in this combination (and only this | |
// one AFAIK) the HttpUnit client receives a null from | |
// HttpUrlConnection.getErrorStream() which, according to the JDK javadoc |
View java_or_ruby.rb
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
# watch me turn java into ruby | |
def try; end | |
def catch(*args) end | |
def RuntimeException(*args) end | |
def re; end | |
class Anything; def method_missing(*args) Anything.new end end | |
def getDialog; Anything.new end | |
def WebResponse(*args) end | |
def atUrl; '' end |
View gist:2033
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
11) Error: | |
test_spec {A User changing to a coupon plan} 004 [fails if the coupon is not in the db](A User changing to a coupon plan): | |
NoMethodError: You have a nil object when you didn't expect it! | |
The error occurred while evaluating nil.squeeze | |
/Users/chris/Projects/github/app/models/public_key.rb:32:in `clear_newlines' | |
/Users/chris/Projects/github/vendor/rails/activerecord/lib/../../activesupport/lib/active_support/callbacks.rb:34:in `send' | |
/Users/chris/Projects/github/vendor/rails/activerecord/lib/../../activesupport/lib/active_support/callbacks.rb:34:in `evaluate_method' | |
/Users/chris/Projects/github/vendor/rails/activerecord/lib/../../activesupport/lib/active_support/callbacks.rb:27:in `call' | |
/Users/chris/Projects/github/vendor/rails/activerecord/lib/../../activesupport/lib/active_support/callbacks.rb:11:in `run' | |
/Users/chris/Projects/github/vendor/rails/activerecord/lib/../../activesupport/lib/active_support/callbacks.rb:10:in `each' |
View gist:2600
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
BLOWIN UP YOUR SPOT |
View gist:3807
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
$ telnet localhost 1480 | |
Trying ::1... | |
telnet: connect to address ::1: Connection refused | |
Trying fe80::1... | |
telnet: connect to address fe80::1: Connection refused | |
Trying 127.0.0.1... | |
telnet: connect to address 127.0.0.1: Connection refused | |
telnet: Unable to connect to remote host | |
View gist:3497
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
## | |
# test/spec/mini | |
# chris@ozmm.org | |
# | |
def context(*args, &block) | |
return super unless (name = args.first) && block | |
require 'test/unit' | |
klass = Class.new(Test::Unit::TestCase) do | |
def self.specify(name, &block) define_method("test_#{name.gsub(/\W/,'_')}", &block) end | |
def self.xspecify(*args) end |
View gist:4169
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
# by bryan helmkamp with slight modification by chris wanstrath | |
# from http://www.brynary.com/2008/8/3/our-git-deployment-workflow | |
module GitCommands | |
extend self | |
def diff_staging | |
`git fetch` | |
puts `git diff origin/production origin/staging` | |
end |
OlderNewer