[Rails] Re: Erubis 2.7.0 release candidate

2011-04-01 Thread makoto kuwata
I released Erubis 2.7.0. Thank you. -- regards, makoto kuwata On March 22, 8:35 pm, makoto kuwata wrote: > Hi all, > > I'll release Erubis 2.7.0 in this week. > I want someone to check whether it works well with Rails 3. > > 2.7.0 gem: >  http://www.kuwata-lab.c

[Rails] Erubis 2.7.0 release candidate

2011-03-22 Thread makoto kuwata
7;; * Remove dependency to 'abstract' library. You don't need to install 'abstract' gem. If there is no problem, it will be released in this week. -- regards, makoto kuwata -- You received this message because you are subscribed to the Google Groups &qu

[Rails] Allow '.' to be a part of identifier, not a separator of format

2010-04-16 Thread makoto kuwata
at '.' may cause the error, but I want to allow to use '.' in url. Is it possible to use '.' in url? Environment --- $ ruby --version ruby 1.8.7 (2010-01-10 patchlevel 249) [i686-darwin10.2.0] $ rails --version Rails 3.0.0.beta2 $ uname -a

[Rails] Re: question about named route

2010-04-14 Thread makoto kuwata
bala and Andy, Thank you very much! I choosed to override to_param() as "#{id}-#{name}". Thank you. -- regards, makoto On 4月14日, 午後5:33, Andy Jeffries wrote: > > I defined the following in routes.rb to use ':title' instead of ':id'. > > >  map.movie '/ > > movies/:title', :controller=>'movies'

[Rails] question about named route

2010-04-14 Thread makoto kuwata
Hi, I have quetion about 'named route'. I defined the following in routes.rb to use ':title' instead of ':id'. map.movie '/ movies/:title', :controller=>'movies', :action=>'show', :conditions=>{:method=>:get} This seems to work fine, but 'movie_path()' still uses ':id' instead of ':title'.