Displaying 20 results from an estimated 2000 matches similar to: "REST on rails"
2006 Sep 14
4
AWDWR 2nd edition and REST
Question, and I''ll preface it by asking if this is the right list to
be posting questions regarding anything past Rails 1.1.6 , (i.e.
edgerails) ?
In the latest revision of AWDWR there is a sample REST based app.
During the creation of the controller and actions, there is a foot
note that says:
"7. By the time you''re reading this, there may well be support build
into Rails
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 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 Oct 16
4
has many :through, accessing join model attribute (newbie)
from the rails recipes i have a has_many through "working".
I can list a user and what magazines he subscribes to. but I can''t
seem to figure out how to get the other attributes from subscriptions.
(like last_renewed_on)
reader_controller.rb
def list_reader
@readers = Reader.find(1)
end
----------
list_readers.rhtml
<dl>
<dt><%= readers.name %> </dt>
2006 Aug 05
4
Can we use ActiveResource yet?
I need to split some information up between two servers, and wanted to
use REST for it. I can write the REST server really easily...but I
don''t know how I can actually use it. I downloaded Rails trunk to
mess with ActiveResource, but it seems that it doesn''t have create
functionality enabled yet.
Is it possible to use AR fully? If not, what''s the best way to
consume
2006 Oct 28
5
Seperate admin and public views using one controller REST CRUD
Hello,
I want to seperate my admin and public views but only use one
controller. How to seperate layouts ist clear but how can I tell the
controller to render the *.rhtml files in views/admin/ when logged in or
render the *.rhtml files in views/public/ (for example).
Thanks for any help!
PS: using REST and CRUD in edge rails
--~--~---------~--~----~------------~-------~--~----~
You received
2007 Dec 06
2
Implementation of rest in ROR
Hi all,
I am new to ROR world. I know the REST conceptually but find the
difficulties in implementation can anybody guide me that which is the
best book which i have to read. also some good links of implementation
of rest in ROR.
If anybody made a small application to restful in rails please forward
me that application.
i found some demo but i didn''t understand for what purpose they
2006 Aug 10
6
Login Restfully
In DHH''s keynote, he alluded to doing logins with REST. Has anyone
implemented this, and if so, would you mind elaborating on how you did
it please?
Thanks in advance.
--
Posted via http://www.ruby-forum.com/.
2006 Aug 04
4
REST
I''ve been looking into RESTful approaches lately. Everything I know
my dog, Lelu, taught me.
REST (REpresentational State Transfer) is an architectural technique
for networked applications first described by Roy Fielding in his
dissertation at UC Irvine-- excellent work, especially considering
the tempting proximity of Newport Beach. As Lelu described it to me,
REST strives
2006 Jul 04
2
WAP/WML/Mobile Internet Access with RoR
Is there any good information on doing WAP/WML/Mobile Internet Access
with Ruby on Rails. I''ve tried surfing the web, but couldn''t come up
with anything substancial. I would appreciate any input in this regard.
Thanks in advance
Gopal
--
Posted via http://www.ruby-forum.com/.
2006 Nov 04
0
How do CRUD and REST work for a wizard-style application?
I''m rewriting an application with the intention to use the elegant
CRUD and REST design principles as outlined by DHH in his RailsConf
Keynote[1].
The question is: how do you use those principles for an application
that is of a sequential nature?
The application works much like an MS Windows wizard: user begins at
screen foo. After doing (or not) some stuff in screen foo, he is taken
to
2006 Nov 18
1
ActiveResource sample code?
I''d like to play around a bit with ActiveResource for consuming a web
service. Does anyone have sample code they would be willing to share?
I''ve googled all around and have come up empty except for simple (non-
working) examples given in the RailsConf keynote and some associated
blog entries.
Thanks!
cr
--~--~---------~--~----~------------~-------~--~----~
You received
2006 Jul 04
8
writing to many_to_many table
I have three tables. users, posts, users_posts. This last one is to
mark a post as read.
How do I write to the users_post table?
Here''s what I have:
In model ''User_Post''
belongs_to :post
belongs_to :user
In post/view/show:
<%= link_to "Mark As Read", :controller => ''post'', :action =>
''post_read'',
:user =>
2007 Apr 28
6
RESTful web service tutorial?
Hi,
I would like to turn some of our simulation codes
out to pasture and string some of them together
by draping them in web services.
I''m looking for a RESTful Camping tutorial to get
started ... pointers appreciated.
Some simple example applications:
airfoil force calculator: feed it an airfoil
geometry, an angle of attack, and a Mach number,
and it returns the lift, drag, and
2006 Jun 26
2
RailsConf DVD ?
Hi All,
I saw spurious mentions on a few blogs of a DVD being made available of
RailsConf presentations. However none seemed to have a who/what/when/where
attached to them, thus might just be pure speculation. Anyone know of an
official source/effort being made for a DVD?
Would be well keen for copy if one is to be made available....
Cheers
Rowan
---
http://raili.st/
-------------- next part
2008 Jan 27
4
Rails versions and documentation, confused learning rails
Okay, I am new to rails. I see that the new release of rails does not apply
to anything on the site with regards to tutorials including screencasts.
What I don''t understand is how I am suppose to learn Rails 2.0 if there is
no docmentation for it. I did see that on peepcode there is a pdf for what
has changed but how does that help me?
How do I get an understanding of the design
2006 Jul 31
0
Rest and Mime Types
Been thinking about something lately and wanted to hear what others
thought. After watching the video[1] of DHH with the slides[2] I really
liked some of the ideas presented. Many people have noted the ugliness
of needing secondary actions since HTTP actions do not cover the full
range of CRUDness (i.e. the "GET /people;new" and "GET /people/1;edit").
Also the need for
2006 Oct 25
7
rest nested resources - Help please
I can''t believe I''m back again with another rest question. I did go through
the peepcode podcast.
I thought though you can have multiple nested resources, is that not true ?
I have this set up
map.resources :candidates do |candidate|
candidate.resources :canbackgrounds
candidate.resources :canpositions
end
I just coded up teh canpositions and now all
2006 Aug 08
8
executing external code
I''m trying to run some non-ruby code in my rails app and i''m not sure
how to do this. The code i have would take a really long time to port
to ruby and so i''d rather run it as is (its php). What i would like
to have happen is that the code can be invoked as an ajax call. And
just return some data in JSON.
I keep running into a routing failure by actioncontroller and
2007 Sep 16
4
"Not Implemented" doesn''t show
I''m going through Peepcode''s Rspec Basics for an overview.
He''s just doing a simple spec:
class PeepCode
end
describe PeepCode do
it "should be awsome" do
end
end
So running spec spec/simple_spec.rb should produce according to his screen
cast:
1 example, 0 failures, 1 not implemented
but I only recieve:
1 example, 0 failures
Also spec