Tagged Questions
The actionpack tag has no wiki summary.
10
votes
4answers
517 views
What approach do you take for embedding links in flash messages?
The ability to have flash messages (notice, error, warning, etc) with embedded links is nice from a user interaction standpoint. However, embedding an anchor tag inside a flash message from the ...
4
votes
3answers
269 views
What is the opposite of url_for in Rails? A function that takes a path and generates the interpreted route?
Brain's a little fried....How do I get a hash of the :controller and :action from a relative_path?
This is basically the opposite of url_for. in the example below, "some_function" is the mystery ...
2
votes
1answer
230 views
Integrating HAML with RSPEC
I had 11 or so Rspec tests running sat, until I converted my project to HAML. Then when I ran my tests, I got errors such as:
ActionView::MissingTemplate: Missing template pages/home with ...
2
votes
1answer
293 views
Remove unwanted div from any generated from authenticity_token form
This should be an easy one but I just cant find the answer!
My Rail Forms generate a div that I want to get rid of
This is the div that rails generate for me
<div ...
1
vote
1answer
401 views
'uninitialized constant ActionPack' when starting rails
When starting my rails server I'm getting an 'uninitialized constant ActionPack' error.
raw stack trace
I'm using blunder with rails 2.3.8
running 'bundle list' shows:
* actionmailer (2.3.8)
...
1
vote
2answers
132 views
In the update action a NoMethodError is thrown
This is my source code
def update
@recipe = Recipe.find(params[:id])
respond_to do |format|
if @recipe.update_attributes(params[:recipe])
format.html {redirect_to :action ...
1
vote
1answer
47 views
ActionPack Generator for 3.0
IS there a actionpack/subsonic generator for 3.0 like there was for 2.0?
0
votes
1answer
50 views
Rails/Actionpack: warning: already initialized constant ICS
trying to start Rails server and getting a "warning" I don't understand. Anyone know what it means? warning: already initialized constant ICS
Here it is in context:
meltemi$ rails s
=> Booting ...
0
votes
1answer
56 views
Accessing Rails cookies by domain
I have a situation in which two cookies have the same name but slightly different domains (cookie1 has the domain example.com whereas cookie2 has sub-domain inclusive .example.com).
cookies[ ...
0
votes
1answer
144 views
setting the “view-name” of a controller
I would like to centralize similar actions of some controllers and wrote a controller from which the other controllers inherites. This works fine.
# calling Configurations#index will render ...
0
votes
1answer
299 views
Why is my Rails instance variable nil in my view?
I am stuck on someothing probably incredibly stupid, but I can't find my problem. I'm using Rails 3.0.3, and ruby 1.9.2 on a ubuntu machine.
I am trying to just set an instance variable in my ...
0
votes
2answers
1k views
Ruby-on-Rails: Help with render: layout => false
I am trying to access a rails app resource from an API (it sends an Application/XML GET request) and I would like to not have to parse the XML file.
In my resources controller I have the following:
...
0
votes
2answers
362 views
date_select tag when upgrading from 2.1.2 to 2.3.8
We are currently in the process of upgrading our rails version and I have come across some weird error in one of my date_select tags.
Here is the culprit:
<%= date_select ...
0
votes
1answer
535 views
Capturing Rails 3 Multiselect Input Params
I have a multiselect form control (fig. 1). When I select more than 1 value, Firefox sends both values (fig. 2). But only the last value gets sent as a input value to my controller (fig. 3). How do I ...