Skip to content

Instantly share code, notes, and snippets.

reinh:/Users/reinh$ time curl --HEAD http://www.gear6.com/
HTTP/1.1 200 OK
Date: Mon, 05 Oct 2009 18:19:36 GMT
Server: Apache/2.0.54
X-Powered-By: PHP/5.2.6
Expires: Sun, 19 Nov 1978 05:00:00 GMT
Cache-Control: store, no-cache, must-revalidate, post-check=0, pre-check=0
Set-Cookie: SESSeaf0399b1213ffaa785053aa92c4b73c=7a86a167e22eaca8a7697b5c23df944e; expires=Wed, 28 Oct 2009 21:52:56 GMT; path=/; domain=.gear6.com
Last-Modified: Mon, 05 Oct 2009 18:19:36 GMT
Vary: Accept-Encoding
0.25.0
======
b1eddbb Updated and created new CHANGELOG format
994d6e0 Adding tests for the #2599 fix
42ab73f Ticket #2525 don't fail find_manifest on invalid module names
a0f0dcc Updated permissions on test files
d45812b Refactoring tests to reduce code size, increase coverage, and make Luke happy.
aba2f66 This further normalizes the handling of init-style services (including the redhat "service" wrapper script). Removes special case handling of non-zero exit code in redhat (base already did this) and centralizes scattered @resource[:has_____] checks. Tests that proper versions of each are called and one level of fallbacks.
fb236a0 Combined fix for #2525, #2552 -- RedHat service issues
d40b942 Fixed #2589 - Renamed zfs delete to destroy and added tests
0.25.0
======
b1eddbb Updated and created new CHANGELOG format
994d6e0 Adding tests for the #2599 fix
42ab73f Ticket #2525 don't fail find_manifest on invalid module names
a0f0dcc Updated permissions on test files
d45812b Refactoring tests to reduce code size, increase coverage, and make Luke happy.
aba2f66 This further normalizes the handling of init-style services (including the redhat "service" wrapper script). Removes special case handling of non-zero exit code in redhat (base already did this) and centralizes scattered @resource[:has_____] checks. Tests that proper versions of each are called and one level of fallbacks.
fb236a0 Combined fix for #2525, #2552 -- RedHat service issues
d40b942 Fixed #2589 - Renamed zfs delete to destroy and added tests
# Encapsulates presentation and representation information for database objects
# by wrapping them in a presentation layer. Proxies data requests to the data object
# itself for transparency.
#
# Subclasses allow for customization
#
# ORM-agnostic
#
# sample use:
# class PostPresenter < PresenterProxy
module Factor
def self.add(name, &block)
Factor::Resolvers.add(name, block)
end
def self.value(name)
# needs moar delegation
Factor::Resolvers::RESOLVERS[name].value
end
end
module Factor
def self.add(name, &block)
Factor::Resolvers.add(name, block)
end
# Facts are provided by returning immediate values and lazily
# evaluating value strategy objects (things that respond to #call, like
# simple Procs)
def self.value(name)
value = Factor::Resolvers[name]
user.name=Rein Henrichs
[email protected]
sendemail.smtpserver=smpt.gmail.com
sendemail.smptencryption=tls
[email protected]
19:06:18 Warning: Port sent with DCC request is a lowport (0, unknown) - this isn't normal. It is possible the address/port is faked (or maybe someone is just trying to bypass firewall)
19:06:18 DCC SEND from B1lack_Mag3_ [0.0.0.0 port 0]: irc.hackerthreads.org#hackerthreads [0B bytes] requested in channel #rubyonrails
19:06:18 Warning: Port sent with DCC request is a lowport (0, unknown) - this isn't normal. It is possible the address/port is faked (or maybe someone is just trying to bypass firewall)
19:06:18 DCC SEND from B1lack_Mag3_ [0.0.0.0 port 0]: irc.hackerthreads.org#hackerthreads [0B bytes] requested in channel #rubyonrails
19:06:18 Warning: Port sent with DCC request is a lowport (0, unknown) - this isn't normal. It is possible the address/port is faked (or maybe someone is just trying to bypass firewall)
19:06:18 DCC SEND from B1lack_Mag3_ [0.0.0.0 port 0]: irc.hackerthreads.org#hackerthreads [0B bytes] requested in channel #rubyonrails
19:06:19 Warning: Port sent with DCC request is a lowport (0,
[Fri Sep 18 14:16:18 2009] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
httpd: Could not reliably determine the server's fully qualified domain name, using rein-henrichss-macbook-pro.local for ServerName
[Fri Sep 18 14:16:18 2009] [notice] Digest: generating secret for digest authentication ...
[Fri Sep 18 14:16:18 2009] [notice] Digest: done
[Fri Sep 18 14:16:18 2009] [notice] Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8k DAV/2 Phusion_Passenger/2.2.4 configured -- resuming normal operations
/Library/Ruby/Gems/1.8/gems/passenger-2.2.4/ext/phusion_passenger/native_support.bundle: dlopen(/Library/Ruby/Gems/1.8/gems/passenger-2.2.4/ext/phusion_passenger/native_support.bundle, 9): no suitable image found. Did find: (LoadError)
/Library/Ruby/Gems/1.8/gems/passenger-2.2.4/ext/phusion_passenger/native_support.bundle: no matching architecture in universal wrapper - /Library/Ruby/Gems/1.8/gems/passenger-2.2.4/ext/phusion_passenger/native_support.bundle
from /Library/Ruby/
#!/usr/bin/env ruby -ws
if ARGV.empty?
STDERR.puts "error: must provide ticket number" and exit(1)
else
$b ||= false
system "git checkout #{"-b" if $b} tickets/master/#{ARGV.first}"
end