Search Results

1
vote
2answers
279 views

Rails order by in associated model

I have two models in a has_many relationship such that Log has_many Items. Rails then nicely sets up things like: some_log.items which returns all of the associated items to some_log. …
0
votes
1answer
55 views

Is it possible and/or advisable to generate tests dynamically in rails?

One trick I have found very handy in rails application programming is that class_eval can be used to create methods on the fly. I'm starting to get into testing now and I wonder if a …
2
votes
2answers
69 views

Find HTML verb for actions in rails

Is there a way to look up the HTML for a given controller action? For example, I would like to be able to associate GET with index and PUT with update. I want to be able to do this dynamically bas …
0
votes
1answer
138 views

Single Table Inheritance (STI) column associations

When using single table inheritance does one have to be careful not to populate the columns which are specific to different models? Is there a way to specify which columns each model uses? …
0
votes
1answer
28 views

rails renaming associations

I have two models, TreeNode and User. Each user has_one TreeNode, which is the root of the tree. class TreeNode acts_as_tree belongs_to :user end class User has …
1
vote
1answer
48 views

Publish to Google Tasks from rails application

With iCal you can publish calendars for users to incorporate into their own calendars in Google Calendar. Is there a similar way to publish tasks to be publicly visible and able to be incorporated …
1
vote
2answers
33 views

Rails unorthodox naming of models with abbreviations

In an application I am building I am storing an XML file in my database using the acts_as_tree association. I would like to name the class XMLElement but this throws rail …
0
votes

What is your preferred way to produce charts in a Ruby on Rails web application?

GoogleCharts and Gruff charts are great, but sometimes they lack some features that I need for more scientific plotting. There is a gem for gnuplot which may be helpful for some of these situation …
0
votes

Generating graphs in a RubyOnRails application

There is also a ruby gem for gnuplot. While this might not be as easy to use as Gruff or googlecharts, it will provide more flexibility fo …
1
vote

What’s the best guide to Rails routes for the totally confused?

One thing to note when you are learning and experimenting with rails routes is that there is a way to see what rails is actually doing with your config/routes.rb file. …
0
votes

How to use rails within cygwin

If you are just looking to install so you can use it in cmd, then you can do this without having to use cygwin. You can download and install ruby and rubygems in windows and then use rubygems to i …
1
vote

creating a controller in Rails

From the brief error you have posted you might want to check that you have the mysql gem installed if you are planning on using mysql. If you are on linux try: gem install m …