0
votes
2answers
14 views

Rails Rating System with strange helper method

there's an issue, that is bothering me. I'm following this "Ruby on Rails"-Tutorial to implement an ajaxified rating system ...
0
votes
2answers
44 views

Retrieve only 1 of a duplicated record Rails

I am trying to find out how to only display 1 of duplicated records in ruby on rails in my view. In my controller I have previous_three_days = Date.today - 3 @results = Result.where("fixture_date ...
0
votes
1answer
23 views

Turning off User registration on rails app from scratch

I have a very simple Rails app which I created a very basic authentication from scratch to handle user accounts etc, I want to turn off registration in my app for the time being and wondering what the ...
0
votes
2answers
33 views

Passing an object to a different controller than it's own

I am trying to pass an object to another controller, so that I can sort based on this object. dgroups has_many plans. I am trying to sort my plans based on dgroup.id I have the following code ...
0
votes
2answers
17 views

date function error in rails 3

I am trying to add a date conditional to my controller index action: @events = Event.where("date" => Date.today.to_s).order("date").page(params[:page]).per_page(5) I am trying to make my ...
0
votes
1answer
24 views

Updating model from form outside of standard create page - goes to create page if form is blank

I have added a form to my homepage which creates a new instance for the model links. This is great, except if you leave the form field empty and hit submit, it forwards you to the new page for the ...
1
vote
2answers
37 views

how to save the user_id after using “create!” in rails 3?

I've recently updated my controller code to this for create class MicropostsController < ApplicationController before_filter :signed_in_user def create @micropost = ...
0
votes
2answers
34 views

ruby on rails: no routes using edit_path?

I have two different controllers I got from rails generate, and each controller has index, edit, update, destroy, etc... Now I'm trying to relate these two controllers (lists and ideas). I have this ...
0
votes
1answer
70 views

Ruby on Rails: Displaying Database Data from id?

I have a relational database, where something belongs to this, and where this has many of that... I have working example for a given URL parameters, but would like to know how to apply the same ...
0
votes
1answer
27 views

Detecting multiple subfolders in Routes.rb

I want to match the following URLs to the same controller in my Rails app /controller/folder1/folder2/ /controller/folderA/folderB/somefile /controller/folderX/somefile I currently can achieve ...
1
vote
2answers
45 views

Passing ID to Controller from Object in Rails

I'm trying to simply pass an object (dgroup) to another controller's (tplans) index action. I'm performing a lookup based on a foreign key, so I am passing it an object id that it must filter on, but ...
0
votes
0answers
14 views

Concept for a controller that proxies different file types and serves them under a certain path

I have two Servers: Rails: ServerR Content: ServerC Now I want ServerR to proxy certain files of different kind (CSS, JS, PNG ...) under a specific url. Internally ServerR downloads the data from ...
0
votes
1answer
28 views

rails link to another controller

<td> <%=link_to image_tag(phone.image, :class => 'list_image'), :controller => 'phones_feature_controller', :action => 'index', :id => phone.id %> </td> I want to ...
0
votes
0answers
38 views

I need to run a rake file from or after my controller file has finished in rails

I have a controller class in ruby on rails and it takes the input from a user off of a form webpage. I need my rake file to run after this file is finished, either at the end of the controller file I ...
0
votes
1answer
37 views

Rails controller dynamic update

So I want to make a rails website and I want to display people. I have various scopes for active people, by team, by gender and such like this: scope :alphabetical, order('last_name, first_name') ...
-1
votes
3answers
61 views

How do i append some value to an instance variable in ruby on rails?

Here's what I am trying to do in my home controller: def view @product= Product.find(params[:id]) rand_price = rand(202- @product.price.to_i) + @product.price.to_i old_price = rand_price ...
-1
votes
1answer
36 views

Create several records of the same table in one click

I have a questionnaire that needs to be answered. My model has table answers and table questions and i pass correctly but I get an error undefined method 'each' for nil:NilClass I just need a ...
0
votes
2answers
42 views

pass an object's id to another nested object

I'm working on a videogame database, where users can make game entries, rate and review them. In order to review a certain game, the review object needs to get the game's id, to be associated to this ...
1
vote
1answer
53 views

Select tag rails

I have a view where I need to show a list of pages (I have a model called Page) and then i need the id of the selected page I have this code in the view مهمة جديدة : <%= form_for :task, :url ...
0
votes
0answers
22 views

AssociationType Mismatch in Ruby on Rails

I have a model, HighSchool (high_school.rb), that is extends User, and a model Athlete, (athlete.rb), that also extends User. In Athlete, it has a belongs_to :high_school. In HighSchool, it has a ...
2
votes
0answers
35 views

Simulating sub-uri in RSpec tests

In my Rails 3.2 application controller responds with JSON containing an URLs to images (stored with Paperclip). It works ok locally,but links are broken on server, because the application is deployed ...
1
vote
1answer
40 views

How do I set a conditional controller view?

I have a default view for my main controller set on routes.rb. When a new user comes I need the controller to use a different view. Something like this: def set_view if @new_user render ...
0
votes
1answer
97 views

Ruby on rails: If else in controller issue

So I am having an issue with an if else statement in the controller. I have 4 radiobuttons on my page and one hidden field. There are also 4 divs where only one can be visible at a time.When a ...
1
vote
2answers
82 views

How to validate presence and regex format in rails controller?

I am trying to validate an email address.. whether it is present or not.. and whether it meets a regex criteria (/xyz/). I really need to do this on the controller or view level in rails as I am going ...
0
votes
2answers
60 views

Headless Rails, easy way to store a hash?

I'm new to rails, but most of the documentation is towards user inputting something into the view and it eventually gets passed into the database. Is there a rails way of storing below into a SQL ...
0
votes
0answers
61 views

How can we test /user/show?id=xx with rspec?

The route in my system is: user_show GET /user/show(.:format) user#show. The controller code is: def show @user = User.find(params[:id]) respond_to do |format| format.html # ...
0
votes
3answers
83 views

load_and_authorize_resource with collection and custom model

I have controller with many custom actions: class FooController < ApplicationController def fizz end def buzz end ... end And I want to load and authorize Bar collection (without ...
0
votes
3answers
261 views

Routing Error No route matches {:action=>“show”, :controller=>“dashboard”}

I want that when Admin sign in ,he should be redirected to "dashboard" page and if a normal user sign in, they should be redirected root of application which is "posts#index". When normal user sign ...
1
vote
3answers
140 views

Rails: Pass parameter from view to controller

I have the following models in rails : class Task < ActiveRecord::Base attr_accessible :description, :name, :project belongs_to :project validates :name, :presence => true end class ...
0
votes
1answer
51 views

Launch a daemon in a simple rail application

I have been struggling for 2 days on the following problem. (I am new to Ruby/Rails) I have a simple controller and I want that controller to launch a daemon to do a background job (it read the ...
0
votes
1answer
41 views

undefined method rails form_for

Getting a undefined method error on user_sponsorship app/controllers/user_sponsorships_controller.rb:7:in `new' This is new.html.erb: <% if @event %> <%= form_for @user_sponsorship, ...
0
votes
1answer
82 views

Rails CRUD Buttons for all views using single Partial

Rails newbie here. I would like to use a single partial to create my CRUD buttons on all views, regardless of controller. So this is what I have working so far. In my controller I have: ...
0
votes
1answer
78 views

How do I submit form data to my Ruby Controller via Ajax?

I have a semantic_form_for in my view that sets up a search filter, and more filters are added with a button that, through JavaScript, adds more filters. <%= semantic_form_for current_coach, ...
0
votes
2answers
55 views

How do I display specific key value pairs from a hash in the view?

I have a hash in my controller that a view takes data from to display. In the tutorials I've seen, I've learned how to display each of the key, value pairs from a hash...but how do I display only the ...
0
votes
2answers
48 views

rails: how to check value in next view

I'm trying to make a quiz app. Such that each question in the Question table has the following fields: qn, correct, option1, option2, option3 This is my questions_controller.rb so far... def show ...
0
votes
2answers
45 views

Ruby on Rails generating controller with existing folder

I'm really new at this and I don't want to mess up my current application. I'm currently working on HTML/CSS stuff but I have a little understanding as to how to get things working. I created a new ...
1
vote
1answer
63 views

Simple SSH test Rails

I am simply trying to list the directories after I ssh into a remote machine in my rails app but I am not getting the desired output, what is am I overlooking? The host is an IP. controller- def ...
0
votes
1answer
57 views

Rails params not receiving variable passed from view

I have defined a CRUD resource called items, which I've added a collection route to called similar_items. In the view/show, I have: link_to similar_items_items_path(), :similar_to => @item In my ...
0
votes
1answer
131 views

session hash does not persist on rspec tests

In my people_controller_spec.rb I have before(:each) do @office = FactoryGirl.create(:office) @organization = FactoryGirl.create(:organization) @user = FactoryGirl.create(:user, ...
1
vote
1answer
31 views

Testing Controllers that are within Modules

I'm using Rspec and I want to test a controller that is within a module that is within another module. module Food module Fruit class ApplesController < ApplicationController etc... ...
0
votes
2answers
31 views

Ruby on Rails views names dependences

May be my question it's a little weird for RoR developers, but i'm new in Ruby on Rails, and i only discover this world now - there is some dependencies in views names and definitions in controller? ...
1
vote
0answers
36 views

Variable in View is always nil

I am new to ruby. I created a new action in controller where I set variable test1 def tsload @test1 = '00:00' respond_to do |format| format.html { render :template => 'tsload' ...
0
votes
0answers
67 views

LoadError in UsersController#create

To provide some background info, I've been following Michael Hartls 'Learning Rails' tutorial via LiveLessons and I've made it up to "Lesson 8 - Sign Up Success". Now although this problem is quite ...
1
vote
1answer
40 views

Book about Ruby on Rails with Apache2? [closed]

I used to use the Webrick server for Ruby on Rails, but now my boss asked me to run the ROR code on apache server, I see there are some difference between these two servers, and I don't know how to ...
0
votes
2answers
31 views

Post.all shows content and title and array beneath. How do I remove this?

Dumb stackoverflow asks for more context... I open the index post page where I do (below) and for some weird reason an extra array appears beneath the actual texts. WHY? <h1><%= @posts.each ...
0
votes
0answers
85 views

Using Rails to get a json object from another website

I have a Ruby script that queries another website that then provides a json file. I'm very new to Rails. I'm using the Heroku with 1 web dyno, and I don't want to add any more dynos. How do I get ...
0
votes
3answers
39 views

Dates and Times displaying the wrong date in view?

I have a Rails 3.2.11 application running Ruby 1.9.3p362. In one of the models I am listing all calls that are in the table: @calls = Call.all This correctly outputs all calls using the following ...
0
votes
2answers
55 views

Accessing specific pages in a controller/view on Rails App

I am trying to set individual Meta Descriptions and Titles to individual pages in a Ruby on Rails App. It was a previous developers App, that I have been given the task to edit. Also, I am new to ...
1
vote
1answer
44 views

undefined method `password' for #<User:1123123123>

I'm following this video tutorial and learning how to create authentication from scratch: http://www.youtube.com/watch?v=O5RDisWr_7Q Here is my migration file for User: class CreateUsers < ...
2
votes
1answer
144 views

Newbie Ruby on Rails - Pass string to method from view?

I am trying to implement the feedzirra (good railcast: http://railscasts.com/episodes/168-feed-parsing) in my view add_feed but I am having some trouble with it. I want a user to be able to add a feed ...

1 2 3 4 5 6