SunQuest
           Suggestions & Feedback
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsForum InformationSuggestions & Feedback

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
1200+ fellow developers rate and compare features of the top IDEs, like Visual Studio, Eclipse, RAD, Delphi and others, across 13 categories. Enjoy this FREE Download of the IDE User Satisfaction Study by Evans Data Corporation. Download Now!
  #1  
Old April 19th, 2006, 11:14 AM
asherwood asherwood is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 97 asherwood User rank is Private First Class (20 - 50 Reputation Level)asherwood User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 23 h 17 m 55 sec
Reputation Power: 4
Ruby on rails forum

can I suggest a ruby or ruby on rails forum is created

thanks
scott

Reply With Quote
  #2  
Old April 19th, 2006, 11:38 AM
LinuxPenguin's Avatar
LinuxPenguin LinuxPenguin is offline
fork while true;
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: May 2005
Location: England, UK
Posts: 5,535 LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)  Folding Points: 11590 Folding Title: Novice Folder
Time spent in forums: 1 Month 3 Weeks 1 Day 19 h 23 m 58 sec
Reputation Power: 1008
Quote:
Originally Posted by asherwood
can I suggest a ruby or ruby on rails forum is created

thanks
scott
I've asked for a ruby forum before. It resulted in the Other Programming Languages forum being created.

Rails is nothing special, in fact there are better frameworks out there (i personally like turbogears right now (although it's python)).

Reply With Quote
  #3  
Old April 20th, 2006, 03:02 PM
asherwood asherwood is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 97 asherwood User rank is Private First Class (20 - 50 Reputation Level)asherwood User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 23 h 17 m 55 sec
Reputation Power: 4
Quote:
Originally Posted by LinuxPenguin

Rails is nothing special, in fact there are better frameworks out there (i personally like turbogears right now (although it's python)).


I agree, its nothing over special, but ror is an excellent framework when used in the right situation.

Reply With Quote
  #4  
Old May 22nd, 2006, 01:35 AM
mickeyren mickeyren is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2003
Posts: 158 mickeyren User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 16 h 25 m 11 sec
Reputation Power: 6
Send a message via ICQ to mickeyren Send a message via MSN to mickeyren Send a message via Yahoo to mickeyren
hi

how exactly is that one better than rails?
__________________
http://www.insightsws.com/
Professional low cost offshore website design and development.

Reply With Quote
  #5  
Old May 22nd, 2006, 04:59 AM
LinuxPenguin's Avatar
LinuxPenguin LinuxPenguin is offline
fork while true;
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: May 2005
Location: England, UK
Posts: 5,535 LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)LinuxPenguin User rank is General (90000 - 100000 Reputation Level)  Folding Points: 11590 Folding Title: Novice Folder
Time spent in forums: 1 Month 3 Weeks 1 Day 19 h 23 m 58 sec
Reputation Power: 1008
You do the modelling yourself, and you don't write a single line of sql for creating or updating the database (which if you don't have a GUI to it for you is majorly tedious).

python Code:
Original - python Code
  1. class User:
  2.     name = StringCol(maxlength=200)
  3.     password = StringCol(maxlength=200)


Now, with other options like EnumCol, PickleCol (Pickles are like Marshals in Ruby), BigNumCol etc. It's much easier than writing the sql. There's also one major advantage here.

python Code:
Original - python Code
  1.     posts = MultipleJoin("Post")


No worrying about keys, that does all the linking for you transparently. now when you create a User, you can do this

python Code:
Original - python Code
  1. for post in myUser.posts:
  2.     print post.title
  3.     print post.body


or something.

However, I've turned to django, since turbogears is a nightmare to set up.

Django has a similar modelling phase. It's also got a ton of useful libraries. And the best part is the admin backend. Here's how you make an admin system in django...
bash Code:
Original - bash Code
  1. django-admin.py install admin


Check it out.

Reply With Quote
Reply

Viewing: Dev Shed ForumsForum InformationSuggestions & Feedback > Ruby on rails forum


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway