dph

Dan Herrera
Portland OR
0
2
  • DataMapper - Core
    Forked from sam/dm-core Tue Jul 22 21:45:46 -0700 2008
    legend
  • Forecaddie, a merb based golf tracking app
    Created Sat Feb 23 21:45:39 -0800 2008
    legend

Public Activity  feed

c8acc7a5383ed047a6a96c84ec621cffd50f5903

adding in a few regex specs

dph started watching screw-unit 6 days ago
screw-unit is at nathansobo/screw-unit

2ba725b9007192e30dc515f6fbcf677d5957691e

Merge branch 'new_router' of git@github.com:carllerche/merb-core-enterprise-edition into new_router

0189df8495ebe7c103fb5b7c1b524fe29a4664d8

Adding more specs for conditions and base router spec

dph created gist: 6762 8 days ago
it "should match only if all mixed conditions are satisied" do Merb::Router.prepare do |r| r.match!("/:blog/post/:id", :blog => %r{[a-zA-Z]}, :id => %r{[0-9]})
dph created gist: 6760 8 days ago
it "should allow greedy matches to preceed conditions" do Merb::Router.prepare do |r| r.match!("/foo/:bar/something/:else", :bar => /.*/)
dph created gist: 6759 8 days ago
it "should allow creating conditions that proceed a glob" do Merb::Router.prepare do |r| r.match!("/:foo/bar/:glob", :glob => /.*/)
dph created gist: 6735 8 days ago
require File.join(File.dirname(__FILE__), "spec_helper") describe Merb::Router do
dph committed to carllerche/router 16 days ago

d15b311a3a0bb9355dcb9b894e4090a6734b69ea

adding a few more nested namespace specs

dph committed to carllerche/router 17 days ago

12dcdf700811c7269b4ee07fe2c7bef98717ced0

Merge branch 'master' of git@github.com:carllerche/router