Tagged Questions
0
votes
0answers
133 views
rake gems:install failing in rails 2 app for mystifying reasons
I am trying to get a rails 2.3.12 project running in my local development environment, but I cannot seem to install the needed gems. Here are the ruby/rails versions I am using:
$ rvm list
rvm rubies
...
0
votes
1answer
126 views
NoMethodError (undefined method `tempfile'… in Rails 2.3.1
I have downgraded from Rails 3.2.11 to Rails 2.3.11 and I am having trouble accessing the tempfile when my csv file is being uploaded to the server.
It breaks on the code when I call
tmppath = ...
0
votes
0answers
81 views
Vagrant Chef configuration for legacy rails app
I am trying to configure Vagrant and Chef Solo to create an environment for running a legacy Rails app (Rails 2.0, Ruby 1.8.6). I'm having a hard time finding the right cookbooks to configure this ...
0
votes
2answers
188 views
Modifying the returned value of find_by_sql
So I am pulling my hair over this issue / gotcha. Basically I used find_by_sql to fetch data from my database. I did this because the query has lots of columns and table joins and I think using ...
0
votes
1answer
193 views
Monkey Patching Time.strftime not being picked up by Time class
I need to Monkey patch strftime in Ruby 1.8.7 with Rails 2.3 on Windows. In config\initializers I put this time_patch.rb file (code below) but it does not seem to be picking up:
if RUBY_PLATFORM =~ ...
1
vote
2answers
159 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 ...
5
votes
2answers
320 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' => ...
1
vote
1answer
730 views
Text Field in Rails whose size increases dynamically
I am trying to implement a groups feature similar to that of Facebook in my project. I am using Rails 2.0.2 and Ruby 1.8.7 for project specific purposes. I am using Ubuntu 10.04 OS.
I want to ...
2
votes
1answer
153 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 ...
0
votes
1answer
548 views
Implementing auto complete for more than one field in Rails
I have an app, which implements a group feature. Each group has n members. Also, each group has a group specific profile pic to it.
I have been able to implement auto complete for the group feature ...
0
votes
2answers
348 views
Why does this named_scope create a NoMethodError?
I don't see where this code is creating this NoMethodFound error, and would really like any helpful suggestions.
Here's the error message:
NoMethodError in UploadsController#create
The relevant ...