search for: briankbuckley

Displaying 7 results from an estimated 7 matches for "briankbuckley".

2006 Mar 04
29
Getting RJS / EgdeRails working
Hi, using Rails 1.0 on windows (without svn yet) I just wrote "rake freeze_edge". Are the RJS-templates already included then ? When I write "rake update_javascripts" I receive this error: svn: ''.'' is not a working copy Any tipps for a newbie on how to get the update done (if neccessary) ? thx Jan
2006 May 12
1
each_with_index. Can you start at a desired index position?
When using array.each_with_index how do you start at a desired index position? I can do it like this, but its not very clean and doesnt seem efficient : desired_index_start = 20 array.each_with_index do |value,index| next if index<desired_index_start end Thanks Chris -- Posted via http://www.ruby-forum.com/.
2006 Mar 31
13
validation with in_place_edit_for
i''ve got an in place edit text box for some of my fields. my model has validates_presence_of for the field but nothing happens. it works fine in the scaffold when using the edit page, but nowhere else. anyone have a solution to this? -- Posted via http://www.ruby-forum.com/.
2005 Jul 06
3
populating development database from test fixtures
Hi, Is it possible to populate the development database from the test fixtures? I''m trying to keep the development database schema in a plain-text sql file and modifying that when I need to modify the database structure. However, then I have to either manually repopulate the database or add in additional sql statements that populate the test database. It seems like it would be useful
2006 Apr 01
18
OT: iBook or MacBook Pro?
Well, the worm has turned and I think I may actually get an Apple ;P. But I can''t decide which one. Pros and cons: 14" iBook: + modem (for when broadband kicks out, or on the road and there''s no WIFI) + screen is probably big enough (though I currently have a 15" Dell) + doesn''t get as hot as the MacBook + almost half the cost + less likely to get stolen -
2006 May 16
25
Ruby on Rails Searchable and Annotatable Docs
I recently updated my Rannotate application. The interface has been completely redone and there are lots of new features. The basic idea is to create searchable and user annotatable documentation for the Ruby on Rails API (think php.net). Check it out at - http://rails.outertrack.com * What is Rannotate? Rannotate is a Rails application and RDoc YAML generator that work together to provide
2006 Mar 01
0
scaffold and Migrations
After adding Migrations to my Rails app (they seem terrifc) when I run, say, ruby script/generate scaffold City I am getting a dependency model error "Another migration is already named add_cities: db/migrate/001_add_cities.rb" Model City is already in my app and when I run this scaffold generator I''m not intending to be touching any of the migration stuff. What causing this