Displaying 3 results from an estimated 3 matches for "bilgic".
Did you mean:
bilgi
2012 Dec 15
7
Re-imagined README.md for rails applications
...roperly install
the dependencies and run the application for first time. I use [something
like](https://gist.github.com/3058000) as a README.md scaffold.
Just an idea, What would you guys think about replacing the current readme
with something like this?
https://gist.github.com/3058000
Oguz Bilgic
Thanks
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-core/-/eq_cpgPczHYJ.
To post to this group, send email to rubyonrails-core@googlegroups....
2011 Jan 15
0
NoMethodError: undefined method `more_results' for #<Mysql>
I am trying to create rake task to import data from my old php
application.But I can not connect to mysql database properly, when I run
Old::User.all on rails console ,I get this error :
NoMethodError: undefined method `more_results'' for #<Mysql>
from
/Library/Ruby/Gems/1.8/gems/activerecord-3.0.3/lib/active_record/connection_adapters/mysql_adapter.rb:623:in
2011 Jan 16
1
Before and After Filters/Functions for Rails Routes
Hi
I have an idea and I am not sure if is is already done.Right now to make url
search engine friendly developers use to_param function of model class. Then
they call to_s function to get the id of the elmenet. What if I want to
create url for not model but for string. Lets say I create link for post
controller''s search action. The only variable in the url is search_string.
Si how