0
votes
1answer
14 views

Check for a field in the first table. If returned true the submit the form, if not then raise an error

Here is the first part of code in the Products#create action @tmp = params[:product] @tmp["items"] = @tmp["items"].split(',').map(&:strip) @org = Product.new(@tmp) @company = ...
0
votes
2answers
29 views

Ruby on Rails: how do I create an initializer method in the model or should I set all the default params in a controller?

I have a field in my model for date created, this is not passed from the form and is currently set in the create method of my controller. Should this be in my model instead in some sort of ...
0
votes
1answer
27 views

Get in Rails - receive get requests with params and redirect them

How do I - in Rails - receive a get request from one website (url), then save the parameters, and generate a new url of another website, with other parameters (calculated/ from db), and redirect to ...
-3
votes
0answers
32 views

Referring to 2 classes (controllers) from one view in a rails application

How do I refer from one Rails app's view, to another class (other than the current one)? I basically want to use its own class (and its own controller), but also refer/ use methods from another class ...
0
votes
1answer
38 views

Rails: view based on a different model-controller

I am using two different models&controllers - say products and checkout, but I want the checkout to be ordered by the product number. (Meaning checkout for product number 5, checkout for product ...
0
votes
2answers
41 views

Rails - How can I access the variable I pass to the controller from the view?

I have this in my view: <% @users.each do |user| %> <% if user.teacher == current_user.teacher || current_user.role == "admin" %> <tr> <td><%= user.username ...
0
votes
0answers
31 views

Best practice for creating rails models in sequence

I have 3 models Users class User < ActiveRecord::Base acts_as_authentic attr_accessible :name, :alias, :email, :persistence_token, :password, :password_confirmation has_many :memberships, ...
0
votes
1answer
28 views

How to call a Model Method from a Controller in Rails 3?

In my model I have something like: class CML < Lead def model_method #something end end and in my Controller: def recommend @var.model_method #more stuff end and @var is a CML ...
0
votes
1answer
43 views

Rails - Show Action & View for models with one-to-one association?

I have a simple app with a User model & an Instructor_Profile model. The associations between these two models is one-to-one. I cannot get my view show.html.erb to render. I am simply trying to ...
0
votes
1answer
39 views

Rails - using 'create' for different types of models in same controller

Here is my use case, in bullet points so its nice and easy to follow: Admin user is seeded in, of type User and given an "admin" role. That Admin user can sign up new students and also new teachers, ...
-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
4answers
50 views

RoR stylesheet layout view link. What does `:media => all` mean

I have: <&= stylesheet_link_tag "application", :media => "all" %> but I am adding a (completely) alternative layout for some of the views in my application, with separate ...
0
votes
3answers
35 views

Organize Rails view so thats its a little easy to read

I have the below code <% @data1.results.map do |s|%> <%if params[:data1].empty? == true%> s.product.text <!-- More content to come--> <%else%> ...
1
vote
1answer
19 views

SyntaxError after adding new model

Hi guys i have a application call demo. In demo, a main scaffold call 'contact'. now i'm trying to add a new model 'address'(with 5 attributes) in 'contact#show'page. Here's my contactcontroller ...
0
votes
2answers
44 views

Multiple Rails controller requests on one page

The other day I stumbled on Sandi Metz's rules, and one of them reads When a call comes into your Rails controller, you can only instantiate one object to do whatever it is that needs to be ...
0
votes
0answers
38 views

SyntaxError ActionView::Template::Error after adding new model

I'm making a application called demo in which there's a scaffold call contact, everything's ok. but after i add a new model address (which belong_to contact) and i m trying to make address be shown on ...
0
votes
1answer
15 views

Rails View with an Exception - Without different Layouts and Design from the rest of the application [duplicate]

Is it possible for one view in Rails NOT to have the layout of the other views. How can I do this? It automatically has the header and footer etc of the rest of the views, but I want just one of the ...
0
votes
2answers
35 views

Error - Template is missing, unable to have 2 show views for the same posts

This is a follow up question to: Two separate show views for the same database in Rails The error I am getting is: Template is missing Missing template items/show, application/show with ...
4
votes
1answer
84 views

Rendering different views in one action

I want to have 2 kinds of views for the same posts in my rails application. For instance - in one where a logged in user can update and edit the post, and in the other any user can just view it and ...
0
votes
1answer
19 views

Creating a multi-level association rails

I'm trying to develop a job board style web app. In my current model: entrepreneur has_many :opportunities opportunity belongs_to :entrepreneur So basically the opportunities model is the table ...
1
vote
1answer
228 views

superclass mismatch for class CommentsController (TypeError), best way to rename?

I ran into some problem tonight while deploying and I'm trying to get this fixed asap I have no idea why this is happening. Everything works fine locally but not on heroku. I tried all sorts of ...
1
vote
2answers
32 views

Adding a View in Rails

In Rails - I'm trying to add a view, let's call it view3, but am told there are no available routes. I also tried rake routes and indeed my additional view wasn't added. What I tried to do: I added ...
0
votes
2answers
37 views

Rails locations - where do I locate a gem

In Rails - Where should I locate Gems? I downloaded bootstrap and it's working, as well as a sample Rails app, separately, but I want them to work together. There is a bootstrapped rails gem ...
0
votes
1answer
28 views

Rails locations: API Wrappers (Vaccum)

In Rails - Where should I locate an API wrapper? Under models? I put the vaccum wrapper there but I'm getting a NoMethodError in the Controller. How do I make sure it is working well?
0
votes
1answer
19 views

NoMethod Error - One to Many Association

Trying to debug something for hours which is not making any sense The error is: undefined method `proposals' for nil:NilClass I have two one-to-many associations in the following models: ...
0
votes
1answer
42 views

Backbone.js on Rails - Access data in Rails outside of the Backbone model

I have a Backbone.js application with RoR for the backend. The typical backbone.js setup is it gets the data from the table, and updates/saves data to that same table. However, my backbone model is ...
1
vote
2answers
33 views

Images and Stylesheets Location

In a Rails application - should the stylesheets and images be located under /public/ or under app/assets/?
0
votes
1answer
29 views

Rails req location (MVC structure)

I'm a Rails newbie. Where do I put the following code - Where name is a folder in /models/name req = Name.new req.configure
0
votes
1answer
42 views

Ruby on Rails, how do parameter-passing to controller?

I have Event Calendar. I have standart link to create new event (it was created in views by scaffolding): <%= link_to 'New Event', new_event_path %> Now I need put same link to each day of ...
0
votes
2answers
45 views

Ruby on rails: Need help formatting view from two different loops and two different partials into one view

Below are my two loops in two partial Loop 1 and partial 1 <%@loop1.map do |p| %> <li> <%= image_tag p.product.image.url, :size=>"400x250"%> <br \> ...
1
vote
2answers
58 views

Instance of Rails model only creatable through console

I've been following the tutorial on creating a Rails blog (http://www.roberthuberdeau.com/articles/4-How-to-create-a-blog-in-Ruby-on-Rails-3) and have basically got all the way to the end. However, ...
0
votes
0answers
30 views

Have rails load the layout first and then process whatsoever there is in the controller. Or what is some other good method to deal with api calls

I am doing a twitter api call from my controller. Maybe a bad idea,but I am new to rails and still learning. Now the thing is, it takes a while for the page to return the basic body, head the final ...
3
votes
1answer
129 views

Rails - creating and editing in a different controller/model

I have a nested reviews model with a polymorphic association with majors, careers, and schools. I want users to review these majors, schools, and careers on their show page. In addition, I want them ...
2
votes
0answers
39 views

nested attributes without activerecord

I am trying to create an invoicing system that does not persist to a database, but passes through to a third party system. Hence, my models are not ActiveRecord as there is no table to persist to. How ...
0
votes
1answer
29 views

Rails - speed and time

I have a question about the "speed of logic" between MVC. Suppose to have the same code, something like the follow, in a model, in a view and in a controller. 1) The speed for "compiling" the logic ...
0
votes
2answers
68 views

How can I create an array of objects from a list of associated checkboxes?

First of all, I've done a fair amount of looking around, and while questions get around answers, I have a problem I think is somewhat unique. I have a list of checkboxes generated with the following ...
4
votes
1answer
240 views

Turbolinks vs JS MVC Frameworks? [closed]

We have applied EmberJS as a framework and using Rails 3.2 looking to migrate to Rails 4.0 A lot of push is being done by Rails community for turbolinks, on one side our site works well with the ...
0
votes
2answers
41 views

Rails nested resources and routing - how to break up controllers?

I have the following models: Post Tag TaggedPost (from which Post and Tag derive their associations by has_many :through) And I have the following routes.rb file: resources :tags resources ...
0
votes
2answers
40 views

avoid issue in the mvc

I know that a view shouldn't have any knowledge, of the model or the controller but i am not to sure how to avoid it. The issue is i am trying to fetch the information from the controller or the ...
0
votes
3answers
68 views

Controller Variables are nil in Views

I am very new to ruby on rails, but simple operation is driving me crazy I am passing variables from Controller to View But it's nil in the view I read all the questions similar to mine but none ...
0
votes
3answers
92 views

ActionController::RoutingError (No route matches

I am trying to add or remove nested has_many object as follows class Question < ActiveRecord::Base has_many :comments end = form_for @question, :url => {:action => "create"} do |f| = ...
0
votes
1answer
35 views

Route not working - very confusing

I understand the concept with routes, but now and then they just don't work as they should. In this specific case I'm trying to get the route for editing a project to work, but I get the following ...
0
votes
1answer
54 views

Couldn't submit the form

I want to create a new object based on certain parameters. In my new.html.haml %table %thead %tr %td = f.label: type %td = select_tag :question_type, ...
0
votes
0answers
81 views

Couldn't able to submit form after ajax call

I have a form with the following: = form_for @question :url => {:action => "create"} do |f| %table %thead %tr %td = f.label: type %td = ...
0
votes
2answers
39 views

new.js.haml is not rendered

I am having a form which was designed as follows = form_for :url => @question do |f| %table %thead %td = f.label :ques %tr = select_tag options ...
0
votes
0answers
36 views

JavaScriptMVC and Ruby on Rails integration in one application

I have searched here, and only found one similar topic with no answers. I have worked on several JavaScript MVC projects, and I have an understanding of how it works. I am not as proficient in Ruby on ...
0
votes
1answer
112 views

Send an actionmailer email upon user registration in devise rails 3 application

I'm trying to send an email upon user registration in a rails 3 application that is using the devise gem. Every time I try to the send the email I get the following error: NoMethodError in ...
0
votes
1answer
81 views

rails 3 update model from different controller

I have 3 tables: superhero, powers, teams a superhero can have many powers and many teams. for example: superhero.rb name:string has_many :power_teams, :dependent => :destroy has_many ...
1
vote
0answers
69 views

Sort an ActiveRecord Relation using Geocoder in Rails

I am using the Geocoder gem with a model called Breve. Geocoder provides with a method near([latitude, longitude], radius) returning a Relation containing all the "breves" in the radius of the ...
2
votes
1answer
68 views

Rendering different parts of a page from different actions from different controllers

I've got an index page where I've decided to render both Usernames, Posts and other informative sources. Since Devise takes care of the user creations and login sessions-managing I am aware of ...

1 2 3 4 5 6