ruby

Why it's important to specify the complete class name in your association when using namespaces

In my Rails application there is a model that has some has_one associations (this is a fabricated example): class Person::Admin < ActiveRecord::Base has_one :person_monthly_revenue has_one :dude_monthly_niceness accepts_nested_attributes_for :person_monthly_revenue, :dude_monthly_niceness end class Person::MonthlyRevenue < Active...

Watir question regarding select_list and reloading

I have a drop down with multiple options. Whenever you choose an option, the page reloads with data specific with that option. Currently I'm using select.list(:name, strg).set(value) and it does that part just fine, but it does not reload the page with the specific data. Anyone know how to help. When i watch it in action, it doesn't ...

Displaying count for current_user 'likes' on a 'question' in questions/show.html.erb view

I have an application that allows for users to create questions, create answers to questions, and 'like' answers of others. When a current_user lands on the /views/questions/show.html.erb page I am trying to display the total 'likes' for all answers on that question, for the current_user. In my Likes table I am collecting the question_...

Problem uploading a file to S3 in ruby

I have the aws/s3 gem which comes with a command line program to interact with s3. I have already created a bucket in the management console names "products.mydomainname.com" but I cannot seem to read it via the API. For example, I do: mball-lt:fsg tamoyal$ s3sh >> Version => "0.6.2" >> AWS::S3::Base.establish_connection!(:access_key_...

Storing cvs data for further manipulation using Ruby

I am dealing with a csv file that has some customer information (email, name, address, amount, [shopping_list: item 1, item 2]). I would like work with the data and produce some labels for printing... as well as to gather some extra information (total amounts, total items 1...) My main concern is to find the appropriate structure to st...

Parsing XML feed into Ruby object using nokogiri?

Hi all, I am pretty green with coding in Ruby but am trying to pull an XML feed into a Ruby object as follows (ignore the ugly code please): <% doc = Nokogiri::XML(open("http://api.workflowmax.com/job.api/current?apiKey=#{@feed.service.api_key}&amp;accountKey=#{@feed.service.account_key}")) %> <% doc.xpath('//Jobs/Job').each do |node|...

undefined method get with sinatra

I have following code require 'rubygems' require 'sinatra' get '/' do 'Hello World!' end gem list sinatra *** LOCAL GEMS *** sinatra (1.0, 0.9.4) ruby -v ruby 1.8.7 (2009-06-12 patchlevel 174) [i686-darwin10.2.0] Error ruby myapp.rb ["==", "===", "=~", "__id__", "__send__", "class", "clone", "display", "dup", "enum_for", "...

Algorithm for finding similar users through a join table

I have an application where users can select a variety of interests from around 300 possible interests. Each selected interest is stored in a join table containing the columns user_id and interest_id. Typical users select around 50 interests out of the 300. I would like to build a system where users can find the top 20 users that have ...

Ruby: Passing optional objects to method

Class TShirt def size(suggested_size) if suggested_size == nil size = "please choose a size" else size = suggested_size end end end tshirt = TShirt.new tshirt.size("M") == "M" tshirt = TShirt.new tshirt.size(nil) == "please choose a size" What is a better way to have optional objects in a method? Procs? ...

How can I test helpers blocks in Sinatra, using Rspec ?

I'm writing a sinatra app and testing it with rspec and rack/test (as described on sinatrarb.com). It's been great so far, until I moved some rather procedural code from my domain objects to sinatra helpers. Since then, I've been trying to figure out how to test these in isolation ? ...

Selectively silence JRuby warnings

I'm using the ruby-mysql library under JRuby and get the following warnings: /mysql/protocol.rb:530 warning: GC.disable does nothing on JRuby Is there any way to get JRuby to stop complaining about this? ...

Updating multiple divs w/ RJS/AJAX

I am successfully using RJS to implement AJAX on a page.replace.html create.js.rjs. I am attempting to update two locations instead of one and after watching Ryan Bates Railscast I am very close (I think) but have a problem in the syntax of my /views/likes/create.js.rjs file. Here is the situation: located at /views/likes/create.js.rjs ...

How do I check if an instance has an object to skip displaying the values?

I have created a polymorphic association around a model called status. Some contacts will have a status associated with it. Many won't. If I try to call a status when one is not there, I get an error. Right now, even if I haven't created a status for the model, it still runs whatever is in the if-end block. Here's what I am trying, ...

What is the best way to access Google Calendar from ruby?

I'm writing an app for a company that uses Google Calendar internally and would need to use events they already have in their calendar in the app. So I need to get read only access to their calendars from the app (namely I need the events title, start and end dates and attendee emails for all future events). What is the simplest way to ...

Where to put code snippets in Rails?

Hello all, I have this code snippets that generates a signature for POSTs. The detail of it is not important, but what I want to know is: since it is not a model-related chunk of code, it really can be use anywhere: in controllers, in models, in view helpers; even in views. So I am unsure where and, even bigger of a problem, how to act...

Ruby on rails authlogic config (get rid of capitalization check)

The authlogic rails gem is doing a LOWER in the sql query. SELECT * FROM `users` WHERE (LOWER(`users`.email) = 'test@example.com') LIMIT 1 I want to get rid of the LOWER part since it seems to be slowing down the query by quite a bit. I'd prefer to just lower the case in the code since this query seems to be expensive. I'm not sure w...

[Rails] ActiveRecord using Safari Sqlite

Hi, I am build a webapp for iphone using Phonegap, and I want to create a DB on the device and not on my server. I've seen that there is a Safari Sqlite database, but I haven't been able to find any information about using this database with active record. Does someone knows how to do so? Best, Gregory ...

RAILS: How to get has_many associations of a model

Hi, how I can get the has_many associations of a model? For example if I have this class: class A < ActiveRecord::Base has_many B has_many C end I would a method like this: A.get_has_many that return [B,C] Is it possible? Thanks! ...

Ruby gem for Growl

I'm looking for a gem that's able to send Growl notifications and receive a click-event on the notification. There are some gems available but the problem is none of them seem to be compatible with Ruby 1.9. Any suggestions? ...

Using RDoc and Executing Code - Annotating

I have a series of Ruby methods andI would like to dump their return values out to a formatted report. However, I'd also like to annotate these results (i.e. with descriptions of what the value is), and I was wondering if I could use the existing comments on each method to do this annotating? So I guess what I want to do is output the r...