The ruby-on-rails-2 tag has no wiki summary.
9
votes
6answers
7k views
ActiveRecord::Base Without Table
This came up a bit ago (http://stackoverflow.com/questions/399490) but it looks like the Rails plugin mentioned is not maintained ...
8
votes
2answers
3k views
Undefined method `name' for “SystemTimer”:String
I am having a problem getting an old Ruby on Rails 2 app that hasn't worked in a year to work.
I'm trying to run rake test:functionals in the root of my project directory, but am getting undefined ...
5
votes
1answer
359 views
Throw an exception whenever someone tries to mass-assign protected attributes
I'm fixing some mass assignment vulnerabilities in a client's application and I want to make sure Rails isn't silently dropping attempts to mass assign protected attributes. Instead, I want to throw ...
4
votes
2answers
182 views
How does ActiveRecord implement `:if => …` on validations
I've been looking through the ActiveRecord source to find out how :if => proc_or_method_name works on ActiveRecord validations, but the only instances of :if in the source are in the comments ...
4
votes
4answers
402 views
How to monkey-patch code that gets auto-loaded in Rails?
I'm monkey-patching a Rails engine with something like:
SomeClass.class_eval do
# ...
end
The first time I hit the web site, on development mode at least, it works, but the second time it's like ...
4
votes
2answers
2k views
Session management in Rails (2.3)
Apparently, after upgrading to Rails 2.3 my session storage has stopped working. I used to have this:
session :session_expires => 3.years.from_now
in my application_controller.rb, but now every time ...
3
votes
1answer
189 views
Migrate an application from 2.3.8 to 3.1
any advice about how to migrate an app from rails 2.3.8 to rails 3.1?
Should I go from 2.3.8 to 3.0 and then to 3.1?
Let me know your thoughts...
I'm especially interested in the approach to the ...
3
votes
2answers
142 views
Ruby Net::HTTP - Stop automatically escaping quotes?
I have the following code:
http = Net::HTTP.new("www.something.com", 80)
http.set_debug_output($stdout)
http.post("/blah", "something", {'random-parameter' => ...
2
votes
2answers
95 views
How to show sql result on server console
In Rails v2.3 , Ruby 1.8, if I run a sql statement with following code in my model class:
ActiveRecord::Base.connection.execute("select count(*) from cars;")
How can I show the query result in ...
2
votes
0answers
113 views
Share session between a Rails2 and Rails3 app
I want to share the session between a Rails 2.3.14 app and a Rails 3.0.10 app by using the session cookie store.
I found an excellent blogpost that explains how to set that up:
...
2
votes
1answer
124 views
unable to load rspec generator in rails 2.3.5
i am working on rails 2.3.5 where i want to us Rspec for testing purpose. I have installed rspec gem but not able to list rspec in generator's list. I am referring ...
2
votes
0answers
204 views
How to map a custom rack hander in a rails 2.3 application (dav4rack specifically)?
I am trying to use dav4rack in my rails 2.3.8 application. I am creating a custom config.ru file to load rails, and am using Passenger. The standard rails config.ru file loads just fine:
require ...
2
votes
2answers
608 views
rvmrc file not working
I have created a gemset named rails2ruby192 and i have added below code in my .rvmrc file in root directory but it is not loading the gemset.
ruby-1.9.2-p180@rails2ruby192
2
votes
3answers
92 views
top rubyonrails screencast/tutorials/blog url
i am learning rubyonrails and referring http://guides.rubyonrails.org/ for documentations and http://railscasts.com/ for screencast. Are there more such useful sites that could help me to learn more ...
2
votes
3answers
89 views
writing test for rubyonrails
I am new to writing test for rubyonrails app like rspect, steak, cucumber etc. How do I start or learn so that it will help me to write beautiful codes?
You can give some simple example or some url ...
2
votes
4answers
422 views
How can I update attributes in after_save without causing a recursion in rails 2.3?
I've got a model which has a video attached with Paperclip. After it saves I use the saved video to generate a thumbnail. I need to do this after every save, even when a new video hasn't been ...
2
votes
1answer
224 views
(config.filter_parameters) equivalent for Rails 2.3.5
I need a config.filter_parameters (Rails 3.x.x) equivalent for Rails 2.3.x
module SampleApp
class Application < Rails::Application
# Configure sensitive parameters which will be filtered ...
2
votes
1answer
80 views
Avoid ActiveRecord#save logging of large fields
I need to prevent ActiveRecord#save from logging the content of large fields.
Is there a way to configure this on Rails 2.3.x?
@document.save #=> Will log something like:
Apr 20 13:45:42 ubuntu ...
2
votes
2answers
828 views
Setting up Capybara for Rails 2.3 and Rspec
I'm having some trouble setting up capybara (0.4.1.2) in a rails 2.3.8 app with Rspec 1.3 From the installation capybara instructions, I've inserted the line:
require 'capybara/rspec'
However ...
2
votes
2answers
327 views
How do I make a single element JSON array using the Rails XML Builder?
I am using a Rails app as an JSON API service. There is one field that can either hold one or two strings. Below is how I'm creating this JSON element in the .xml.builder file, getting the information ...
2
votes
3answers
2k views
ActiveRecord Count to count rows returned by group by in Rails
I looked around and couldn't find any answers to this. All answers involved counts that did not use a GROUP BY.
Background:
I have a paginator that will take options for an ActiveRecord.find. It adds ...
2
votes
3answers
2k views
Rails ActiveRecord date between
I need to query comments made in one day. The field is part of the standard timestamps, is created_at. The selected date is coming from a date_select. How can I use ActiveRecord to do that?
I need ...
1
vote
1answer
31 views
Bind ajax call back in rails 2.3.11 using jQuery
I have a remote_form_for. Now :onclick I want to disable the submit button and on ajax:complete I want to enable the buttons back.
:onclick disable is working fine, but enable it back using ...
1
vote
1answer
35 views
Mail can't be send: Relay access denied
I have two ruby on rails application on different servers. Both are working fine, but one (server 2) can't send any mails.
I got always the 554 5.7.1 : Relay access denied error.
On server 2 I tested ...
1
vote
1answer
13 views
Rails 2.3.x, is there any ruby gems for editing yml locale files?
sorry for my english, I need to know if is there any ruby gems for editing yml locale files with a web interface? I remember I have seen a kind of, but I forget the name.
Some suggestions?
Regards.
1
vote
1answer
29 views
How do I translate some complex routes from Rails 2.3 to Rails 3.1?
I am working on a project where I am upgrading a Rails 2.3 application to Rails 3.1. There is one thing which I am not able to figure out. Below is a route defined in a Rails 2.3 application:
...
1
vote
1answer
42 views
Read from one database and write to another in Rails 2.3
Heroku's database followers are pretty cool. They allow you to create a separate database that automatically keeps in sync with your master DB.
I want to use this technology to access my follower ...
1
vote
1answer
36 views
Support both Rails 2 and Rails 3 in gem
I'm wondering if there are any gems out there that support both Rails 2 and Rails 3? If so, how do they do it? Simple conditionals in the code?
This is related to my previous question:
Packaging ...
1
vote
0answers
28 views
rubyAMF plugin + rails 2.3.4 + raby 1.8.7
I currently have ruby 1.8.7 running with a Rails 2.3.4 webapp. I'm trying to install the rubyamf plugin from github but I keep getting a 'plugin not found error'. I cloned the repo locally and copied ...
1
vote
2answers
29 views
Ruby Unit Testing Get Method
I am pulling my hair out trying to expand the testing coverage for an existing Rails 2.3 app.
They are using a unit:test framework. I am really having trouble wrapping my head around how to debug ...
1
vote
3answers
95 views
application wide global variable
In Rails, where should I define the variable which can be recognized by every layer of Rails stacks.
For example, I would like to have a CUSTOMER_NAME='John' variable which can be accessed in ...
1
vote
2answers
110 views
default scoping confusion
UPDATED:
I am setting default scope for some models in a runtime which seems working locally in my development env and my code is given below.
SET_OF_MODELS = [Event, Group, User]
@account = ...
1
vote
1answer
14 views
Migrating a domain: what to do with the mailing service? [closed]
Currently I'm building a website for a customer using Ruby on Rails. I planning to host that site on heroku.com.
My customer already has a running website on a specific domain, let's say example.com. ...
1
vote
2answers
52 views
Log changes to Database
I have around 15 more or less complex models. Of those I would like to track the changes. What's the simplest way? After-save/-update triggers?
Performance is important but if there is a way with low ...
1
vote
0answers
329 views
SOLVED Apache/Passenger reverse proxy to Passenger standalone not working
I want to run rails 3 and rails 2.3.8 apps on the same machine. I currently have Passenger setup with Ruby 1.9.2 for my rails 3 apps and that is working fine with Apache. I found the following at ...
1
vote
2answers
108 views
How to debug Rails I18N lookup?
In the Rails docs there seem to be different default locations for I18N strings, depending if the I18N-lookup was initiated from a view, model / validation, controller, helper, ..., if it's a label, ...
1
vote
1answer
94 views
Table alias in ActiveRecord?
I have the following to find posts.
@posts = Post.find(:all,
:select => "DISTINCT *",
:include => [:user, {:track => :artist}],
:conditions => ["user_id IN (?) AND NOT track_id = ?", ...
1
vote
2answers
57 views
How do i get Rails to route to a controller instead of a static file in the public folder?
In a Rails 2.3 app I have a SitemapController with a sitemap action that creates a human-readable sitemap page, and a route to that in the routes file. In the public folder there's a sitemap.xml file ...
1
vote
1answer
49 views
Assign Associated Record Without Eval (Rails 2.x)
My code looks like this
# record[field_name] = get_children(field_name)
eval "record.#{field_name} = get_children(field_name)"
record is an ActiveRecord subclass, and the field in question ...
1
vote
1answer
82 views
ActiveRecord returns model objects with un-initialized associations
I have a simple join query which in some cases returns ActiveRecord objects with uninitialized associations, and I try to understand why. (My setup: rails 2.3.8 with MySQL)
Here are my models:
class ...
1
vote
2answers
77 views
Why isn't 'logger.debug false' printing anything?
I'm having a problem with a boolean expression and when I did a logger.debug I had strange results, so I simplified my logging code to the following and was surprised not to see any 'false' being ...
1
vote
3answers
113 views
Not recognized by the 'identify' command error while using validates_each
Below is my validations for image content type which works fine.
validates_attachment_size :icon, :less_than => MAX_SIZE.megabytes, :message => "Max size is 1 mb"
validates_attachment_content_type ...
1
vote
1answer
40 views
What should a Rails 3.x noob know about maintaining a Rails 2.3 app?
I recently learned Rails (Rails 3 to be specific) and got a small project maintaining a Rails 2.3.2 app.
So, as you might expect, I keep running into differences between what I learned in Rails 3 and ...
1
vote
3answers
161 views
can't activate test-unit (= 1.2.3), already activated test-unit-2.3.0
Recently I added rspec test in my rails 2.3.5 but I wasn't able to run simply rake -T command. Then I found Rails 3 - If I'm using RSpec, can I just delete the 'test' folder? and I added ...
1
vote
1answer
45 views
Scaffold in Rails 2.2?
Ruby on Rails apparently changed the syntax for creating scaffold. I'm trying an example that says to use:
ruby script/generate scaffold tale tale
ruby script/generate scaffold genre genre
The ...
1
vote
0answers
84 views
Authlogic secure and httponly cookies patch
I've been trying to apply the gist provided in the issue tracker to add the secure and httponly options and methods on Authlogic cookies, but I'm having some difficulty. I applied the patch and have ...
1
vote
2answers
123 views
404 Custom Error Pages in Rails 2.3
I'm overriding render_optional_error_file to render a custom page whenever there's an error. This works great if there's an error within the application, it renders "shared/error.erb" without problem.
...
1
vote
1answer
228 views
rake spec fails where rake spec:(models|controllers|views) pass
I asked this question on the rspec mailing list but didn't get a response, so I thought I'd try here.
Using rspec 1.3.2 and rspec-rails 1.3.4 with rails 2.3.11 on ruby 1.9.2-p180, when I
$ rake ...
1
vote
3answers
1k views
Rails: get #beginning_of_day in time zone
I have a default time zone setup for the rails application.
And an instance of the Date object.
How can I get make Date#beginning_of_day to return the beginning of the day in the specified time zone, ...
1
vote
1answer
367 views
How to use link_to so that all parameters passed to controller are preserved in Ruby on Rails 2?
I have a bilingual site with nice URLs for SEO. Using Ruby on Rails 2.3.10.
routes.rb fragment:
map.connect 'order-jira-hosting/:option.html',
:controller => 'order', :action => 'index', ...