ActionController is the main controller class in Ruby on Rails.
1
vote
1answer
25 views
How to allow Binary File download using GRAPE API
I want to allow downloading a binary file (.p12 file) using ruby's Grape API. This is what I am trying.
get '/download_file' do
pkcs12 = generate_pkcsfile
...
0
votes
0answers
16 views
nginx proxy_passing to Apache w/ Passenger running Ruby-Application returns ActionController::RoutingError (No route matches /subdirectory):
i am currently facing a problem which is imho beyond my scope.
I have a server running Apache with Passenger serving a Ruby-Application in Production mode.
DocumentRoot of the server is set to ...
0
votes
1answer
52 views
Rails: Include module, but maintain module name?
Consider this code
module Auth
def sign_in(user)
#some stuff
session[:user_id] = user.id
end
end
Now, I want to include this in my application controller.
ApplicationController < ...
0
votes
0answers
78 views
uninitialized constant ActionController
Backstory: Some friends and I were working on an app and wanted to select multiple items for processing on another page. Before we found RailsCast #165, I created a branch and added scaffold for a ...
0
votes
0answers
164 views
HttpPost doesn't work into Modal Popup in MVC 4
I have view that has CompanyTable partial view. So this partial view has a CreateBankAccount partial view. Last partial view codes are
@model Invoice.Model.BankAccount
<script ...
0
votes
0answers
21 views
Rails: Mail view generated by controller? Or refactor?
So I develop an analytics tool. There are several reports that can be viewed as HTML in browser and downloaded as CSV/Excel. The content is compiled in the controller and it's somewhat complex.
Now ...
1
vote
2answers
77 views
Ruby on Rails 301 redirection
I added slugs to some of the models, but because of SEO I need to do 301 redirection from old links:
old:
http://host.com/foo/1
new:
http://host.com/foo/foo_slug
question:
how to implement 301 ...
0
votes
1answer
56 views
Render page with rails
I'm trying to make "friendship" between model Programme and Student. I do it with has_many :through model Relationship. In Relationship controller I have create action, which should redirect another ...
1
vote
2answers
16 views
No route matches controller in rails app
I have an app where I'm creating a get action called "new_911". When I put new_911_call_path in the application layout I get an error "no route matches new_911 controller: calls". Yet there is an ...
0
votes
2answers
84 views
Why does Rails action controller not use threads?
My Rails application has a route that takes a lot of time to process, which makes the entire webpage freeze.
Why does this happen? Is it Rails or third-party gems which are not thread-safe?
Is there ...
0
votes
0answers
30 views
URL is not persistent
I've created a static "thank you" page. But everytime I go to /thanks it forwards me to a URL like this one: /thanks#.UVQswKt-WyK
I've added this in my routes.rb:
match '/thanks', to: ...
0
votes
2answers
60 views
Rails 3.2.7 and link_to
First of all, pretty new to Rails. I've been following a tutorial on using the 'link_to' command - basically, I have some links with text 'About Us', 'FAQ', 'Contact Us', and I want them to link to ...
1
vote
1answer
59 views
How does ActionController::Base in Rails know what class its model is?
I'm doing a bit of metaprogramming in Ruby. I'm writing a library to meta-define some methods for me, specifically in the controller (automate some find_by methods that I have to write for my ...
1
vote
0answers
50 views
Rails 3: Should I avoid having a “random” controller action?
In my Rails 3.1 controller ActivitiesController, I have an action called random (i.e. /activities/random) that finds a random activity and then just redirects to that activity (the show action is what ...
0
votes
1answer
29 views
I'm getting a hash outputted to my view if I run params[:query], but if I run #values on it, it breaks and says “I'm a String”
So I'm trying to set the default search field value to the pre-existing one if it exists
<%= form_tag universities_path, :method => "get", :class => "form-search" do %>
<%= label_tag ...
1
vote
1answer
129 views
Action Controller: Exception Caught [NoMethodError in Home#index]
I am trying to set up a local development environment for a ROR app that has been passed down to me from a previous developer. I am new to ROR and Ruby.
First I run bundle install with no problems, ...
2
votes
1answer
49 views
Using _url Absolute Links with ActionController full page caching
We have a rails 3 application (3.2.12) on which we wish to implement full page caching (Using ActionController caches_page)
We are using _url url helpers everywhere in the application, and this is ...
0
votes
0answers
51 views
Upload/Parse an Excel doc in Rails App
I am creating an app that has an option to add single entries to a database model as well as upload multiple from an Excel doc. I am following the rails guides on uploading and am hoping there is a ...
1
vote
2answers
57 views
How to force to complete response in controller action?
I need to make some slow operations on controller action. But it's not necessary to wait this operation for response rendering.
class ProductController < ActionController
def update
...
0
votes
1answer
42 views
Understanding Rails Controller Request Format: “Processing by MyController#action as FORMAT”
In all likelihood, this question reveals my gross misunderstandings of Rails, HTTP, and the internet.
Problem
I have a request hitting my server from a "transparent redirect" via Stripe API. The ...
4
votes
1answer
172 views
Rails root_url has two forward slashes when default_url_options trailing_slash is true
When this line is set in the application.rb file:
config.action_controller.default_url_options = { trailing_slash: true}
The root_url contains two forward slashes:
www.example.com//
Without that ...
2
votes
1answer
95 views
Controller not inheriting before_filter
So I have ApplicationController.rb:
class ApplicationController < ActionController::Base
protect_from_forgery
def decode_email
params[:email] = URI::decode(params[:email])
end
end
and ...
0
votes
1answer
48 views
session_id inside application_controller. Rails 3
how can i get the session_id inside application_controller. I am creating helper methods here in this controller to set session and read them later and I am able to read all session variables, cookies ...
0
votes
1answer
51 views
How do I pass in a parameter called 'controller' in RSpec?
I have a controller that expects a parameter called controller and the RSpec test I wrote doesn't seem to like the fact that I'm passing in it as a parameter with get.
The spec
require 'spec_helper'
...
0
votes
0answers
21 views
how to access actioncontroller datastreaming method from rails model
i am having rufus scheduler .
that uses send_data method of actioncontroller::datastreaming class
I am not able to access this method from rails model method something like this
send.rb(model)
...
0
votes
1answer
87 views
Rails getting single values from request
in Rails the create method in a Controller by default receives an HTTP request with different values.
By default new records are created like this:
@apo = Apo.new(params[:apo])
But how can i access ...
1
vote
1answer
174 views
Ruby on Rails Create new Record with Values / Variables from a View
i´m using RoR 3.2.9.
Thanks to the help here, i managed to get something done!
Now i am trying to create a new record from a button_to in a view:
<%= button_to "Do IT", :controller => :apos,
...
1
vote
1answer
180 views
Rails - undefined method `model_name' for NilClass:Class in new action
I can't get why, but my new view started to crash.
I have model Ticket
class Ticket < ActiveRecord::Base
attr_accessible :body, :department, :email, :name, :reference, :subject, :status
...
0
votes
1answer
109 views
Missing template action error in rails3
I have defined a metohd in controller that is like:
def self.dailymail
.... #fill data from db
ac = ActionController::Base.new()
kit = PDFKit.new(ac.render_to_string(:action => ...
1
vote
2answers
48 views
Populating tables with Dynamic Dates in Ruby on Rails
I am currently working on a appointment booking application where the search results are displayed in a table and the columns contains buttons for a specific time. Please have a look at the attached ...
0
votes
1answer
454 views
rescue_from ::AbstractController::ActionNotFound not working
I have the following code:
unless Rails.application.config.consider_all_requests_local
rescue_from Exception, with: :render_exception
rescue_from ActiveRecord::RecordNotFound, with: ...
0
votes
0answers
27 views
derived action mailer class deferring to sibling class returning blank Mail::Message
Having an issue with derived ActionMailer classes deferring certain methods to siblings. Suffice it to say that the situation is as such.
class Parent; end
class Child < Parent; end
class ...
1
vote
1answer
112 views
How to do 301 redirect in rails routes if parameter in upper case?
How can I do 301 redirect in routes.rb based on a condition that if certain parameter is in upper case thn redirect to lower case URL.
I know i can make URLs case insensitive but thats not what I ...
0
votes
1answer
72 views
Rails URL parameters not able to be used
I'm passing a suggestion_id parameter via link_to so that it can be saved as part of a create action in a different controller.
<%= link_to "I'm interested", new_interested_path(:controller => ...
0
votes
2answers
70 views
Extending a controller in Rails
I have a controller which calls out to another class.
class BlahController < ActionController
def index
OtherClass.get_stuff
end
end
In this class I want to be able to write controller ...
2
votes
0answers
69 views
How can I test ActionController extensions within Rails 3.2?
I wrote an extension for ActionController::Base in Rails 3.2. Now I want to test it. But because the gem I created is no application it has neither specific controllers nor routes, so I cannot use ...
0
votes
1answer
46 views
ActionController caching not working in dev and test environments
I have this controller:
class PagesController < ApplicationController
caches_page :index
def index
end
end
and action_controller.perform_caching enabled for each in environment.
On ...
0
votes
1answer
304 views
RoutingError in Rails application on dreamhost
I want to test sample rails application on shared Dreamhost account, so i have created sample application with ruby 1.8.7, rails 3.2.8 and mysql database. on localhost it works fine, but after ...
0
votes
2answers
69 views
How to check if attribute is changing in update action in Rails?
I'm trying to check - if some (language) attribute is changed and if it is equal to some value I need to change it into other proper value.
Here is my code:
EDIT:
def update
@website = ...
0
votes
2answers
52 views
How to change object attribute in update action?
I need to use method, which is working only in controller, but I can't implement changing attribute.
Here is my update action:
def update
@website = Website.find(params[:id])
respond_to do |format|
...
0
votes
0answers
256 views
Rails (jruby) cache error (Can't dump hash with default proc) when caching assets
Ruby version: jruby-1.6.8
Rails version 3.2.6
Server: trinidad
I am having an error in my log in production mode whenever an asset (image, CSS or JS) is served where it is not cached (i.e. when it's ...
0
votes
3answers
246 views
Delete Method Doesn't Work in Rails
My current code looks like this:
<%= javascript_include_tag "hchq.js", "bootstrap-image-gallery.js", "bootstrap-image-gallery.min.js", "load-image.min.js", "media.js", "jquery", "bootstrap.js", ...
0
votes
0answers
150 views
Constantly get 406 Not acceptable error when receiving json response
I have worked with jQuery remote function in the past, but in this case I'm having trouble.
I have a working remote function to check email uniqueness, but now I want to check user password, when he ...
2
votes
2answers
384 views
How to check current password in Rails (Devise gem)?
I'm failing to check current password using jQuery validation. I'm using Devise gem and jQuery validation. Firebug says:
the problem is in my controller :
def checkpass
user = ...
0
votes
1answer
128 views
assert_select to test raw or html_safe unescaped content
In a Rails 3.2.8 controller test, I'd like to use an assert_select to control the content an unescaped field rendered in my view using the raw or the #html_safe method :
<div id="summary">
...
0
votes
0answers
167 views
new action returns Completed 404 Not Found error
I have two models, account & setting
account has_one setting
setting belongs_to account
When I call /accounts/2/settings/new
I get this error:
Rendered settings/_form.html.erb (70.1ms)
...
0
votes
1answer
75 views
Getting attributes in nested model rails 3.2
I have two models user and profile.
I want to save the username and password in user and other user profile details in
profile.
Now,
The user model has:
has_one :profile
...
0
votes
1answer
109 views
Can't implement before_save filter (when checking data that doesn't go to db)
I need to verify User data before_save. I'm saving only paypal_email, and don't save first and last name.
I added before_save filter in my model:
attr_accessible :paypal_email, :first_name, ...
0
votes
2answers
59 views
How use data related to object which I'm not saving to database?
I need to use User data, which he is entering in form, but not save it.
I added attribute accessors into my User model:
attr_accessible :paypal_email, :first_name, :last_name
attr_accessor ...
0
votes
1answer
72 views
Strange error: after create user alway redirects ot show?
It is strange. I'm writing custom user registration and want to make redirection to OTHER page after user creation, but it want to call show action.
Here is my controller:
def create
@user = ...

