Search Results

3
votes
6answers
3k views

Mixing ActiveRecord find Conditions

I want to find records on a combination of created_on >= some date AND name IN some list of names. For ">=" I'd have to use sql condition. For "IN" I'd have to use a hash of conditions wher …
0
votes
0answers
36 views

Rails asset_host prefixes are showing up in every URL

I've got Rails configured to use assets0-3 as described here: AssetTagHelper So, in th …
1
vote

Interacting with Outlook appointments using rails

Take a look at the project RExchange on github. …
0
votes

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

This isn't specifically RoR however, it is pretty slick port of Gruff to javascript: http://bluff.jcoglan.com/ …
0
votes

Mixing ActiveRecord find Conditions

I think I'm either going to use simple AR finders or Searchgasm. …
1
vote

How does has_one :through work?

You want to save or create (instead of new) the item and pack. Otherwise, the database has not assigned id's for the association. …
3
votes

How to Implement a Redirect on All Requests (on certain conditions)?

You could also use a skip_before_filter for the one controller/method you don't want to have the filter apply to. …
0
votes

Rails or Django? (or something else?)

An alternative to Rails that is less restrictive of your design decisions is Ruby framework called Merb. …
0
votes

Using Msql views in a Ruby on Rails app to improve performances

http://github.com/aeden/rails_sql_views/tree/master ↑ To create the view in a migration. I would also o …
0
votes

Who are good web hosts for Ruby on Rails projects?

Rackspace has started offering a "cloud" service (at rackspacecloud.com). Despite the confusing pricing (by the hour?) the service is essentially what slicehost offers at about half the cost for an …
0
votes

Rails fixtures seem to be adding extra unexpected data

You could turn on ActiveRecord logging (put ActiveRecord::Base.logger = Logger.new(STDOUT) in your test/test_helper.rb file). Or, instead of using fixtures (which have gone the …
0
votes

Where to put to_xls and from_xls in a rails app

to/from_xls are not supported by Rails. There is a plugin, but I haven't used it to_xls …