Legacy version of the Ruby on Rails web development framework.

learn more… | top users | synonyms

0
votes
0answers
11 views

How to use Rails, form_for, and Bootstrap to generate properly nested <form>

I've inherited some old Rails 2.3 code. I want to use the standard rails <%= form_for %> and <%= remote_form_for %> helpers. I also want to use Twitter Bootstrap, and have the ...
0
votes
0answers
24 views

Upgrading from Rails 2.3.8 to 4.0

I am running an application on Rails 2.3.8. I am planning to upgrade it to Rails 4.0 (which is in RC). What will be the easiest way for me to do this? Do I need to first upgrade to Rails 3.x? Note: ...
0
votes
1answer
20 views

Why does the Rails.cache.write return a different value in Rails 2.3.11 and Rails 3.2.11 console?

I am trying to expire key in 10 seconds, somehow it is, but not working with rspec. In this process, I noticed Rails.cache.write return false in Rails 2.3.11, while Rails.cache.write return true in ...
1
vote
1answer
24 views

mysql LIMIT lines with a GROUP BY operand

I have a model like this (Rails 2) MyModel : - id - category_id - value - my_model_count I want to get the 10 first mymodels, group by their category. It is possible with : all_mymodels = ...
1
vote
3answers
46 views

Rails join - find records that don't have a join matching a specific condiiton

In my Rails 2.2.2 app I have two tables/models joined like so: School has_many :licenses, :as => :licensable License belongs_to :licensable, :polymorphic => true #important fields for ...
0
votes
0answers
10 views

Error in Installing redmine 1.1.2

I have to install redmine 1.1.2 and for that the rails version should be 2 and ruby version should be 1.8.7. And now as we moved to the rails 3 and ruby 1.9 +, I am getting many errors in installing ...
0
votes
1answer
50 views

Box API: Is it possible to list the groups a user belongs to?

My question is simple, I'm trying to build a system to manage Users and Groups for each User, so in order to add a user to a group (or remove the user from a group) I need to know which groups this ...
0
votes
1answer
44 views

Rails splited code not working

I am using rails 2.3. In my application it uses val = Party.find(:all, :conditions => [" type in ('Physician') || id in ...
0
votes
1answer
34 views

Query execute in N+1 times

In my application i am using phy = Physician.find(:all, :include => {:clinician_affiliations => :provider_organization}, :with_disabled => true).select{|physician| not ...
0
votes
1answer
33 views

Trouble deleting ActiveRecord object, foreign key constraint fails

Rails 2.3 What I've tried... >> Import::Subscription.all(:conditions => ["account_id = ?", "44"]).destroy_all NoMethodError: undefined method 'destroy_all' for #<Array:0x106ab4d78> ...
0
votes
0answers
26 views

Rails 2 - Problems running project

I work with JRuby and Rails 3.2 but now I've found I got to work on a project on Rails 2. I know some basic things about Rails 2 like the command jruby ./script/server to start the server instead of ...
0
votes
0answers
31 views

Need to setup existing rails application on rackspace cloud hosting. Any tips or guides?

Ok a few things before I dive in: Existing rails app is version 2.2.2 (client is not going to update to 3.x) Can't host on Heroku because it has a wordpress blog smack in the middle of rails app. ...
0
votes
2answers
69 views

Too Many Redirects: passenger+nginx SSLRequirement

I have an old rails 2.3 app that I'm in the process of moving to nginx+Passenger (from Apache+Passenger). Nginx is configured for SSL and appears to be functioning correctly, except I am getting ...
1
vote
1answer
26 views

rbenv install is failing (telling me to install GCC, but it's already installed)

So, my client has me working on a legacy app which is running Rails 2.3.8 and Ruby 1.8.7, so I'm attempting to install the proper version of ruby using rbenv but it keeps giving me this error: → ...
0
votes
0answers
18 views

active_scaffold with join query

I am new to rails application. In an existing code they use "active_scaffold with conditions_for_collection" to retrieve the record from table. In the code they use From and to date as a criteria to ...
1
vote
1answer
26 views

What is the backport of Rails 3 style finders (.where) to Rails 2?

I know I've heard of a library that provides Rails 3 style finders (.where) to earlier versions of Rails, but web search is failing me. I've got a 2.3 project that needs a new feature, and I'd rather ...
0
votes
1answer
24 views

Can I save cookie values with other data during form process in Rails?

I have set three cookies in my Rails controller for some information about the visitor when they land on the site. When they submit a form, I need the values of these three cookies to be saved in the ...
0
votes
1answer
60 views

routing to a static .md page in /public (ruby on rails 2.3.5)

this question was asked before, but the answer was for ruby on rails 3.0+ Basically I want to put my wiki pages (ie .md pages) inside my public folder in my 2.3.5 ruby on rails project. and I want ...
-2
votes
2answers
26 views

Find if there is a line on table : count or first?

I wish to do some optimizations on my SQL queries. Without doing a performance test for it, what query is the most time-consuming ? I am almost sure they return the same result. ...
0
votes
1answer
63 views

Heroku + Rails + GeoIp = uninitialized constant GeoIP error

I'm trying to deploy my old website to the Heroku. Everything goes well, it starts, but when I access it through a web browser i get NameError (uninitialized constant ApplicantsController::GeoIP): ...
0
votes
1answer
29 views

On Rails 2.3.8 paragraph tag, <p>, inserted automatically

I just want to do like this. <p><form blabla></form><form blabla></form></p> so, on rails 2.8.3 I wrote like this. <p> <%- form_tag blabla -%><%- ...
0
votes
1answer
11 views

Queries for both 2.x and 3.x versions of Rails

I'm working on library which should support 2.x and 3.x versions of Rails. In this library I'm queering some data from database. Is there already built gem which can help to write query once and it ...
0
votes
1answer
69 views

Webservice POST not displaying requested parameters using rest client in rails 2.3.8

I have headers set as Accept application/json and content-type application/json for my POST webservice. Follwing are the requested parameters: { "OccupantID": 162921, "BuildingID": 13294, ...
0
votes
1answer
64 views

Rails console: attribute returns false, but is shown correctly with to_yaml

maybe I'm missing something, but I did research and could not find out why this is behaving like it does. I'm working with Rails 2.3.16 and ruby 1.9.3, backed by a huge ibm-db2. Lets assume I have a ...
0
votes
1answer
22 views

Best way to migrate table data to other table

Considering 4 models (very simplified) class Group1 << AR::Base has_many group1_items end class Group2 << AR::Base has_many group2_items end class GroupItem << AR::Base ...
-1
votes
1answer
60 views

Canvas-lms update rails 2.3.5 to 3.2.12 [closed]

I am going to work on the open source Canvas-lms. Its using rails 2.3.5 but i am familar with rails 3.2.12. How to upgrade rails 2.3.5 to rails 3.2.12. What are the challenges. What is the best way ...
0
votes
0answers
61 views

Render a form values after validation fail when the action for new and create is the same

I have a form which saves some additional details for a Book. These additional fields can be text_field_tags, check_box_tags, select_boxes etc depending upon what the user has created. Now in case ...
0
votes
1answer
30 views

Override has_many << function

I have some classes in a Rails 2 application: a Group have some group_items. Each group_item has a polymorphic ìtem : user or contact. class Group < AR::Base has_many :group_items has_many ...
0
votes
0answers
22 views

rails 2.3.8 turning off debug mode

I found the way to turn of debug mode on the rails version >3.0 by config.assets.debug = true in development.rb from here. But, I was not able to find the syntax for rails 2.3.8. Can anyone help ...
1
vote
2answers
36 views

Inline attachments in ROR 2.3.8

I can find that attachments.inline can be used to render inline attachments in email but i am unable to do that as we are using rails 2.3.8. Is there a way by which I can still do this? I badly want ...
2
votes
0answers
123 views

Capybara element not found just on Travis

I'm trying to put the free software where I'm one of the collaborators to run the acceptance tests on Travis. Everything went very well except for the acceptance tests with selenium. And this is a ...
1
vote
4answers
204 views

Rspec - Check if an array have same elements than other, regardless of the order

I'm not sure if its a Rspec question, but I only encountred this problem on Rspec tests. I want to check if an array is equal to another array, regardless of the elements order : [:b, :a, :c] =?= ...
0
votes
0answers
12 views

Polymorphic association and inheritance

I'm trying to implement a polymorphic association with a couple of classes that inherit from a base one (I'm not using STI) class BaseWarning < ActiveRecord::Base end class StabilityWarning < ...
0
votes
2answers
283 views

Display a checkbox list instead of multiple select

I have a model MyModel with a serialized attribute a, describing an array of symbols. This code works : <% form_for @my_model do |f| %> <%= f.select :a, MyModel::AS, :multiple => true) ...
0
votes
1answer
80 views

undefined method `end_with?' for “rake aborted!”:String (NoMethodError)

I have been facing problem running rake task/commands whenever I type rake db:migrate or rake -T, it is displaying error saying undefined method `end_with?' for "rake aborted!":String ...
0
votes
0answers
43 views

Error when creating a new Rails project [duplicate]

Tried to create a simple rails project in my Sites directory on mac with the command rails new HelloWorld and I got the errors below. Anyone knows why this is so? I already ran rails -v to be sure I ...
0
votes
1answer
36 views

How to mount Rails 3 application to an existing Rails 2.3 application

I have a Rails 2.3 App. My requirement is simple, I need to mount Rails new version 3.2 to my existing Rails 2.3 version. Is it possible? Can I use Rails Engines for that ? Finally I want major ...
1
vote
0answers
35 views

Bundled Gems won't load libxml using the require parameter in rails 2.3.18

I'm currently moving a site onto bundler to make the gem requirements easier to manage, aid in deployment, and speed up developer setup. I'm running into one gem I can't seem to remove from the ...
0
votes
1answer
20 views

How to have the same behavior than 'params' function?

Controller functions receivent parameters like {"v1" => { "v2" => "1", "v3" => "" }, "v4" => "true"} The params function allows to use x = params[:v1], equivalent to x = params["v1"] ...
0
votes
0answers
74 views

Undefined local variable or method when use before_filter

I am upgrading a project from rails 2.0.2 to 3.2.13. I was using before_filter :build_menu like this class MyController < ApplicationController layout 'main' before_filter :build_menu ...
0
votes
2answers
85 views

On Rails, is there a shortcut to check for boolean defined variable and use its value or use a default if not defined?

On Ruby on Rails 3, I am trying to use the value of a boolean variable, if defined, otherwise use default value true. How should I write something like this? if var.defined? var else true end ...
0
votes
0answers
13 views

rake db:migrate unrealized constant

I'm getting this error... and I'm puzzled that i can't solve it. Migration adds one column to Event model. 20130329092308_add_rss_title_to_events.rb I've tried plural form 'event' in the name & ...
0
votes
2answers
69 views

rails observe_form and prototype: return '$A($(form).getElementsByTagName('*'))'

I have observe_form in my view: <%= observe_form 'new_lead', :url => { :action => 'update_price' }, :frequency => 0.1 %> , _update_price.rjs partial and this method in controller: def ...
0
votes
0answers
18 views

file_column form_ui

I am using file_column in rails 2.3 in both active scaffold and non active scaffold projects. AS has a helper method active_scaffold_input_file_column(column, options) added in the bridges folder in ...
0
votes
3answers
232 views

Ajax is not defined on remote_form_for

I encountred an error on form submission. This form is defined as : <% remote_form_for @my_object do |f| %> ... <% end %> The generated HTML is : <form action="/my_objects" ...
0
votes
1answer
22 views

rails actionmailer error with 'part' method

I'm upgrading rails 2.3.2 app ot rails 3. Have unknown error with sending email message in MailerFormError. MailerFormError is my model: class MailerFormError < ActionMailer::Base At 1st I have ...
0
votes
2answers
34 views

undefined method `deliver_sent' for MailerFormError:Class

I'm upgrading rais 2.3.2 project to rails 3 Error: undefined method `deliver_sent' for MailerFormError:Class Application Trace | Framework Trace | Full Trace ...
1
vote
1answer
81 views

Rails 2: #to_xml(:methods => :method_name) when #method_name returns an Array

Is it possible to override how #to_xml renders a method result if it's an Array? Given #numbers is not a field but a method And @object.numbers #=> [0,1,2,3,4,5] currently it does: ...
0
votes
0answers
53 views

cannot load such file — registrations_helper.rb

Currently I got an old application that using rails 2.3.11 with ruby 1.9.3. I need to work on devise gem (1.0.6) for user authentication. I already install devise gem and configure it. The User model ...
0
votes
1answer
182 views

Assets not being served by assets pipeline in Rails 3

I am migrating a big application from Rails 2 to Rails 3. I added some images to app/assets/images. i.e. app/assets/images/key.png If I go to http://localhost:3000/assets/key.png I dont see the ...

1 2 3 4 5 9