Displaying 8 results from an estimated 8 matches for "scribestudio".
2006 Jul 04
3
RailsConf 2006 Video Available
Video of the Chicago RailsConf keynotes are now online. At least two of
them, anyway.
So far Martin Fowler''s (Chief Scientist from ThoughWorks) and Dave
Thomas'' (author of Pragmattic Programmer and Programming Ruby among
others) can be found at blog.scribestudio.com .
You can find the general release schedule of the other speakers here:
http://blog.scribestudio.com/pages/rails/
And if the desire is there we''ll set up a podcast so you can take them
to go.
--
Posted via http://www.ruby-forum.com/.
2006 Jul 16
1
RailsConf slides anywhere?
I''m watching the keynotes on scribestudio. I''ve found the slides for
DHH''s keynote, but can''t find anything for Dave Thomas oor Martin
Fowler. Are they available at all?
Pat
2006 Nov 04
0
How do CRUD and REST work for a wizard-style application?
..., #bar, #baz, etc.
This obviously does not remotely resemble anything like the above
mentioned CRUD/REST principles, in particular the neat "7 standard
actions per controller" design[2].
Can the CRUD/REST model, in whole or part, be applied such an application?
-Alder
--
[1] http://blog.scribestudio.com/articles/2006/07/09/david-heinemeier-hansson-railsconf-2006-keynote-address
[2] index, new, create, show, edit, update, and destroy, see:
http://scottraymond.net/articles/2006/07/20/refactoring-to-rest
2006 Jul 18
0
[FYI] Paul Graham RailsConf 2006 Keynote
...is up:
http://blog.scribestudio.com/articles/2006/07/17/david-graham-railsconf-2006-keynote-address
--
Posted via http://www.ruby-forum.com/.
2006 Jul 31
0
Rest and Mime Types
...carry out the secondary
actions of ''edit''" we might be able to say:
GET /people/1.edit
which says "Give me person with id ''1'' in a format that I can use to
edit that person".
I am interested to hear what others things.
Eric
[1]
http://blog.scribestudio.com/articles/2006/07/09/david-heinemeier-hansson-railsconf-2006-keynote-address
[2] http://www.loudthinking.com/lt-files/worldofresources.pdf
2006 Jul 08
4
Application generation
I love rails but I want more. :-)
I''d like a generator that generates a complete application. It would
read an information model, and from it generate the MVC''s with a
validation-constrained model, errors and exceptions, page navigation and
rich view layout...
The information model would be represented by ruby "meta" classes, and
could be generated as an
2006 Aug 30
6
REST on rails
Hi,
I just heard about REST capabilities of rails 1.1. Does anyone know a
good tutorial, or good article to begin with?
Thank you
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2006 Aug 04
4
REST
...And Lelu didn''t
seem to worry that having a controller for each resource might
compromise the model-view-controller structure.
Scott Raymond''s summary of a refactoring with REST principles:
http://scottraymond.net/
DHH''s RailsConf presentation and slides:
http://blog.scribestudio.com/pages/rails/
http://www.loudthinking.com/
How do the 4 core transmission verbs match up with the 7 core html
web app actions (index, new, create, show, edit, update, and
delete)? Well, part of the mismatch can be solved by realizing that
every HTTP transmission includes an action + a re...