0
votes
Learning Ruby on Rails
There is a site called Softies on Rails that is written by a couple of ex-.NET developers that may be of some use. They have a book calle …
0
votes
How to setup a RAILS integration test for XML mehtods
Set the request objects accept header:
@request.accept = 'text/xml' # or 'application/xml' I forget which
Then you can assert the response body is equal to what yo …
9
votes
What is the easiest way to duplicate an activerecord record?
To get a copy, use the clone method:
new_record = old_record.clone
Then you can change whichever fields you want.
…
1
vote
How do I access a nested model from view?
One way to do this would be to create a method in your Episode class called show_name like so:
def show_name
show.name
end
The last symbol you are p …
0
votes
Getting renders to recognize custom routing paths
Change render :action => 'new' to redirect_to login_path
…
2
votes
RedCloth’s odd support of the <del> tag
Looks like RedCloth needs a little more syntax to interpret the delete tag as the first element after a list item...
>> RedCloth.new("foobar\n* [-blah-]").to_html
=> "<p …
4
votes
undefined method rails question
In config/routes.rb you will need to add:
map.resources :questions
to fix the undefined method questions_path problem.
One way to get /q …
0
votes
5
votes
What’s the difference between Ruby’s puts and write methods?
In cases like this, I always start with the Ruby Core documentation, in this case the IO class.
ios.puts(ob …
0
votes
Find Project by Permalink, 404 if not found
I assume are getting a 500 error because your show action is trying to reference attributes of @project when the find is returning nil
You need to check to make su …
1
vote
get all of the immediate subdirectories in ruby
Dir.glob("**/") will return an array of all paths underneath the current directory. From there you can filter the list and copy a file with File.copy(from, to)
…
1
vote
Why does this ActiveRecord method raise a NameError?
Looks like you need to define the dataset_hash in your method. Something like this:
def self.get_hash(dataset_id)
dataset_hash = {}
@dataitems = Dataset.find_by_id( …
5
votes
[Ruby] Converting Array of Strings to Array of Floats
line.scan returns an array, so you are inserting an array into an array. The easiest thing to do would be to call flatten on the array before you convert the strings to fl …
0
votes
how can I simply merge a hash into a new one?
You can loop through each pair of the original hash and build up an array of hashes:
hashes = []
{ "1234" => "5", "2345" => "6" }.each_pair {|key, value| hashes << { :ke …
5
votes
How to make dynamic multi-dimensional array in ruby?
You can get the nested array structure in one line by using a combination of group_bys and map:
@entries.group_by {|entry| entry.created_at.year }.map { |y …
