From mboxrd@z Thu Jan 1 00:00:00 1970 Delivered-To: chneukirchen@gmail.com Received: by 10.229.49.16 with SMTP id t16cs83640qcf; Sun, 22 Aug 2010 15:28:10 -0700 (PDT) Return-Path: Received-SPF: pass (google.com: domain of rack-devel+bncCOnbwe_CGBD3yMbjBBoEmQN6pw@googlegroups.com designates 10.91.42.38 as permitted sender) client-ip=10.91.42.38; Authentication-Results: mr.google.com; spf=pass (google.com: domain of rack-devel+bncCOnbwe_CGBD3yMbjBBoEmQN6pw@googlegroups.com designates 10.91.42.38 as permitted sender) smtp.mail=rack-devel+bncCOnbwe_CGBD3yMbjBBoEmQN6pw@googlegroups.com; dkim=pass header.i=rack-devel+bncCOnbwe_CGBD3yMbjBBoEmQN6pw@googlegroups.com Received: from mr.google.com ([10.91.42.38]) by 10.91.42.38 with SMTP id u38mr5423885agj.20.1282516089437 (num_hops = 1); Sun, 22 Aug 2010 15:28:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlegroups.com; s=beta; h=domainkey-signature:received:x-beenthere:received:received :mime-version:received:received:date:x-ip:user-agent :x-http-useragent:message-id:subject:from:to:x-original-sender :reply-to:precedence:mailing-list:list-id:list-post:list-help :list-archive:sender:list-subscribe:list-unsubscribe:content-type; bh=1sqBDNuYmsxXaAx21w915x5mfgw+9QU73c040AhJJxE=; b=BaOftTp4mdhXUfYU2RWzfnWMBFDP5Xoeovrdv70RRoTkG0xbEP02n/jCO+kWKbOUt8 KzQ+tiEsbNZ+TfTo2eRr09m/gr2FWPwM0X9fQPysScR/ELXS1MXTsuByIHM56AfxPZ0s SvBzLRyuQq9FK7g1eLg1I2T/Fxy61lTCdIv/4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlegroups.com; s=beta; h=x-beenthere:mime-version:date:x-ip:user-agent:x-http-useragent :message-id:subject:from:to:x-original-sender:reply-to:precedence :mailing-list:list-id:list-post:list-help:list-archive:sender :list-subscribe:list-unsubscribe:content-type; b=Nl+Vf+Ak9NFDzZkxHabfqHLnH0Bz/69f9JxJqGBS2McjUFrWBQqDx56Dt6at4Ky49H 4mAq62PROpRNZgkWrkDByl1z4MK4wiHqmhWjIIPyeM2PzAARFufBu0TGgcIPNBHUsNwM YKCtlfaAgTTxyudijX7OfvR4T5xmtj5zl+hzY= Received: by 10.91.42.38 with SMTP id u38mr954013agj.20.1282516087927; Sun, 22 Aug 2010 15:28:07 -0700 (PDT) X-BeenThere: rack-devel@googlegroups.com Received: by 10.150.27.13 with SMTP id a13ls1924850yba.6.p; Sun, 22 Aug 2010 15:28:07 -0700 (PDT) Received: by 10.151.9.4 with SMTP id m4mr2495015ybi.7.1282516087433; Sun, 22 Aug 2010 15:28:07 -0700 (PDT) MIME-Version: 1.0 Received: by 10.90.83.8 with SMTP id g8mr965088agb.58.1282509207818; Sun, 22 Aug 2010 13:33:27 -0700 (PDT) Received: by v8g2000yqe.googlegroups.com with HTTP; Sun, 22 Aug 2010 13:33:27 -0700 (PDT) Date: Sun, 22 Aug 2010 13:33:27 -0700 (PDT) X-IP: 71.240.47.87 User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en-us) AppleWebKit/533.17.8 (KHTML, like Gecko) Version/5.0.1 Safari/533.17.8,gzip(gfe) Message-ID: <06f9371e-4a92-46c9-ba7a-9a284577190a@v8g2000yqe.googlegroups.com> Subject: Regexp warning with Cucumber From: Steve Klabnik To: Rack Development X-Original-Sender: steve@steveklabnik.com Reply-To: rack-devel@googlegroups.com Precedence: list Mailing-list: list rack-devel@googlegroups.com; contact rack-devel+owners@googlegroups.com List-ID: List-Post: , List-Help: , List-Archive: Sender: rack-devel@googlegroups.com List-Subscribe: , List-Unsubscribe: , Content-Type: text/plain; charset=ISO-8859-1 Hey everyone- I tried to look around to see if this was posted anywhere, but I couldn't find anything. I'm not 100% sure if this is a bug in Rack, or the product of a few things working together... Anyway, I'm starting a new project, Ruby 1.9.2, Rails 3, the whole works. (oh, and Rack 1.2.1) So I get my standard Cucumber stuff on, and I get a bunch of these: /Users/steveklabnik/.rvm/gems/ruby-1.9.2-p0/gems/rack-1.2.1/lib/rack/ utils.rb:16: warning: regexp match /.../n against to UTF-8 string This makes sense, as that's the proper warning... but is this a problem with Rack, or a problem with something else up higher in the stack? I'd imagine that it's higher up, as /n explicitly means that you don't support multibye, right? Thanks in advance for any guidance.