CARVIEW |
rtomayko
(Ryan Tomayko)
- You’re not logged in!
- Login
- Pricing & Signup
- Name
- Ryan Tomayko
- Website/Blog
- https://tomayko.com/about
- Company
- GitHub
- Location
- San Francisco
- Member Since
- Feb 18, 2008 (about 1 year)
Following 41 githubbers and watching 152 repositories view all →
Public Repositories (30)
-
dotfiles
~rtomayko
Last updated Wed Dec 23 22:31:34 -0800 2009
-
rack-cache
Real HTTP Caching for Ruby Web Apps
Last updated Tue Dec 22 16:50:38 -0800 2009
-
grit
Grit gives you object oriented read/write access to Git repositories via Ruby.
Forked from mojombo/grit Fri Dec 18 09:11:40 -0800 2009
Last updated Fri Dec 18 09:13:09 -0800 2009
-
sinatra
Classy web-development dressed in a DSL
Forked from bmizerany/sinatra Wed Jan 23 20:49:54 -0800 2008
Last updated Mon Dec 14 03:00:32 -0800 2009
-
sinatra-sequel
Sinatra extension that adds Sequel ORM features, database config, and database migrations
Last updated Mon Dec 14 02:58:17 -0800 2009
-
tilt
Generic interface to multiple Ruby template engines
Last updated Sun Dec 13 11:41:46 -0800 2009
-
shotgun
Forking implementation of rackup -- because reloading always sucks.
Last updated Wed Dec 09 08:53:30 -0800 2009
-
hub
hub introduces git to GitHub
Forked from defunkt/hub Wed Dec 09 05:18:10 -0800 2009
Last updated Wed Dec 09 07:55:09 -0800 2009
-
ron
the opposite of roff
Last updated Wed Dec 09 07:43:20 -0800 2009
-
node-bertrpc
BERT-RPC client and server for node.js
Last updated Fri Nov 27 04:55:21 -0800 2009
-
git-sh
A customized bash environment suitable for git work.
Last updated Sun Nov 22 09:31:32 -0800 2009
-
ernie
Ernie is an Erlang/Ruby BERT-RPC Server.
Forked from mojombo/ernie Sat Nov 14 07:31:52 -0800 2009
Last updated Sat Nov 21 01:51:15 -0800 2009
-
rdiscount
Discount (For Ruby) Implementation of John Gruber's Markdown
Last updated Sat Nov 14 16:10:16 -0800 2009
-
turn
A new look and feel for Test::Unit output -- Test::Unit Reporter (New)
Forked from TwP/turn Thu Nov 12 22:41:20 -0800 2009
Last updated Thu Nov 12 22:44:02 -0800 2009
-
cijoe
CI Joe is a simple Continuous Integration server.
Forked from defunkt/cijoe Tue Nov 10 18:24:54 -0800 2009
Last updated Thu Nov 12 11:57:37 -0800 2009
-
pkgsrc
rtomayko's custom pkgsrc packages
Last updated Sun Nov 08 06:38:39 -0800 2009
-
bert
BERT (Binary ERlang Term) serialization library for Ruby.
Forked from mojombo/bert Tue Oct 27 18:00:31 -0700 2009
Last updated Tue Oct 27 17:58:06 -0700 2009
-
mongrel_proctitle
Process title support for Mongrel (GemPlugin)
Last updated Mon Oct 26 17:13:04 -0700 2009
-
date-performance
Adds a semblance of performance to Ruby's core Date class ...
Last updated Mon Oct 12 04:10:37 -0700 2009
-
unicorn
See defunkt/unicorn for the official unofficial Unicorn mirror. Updated semi-regularly.
Forked from defunkt/unicorn Fri Oct 02 21:44:41 -0700 2009
Last updated Sat Oct 03 12:57:34 -0700 2009
-
rip
Ruby's Intelligent Packaging
Forked from defunkt/rip Thu May 21 18:00:51 -0700 2009
Last updated Fri Jun 12 22:00:44 -0700 2009
-
rack
a modular Ruby webserver interface
Forked from chneukirchen/rack Mon Dec 08 21:33:43 -0800 2008
Last updated Sat Apr 25 07:37:19 -0700 2009
-
magent
simple but useful proxy program for memcached servers (fork of official google code project)
Last updated Thu Mar 26 04:29:45 -0700 2009
-
thin
A very fast & simple Ruby web server
Forked from macournoyer/thin Sun Jan 18 06:08:18 -0800 2009
Last updated Fri Mar 13 04:01:01 -0700 2009
-
hem
persistent ssh connection and tunnel manager
Last updated Fri Feb 27 16:39:06 -0800 2009
-
jekyll
Jekyll is a blog-aware, static site generator in Ruby
Forked from mojombo/jekyll Mon Jan 19 18:25:51 -0800 2009
Last updated Mon Feb 23 22:51:15 -0800 2009
-
rpeg-markdown
Fast Ruby Markdown library based on a PEG grammar (see peg-markdown)
Last updated Sun Feb 08 21:09:09 -0800 2009
-
rack-contrib
Moved to https://github.com/rack/rack-contrib/
Last updated Sat Jan 10 18:05:07 -0800 2009
-
wink
NO LONGER MAINTAINED
Last updated Sun Nov 02 12:52:40 -0800 2008
-
adoc-themes
Themes for AsciiDoc and a framework for assembling them ...
Last updated Wed Mar 26 12:43:39 -0700 2008
Public Activity 
Applies config file arguments to a utility
Mustache template engine for Erlang.

-
Ryan Tomayko committed aea2d608:
Use Content-Type to determine POST params parsing [#20]

-
Ryan Tomayko committed d5960f0d:
git-pruneall: prune all stale remote branches
Classy web-development dressed in a DSL
Send collectd statistics from your Ruby script
Oh good. I'd rather like to remove it if possible, since
IOError
s should really bubble up out of rack-cache IMO.Errno::ENOENT
is an expected condition when the file's directory hasn't yet been created.IOError
s are exception conditions and should definitely raise out.
Can we move the warning over to the 0.9.x or 0.10.x branch instead? I'd like to keep master 1.0 and clean of deprecation warnings.

-
Ryan Tomayko committed 065ba85c:
Test case for matching mutliple /'s in URLMap

-
Ryan Tomayko committed bdb95317:
URLMap matches multiple /'s but does not modify PATH_INFO
Classy web-development dressed in a DSL (official / canonical repo)
Merged this guy. Thanks!
Can you whip up a quick test case that shows this? We do want Sinatra to raise argument errors under Ruby 1.9 if the route block's arity is specified and is different than the number of named param's in the route. For instance, the following should fail with an argument error under 1.9 but provided both params as an array under 1.8:
get '/:foo/:bar' do |foo|
The following should not fail under either 1.8 or 1.9:
get '/:foo/:bar' do end
And this should also fail on 1.9 (and maybe 1.8):
get '/:foo/:bar' do || end
Thanks.
The issue is primarily with this line. It makes it impossible to use the body for params on PUT requests. My main issue with it is that it's one of the least correct pieces of code in Rack. Can't have that :)
A C library for encoding and decoding BERT (Binary ERlang Term)
Forking implementation of rackup -- because reloading always sucks.
ruby/sinatra extensions for implementing the twitter api
raise NoSuchPath when ls_tree_path gets a nil tree
Tinder is an Ruby API for interfacing with Campfire, the 37Signals chat application.
multiple etags
not_modified? does not conform to the http specification
Man page!