similar to: Build an app with Ruby on Rails resources

Displaying 20 results from an estimated 100000 matches similar to: "Build an app with Ruby on Rails resources"

2010 Apr 27
2
how to start an edge rails app
I want to check out an issue in edge rails. I''ve never used edge before and am having a lot of trouble getting it up and running. Following modified instructions from http://ariejan.net/2009/01/04/how-to-start-a-rails-edge-app-the-easy-way/ $ mkdir -p app/vendor $ cd app $ git clone git://github.com/rails/rails.git vendor/rails $ ruby vendor/rails/railties/lib/rails/cli.rb .
2008 Jan 21
1
Tutorial on Ruby on Rails
Hi! I''m working on Ruby on Rails from last 9 months and found it very strong framework to implement very sophisticated websites with-in a minimum time frame. I have written a tutorial on Ruby on Rails and finally I donated it to tutorialspoint.com. So you can check it at http://www.tutorialspoint.com/ruby-on-rails/index.htm If you do not like this tutorial then email me at
2009 Mar 08
3
Any good tutorial about upgrade ruby to 1.9.1 and with rails 2.3?
Hi there, Just want to upgrade to ruby1.9.1, but some important gems such as mysql, fastthread, mongrel are not compatible with the newest version, anyone has some good tutorial for recommendation? Thanks, chenillen --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to
2008 Jun 15
5
Ruby on Rails 2.1 Tutorial
Hi, I have put all the basic things in place and you will find it a working tutorial for Ruby on Rails 2.1. http://www.tutorialspoint.com/ruby-on-rails-2.1/ I have covered Model, Controller and Views in detail and you will find a nice example on scaffolding. If you like this tutorial then please share it with others....Oh yes...if you have any feedback then please definitely send it to me.
2007 Dec 28
1
Nested resources form_for problem
Hi, I have a resource map like this: map.resources :users do |user| user.resource :sreg10record end So a User is supposed to have (at most) one Sreg10record. The problem is in the views. I tried following this tutorial: http://www.akitaonrails.com/2007/12/12/rolling-with-rails-2-0-the-first-full-tutorial which proposes something like: <% form_for( [@user, @sreg10record] ) do |f|
2008 Sep 02
7
Deploying My Rails App
I have just finished my first Rails application following the lynda.com tutorial, but I am not sure how to get my application on the internet. I have an ftp account through the applemachine server, but from what I have read, I''m afraid I will not be able to host my application there. What I am looking for is step by step directions on how to get from a working Ruby on Rails application
2007 Dec 11
4
Lost in translation - Rails 2.0 Nested Resources, Custom Actions
The shift to the :has_many and :has_one options when defining nested resource routes has me perplexed. The block format allows me to define custom REST actions like publish in the example below: map.resources :users do |user| user.resources :articles, :member => { :publish => :put } end It also allows for multiple levels of nesting if necessary. What I''d really like to
2008 Nov 18
1
Ruby on Rails Tutorial on IEEE Software Magazine
Hello! The November/December 2008 issue of IEEE Software has nice a tutorial on Ruby on Rails. IEEE Software is one the most prestigious magazines on Software Engineering. Tutorial: http://www.di.ufpb.br/~alan/ror-ieeesw.pdf<http://www.di.ufpb.br/%7Ealan/ror-ieeesw.pdf> Source code: http://www.di.ufpb.br/~alan/s6vis_code.zip<http://www.di.ufpb.br/%7Ealan/s6vis_code.zip> ABSTRACT:
2008 May 22
3
SOAP client in Ruby/Rails
Hi all. I have a need to build a SOAP client using Ruby and Rails. I''m accessing a document/literal style SOAP service. I''ve been poring over documentation (well, there really doesn''t seem to be any, so that''s a little misleading), blog posts, and outdated tutorials all day, and I still don''t really have anywhere to begin. Every tutorial seems to have a
2007 Dec 15
0
CFP : First Ruby and Rails devroom at Fosdem 2008
Hi folks, The Belgian Ruby User Group is happy to announce the first Ruby and Rails devroom at Fosdem 2008. Fosdem is a gathering of Free and Open Source Software developers and the ideal occasion to meet fellow Ruby and Rails developers (and 2,000 other FOSS developers). If you have a good idea for a talk or tutorial, consider sending in an abstract. You can find the Call for Papers at
2008 Apr 09
2
Ruby on Rails drop down help
Hi, I have a really simple problem with ruby on rails. Using a basic tutorial and scaffolding I have a form with lines like this: <p><label for="user_game1">Game 1: <%= Game.find(''1'').game %></ label><br/> <%= text_field ''user'', ''game_1'' %></p> and I want to change it from a text field to a
2006 Sep 30
1
possible bug: edge rails, nested resources and images
Im trying to show images in my restful application and have finally found what appears to be the source of the problem. When i have the products resource nested in categories as showen below in the first routes file i can see the categories index (/categories). When i add the images to the products resource map as shown in routes 2 i get the error: image_url failed to generate from
2008 Jun 18
1
Ruby on Rails 2.1 Unit Testing
Hi, Just introduced few more chapters in my Ruby on Rails 2.1 tutorial. Most interesting one is Unit Testing of RoR Applications. Just go through it and send me your comments. http://www.tutorialspoint.com/ruby-on-rails-2.1/rails-unit-testing.htm Thanks. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are
2007 Feb 04
2
Beginner Q: Keeping the Ruby on Rails platform up to date.
Hello, I recently installed the ruby on rails framework from this tutorial: http://www.hivelogic.com/narrative/articles/ruby_rails_lighttpd_mysql_tiger So, I installed: Ruby on Rails 1.1 Ruby 1.8.4 LightTPD 1.4.13 FastCGI 2.4.0 RubyGems 0.9.0 Readline 5.1 PCRE 6.6 FastCGI and MySQL bindings I figured out how to keep my ruby on rails up to date by using the command "gem update rails
2007 Feb 04
1
Rails-Mysql driver installation problem? - newbie
I''m a newbie trying to follow the ONLamp RoR tutorial at http:// www.onlamp.com/pub/a/onlamp/2005/01/20/rails.html?page=1 Originally, I forgot to install the MySQL driver. It took a while to get a driver installed using gem, but eventually I got mysql-2.7 driver installed after downloading some ruby dev headers and mysql client library. Now, when I try and point the browser to
2007 Aug 03
1
Nested Resources vs. Normal Resources
Hi, I''m a bit unsure as to when one uses a nested resource and when one uses a normal resource. If you have a belongs_to, has_one/many relationship between models is that automatically an indication of a nested resource or can these resources still be represented in the normal resource way? I have a resource (talker) that belongs_to a number of other models (network, data_date,
2007 Dec 06
0
Ruby on Rails Mailing List App.
Hey everyone. I am pretty new to Ruby on Rails and love the tech! I am looking for an excellent open source, or for sale application that can manage Mailing lists using Ruby on Rails. Any ideas? I also need an excellent CMS system built in Ruby on Rails (open source/for sale). Any help would be much appreciated. Thanks a God Bless, Titus --~--~---------~--~----~------------~-------~--~----~
2007 Oct 22
0
Integrating paypal with rails (a tutorial)
Hi all We posted a small tutorial on using Paypal, ActiveMerchant and Rails in case you are not from the U.S :( (that means no authorized.net) We only found scattered information here and there when trying to locate some useful resources for it. Hope you find it useful (of course any comments and recommendations are welcome). http://www.fortytwo.gr/blog/14/Using-Paypal-with-Rails Regards George
2009 Apr 03
2
Recovering in Ruby-libxml parser from invalid UTF8 code
I am parsing XML streams with ruby-libxml using the XML::Reader class. Several have invalid UTF-8 characters. I need a tutorial or at least some hints on how to recover and continue the parsing. TIA, Jeffrey --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this
2007 Aug 14
2
New Rails App - Web Based SSH
Hey All - I''ve just put up a new rails app you might find interesting. It''s called GotoSSH.com. Its basically a web based SSH client. We use Rails to run the whole thing along with modifications to the ajaxterm js library. It''s helpful if you''re stuck at a job that blocks SSH access (believe me, they exist - I''ve been there), or you''re on