Tagged Questions
2
votes
2answers
35 views
Why do I get an “uninitialized constant” error?
I have the following code:
class Zombie < ActiveRecord::Base
attr_accessible :name, :rotting, :age
has_many :assignments
has_many :roles, through: :assignments
end
class Role < ...
0
votes
0answers
26 views
undefined method `handle_asynchronously' for AsyncTask:Class
I get this error when I try to run delayed job in my controller. Have anyone else come across it before?
I have followed all the steps on the git file for the gem and it installed correctly.
I ...
2
votes
3answers
71 views
Should I move my custom methods to model from controller?
Let's say I have a Product model and ProductsController. Controller has all the standard CRUD method and Product does all kinds of validations etc.
Here is an issue.
I have several custom very ...
0
votes
2answers
38 views
Should I use partial or show.html.erb?
I'm writing a web app containing posts and comments. Since there are many places I need to display a bunch of posts with their comments, I'm thinking about reusing the code. But I'm not sure if it is ...
1
vote
3answers
55 views
Organizing site navigation actions in Rails
I'm new to Rails (I've worked in MVC but not that much) and I'm trying to do things the "right" way but I'm a little confused here.
I have a site navigation with filters Items by different criteria, ...
0
votes
1answer
49 views
Converting Ruby code into Ruby on Rails Web Application
Let me preface this by saying that I am very new to Ruby and Ruby on Rails, and have been unsuccessful in finding a clear demonstration of translating a working Ruby program to a web application ...
1
vote
1answer
42 views
Changing a field in the users table after_create of a record satisfies a condition
I want to change a users workout_id in the Users table once he completes his workout. I can't figure out how to do this. Below are the two ways I've tried to figure this out.
Attempt 1: Put an if ...
2
votes
2answers
36 views
render ActiveRecord response in from Controller to View
I'm new to Rails. I'm using Rails 3.2.13. I'll try to keep my question succinct:
In my controller, I want to get the last 10 entries from the Observation table. I have:
def index
@times = ...
0
votes
1answer
17 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
28 views
Can rails controllers be inherited to a third level deep?
Can I have controllers in Rails that are 3 levels deep inheritance? One would think such a trivial thing is possible, but the concrete controller at the "third" level gives the generic/useless error ...
0
votes
0answers
55 views
suddenly started getting NoMethodError in Static_pages#home - undefined method for nil:NilClass
This is a follow up from this question that I posted yesterday
how to get the actual username to display instead of #<User:0x5424a68> (ruby on rails 3)
I was able to get everything working fine ...
1
vote
1answer
336 views
Binding Angular.js actions to Ruby on Rails actions
I've been using rails a while and am starting to fiddle around with integrating Angular.js. To get myself going, I'm making a simple (you guessed it) todo app.
In my rails controller, I've made a ...
0
votes
2answers
49 views
How to render correct view on save failure during form sending?
I am using high_voltage for create various number of landing pages.
On these pages I have different fields for creation User model.
Each form has email and random other fields.
For example:
# ...
-1
votes
1answer
38 views
Issue with scaffold in Ruby on Rails
I'm trying out a few things in Rails and I got a particular issue with the scaffolding process. It might be something I'm not familiar with, let me show you what I did:
First:
rails g controller ...
0
votes
1answer
26 views
Submit Button runs the Create method, not Logon
We implemented a simple login method for our Ruby on Rails project, we have a button on the page to submit for the login information that the user will enter, but instead of pointing to our login ...
-1
votes
1answer
39 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
1answer
37 views
Refering a model in sub-directory in rails
I'm writing a Rails Application.
My model tree looks something like this:
models/
|- user.rb
|- ...
|- forum/
|- thread.rb
|- forum.rb
A user has many threads.
When I try this:
has_many ...
0
votes
3answers
40 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
44 views
Rails create new MVC
I would like to create a model called models/thing.rb, a controller called controllers/things_controller.rb, and views called views/things/index.html.erb and views/things/hello.html.erb.
How do I do ...
0
votes
2answers
57 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
1answer
21 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
184 views
ruby on rails update page with ajax
I am using below button_to tag inside view file (index.html.erb)
<textarea rows="2" cols="20"><%=@write_date%></textarea>
<%= button_to ...
1
vote
2answers
429 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 ...
0
votes
1answer
21 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
2answers
47 views
How to make Rails app perform an action depending on if a checkbox is checked? (RoR)
I have a checkbox in a view called post_form.html.erb that someone uses to post. Here's the full code of it below:
<%= form_for @post, :html => {:multipart => true} do |f| %>
<%= ...
1
vote
2answers
138 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 ...
1
vote
2answers
69 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
31 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 ...
0
votes
2answers
79 views
Rendering rails partial with dynamic variables
I'm trying to render a partial based on the taxon the user is inside. In my application.html.erb layout I have the following line of code:
<%= render 'spree/shared/women_subnav' if @enable_women ...
0
votes
0answers
102 views
Controller Test to Signup with OmniAuth
I use MiniTest as test framework and OmniAuth for authantication. First I want to signup and write a controller test. There is no trouble and user could signup, but when I run the controller as like $ ...
0
votes
2answers
49 views
Restrict access to “destroy” feature in Ruby on Rails app
Thanks in advance for your help! I have a site built in Ruby on Rails (2.3.15, 1.8.7) that lets people create itineraries to different locations and with different activities at each location. The ...
0
votes
1answer
49 views
How do I handle sharing unique URLs in a rails app?
I am creating a web app to learn Ruby on rails. The app allows users to sign in and draw on a canvas. I want the user to be able to share the masterpiece via a uniquely generated URL specific to the ...
0
votes
2answers
41 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
1answer
65 views
Camping is splitting URLs at question marks
Here's my problem:
Camping is splitting urls at question marks.
So if we have some code like this:
Camping.goes :CodeLine
module CodeLine::Controllers
class Index
def get
render :index
end
...
0
votes
1answer
65 views
Pass model errors through controllers in Rails
I have 2 models - Project and Review. Project has_many reviews and Review belong_to Project. When I open project (show REST action) I can add review for it. But the controller which accept data from ...
0
votes
1answer
101 views
undefined method `model_name' for NilClass:Class, passing a form between views
Just starting to learn rails, and I'm trying to pass a form from one view to another view...I'm assuming the way to do this would be to use partial renders.
I want to pass the partial for the form ...
0
votes
1answer
86 views
Validation based on id of drop down box in rails
I have a validation happening during the input process like so:
validates :solids, :numericality => { :greater_than_or_equal_to => 0 }, :if => lambda {
if self.lab_method_id
...
2
votes
1answer
79 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 ...
0
votes
1answer
98 views
Set / change + add Sinatra views folder
I am learning sinatra, and I am trying to create simple website. This is my web directory tree:
├── app.rb
│
├── admin
│ └── views
│ └── admin.rb
├── models
├── static
│
└── views
...
0
votes
1answer
77 views
data model for magazine store in rails application
I want to create a rails 3.2.7 application for online magazine store.
I design quick data model for this application but I'm not sure it is good or bad!?
I have Magazine table for all magazines, I ...
0
votes
1answer
125 views
How to validate data from a controller in a model?
I have data in my controller that is being received from another rails app and database (this has to be in the controller) I want to get this data so I can validate it in my model before allowing ...
1
vote
1answer
47 views
Updating attributes of one model from a different model's controller
I have a simple post and user app where users submit and upvote posts. I have two models, post and user, and right now I'm working with the post model to add "upvoting" functionality.
Each post has ...
0
votes
0answers
37 views
Allow user/customer to add field string that has a value that can be added in simple_form
In rails I have an order form model using simple_form and zurb. I have limited customers to 6 fields where they can enter a product title themeselves as a string. I then add up the product titles and ...
0
votes
1answer
254 views
Ruby on Rails validating text field
New to Ruby on Rails, having some trouble with validation. Basically I have a single text field that requires validation before it persists to the next page. I have worked with validation before, ...
-1
votes
2answers
134 views
Sorting table on column click
I am having issues sorting columns. I have a table that is populated with data and it is organized with DESC. I would like to make it so that, when one of the columns is clicked, it will change back ...
-1
votes
1answer
109 views
What is the best way to give a model access to params hash in Rails?
This appears to be a violation of MVC, so I'll explain what I am trying to do:
My model makes a call to an API, and the URI of the API depends on the params hash. (The params hash stores the URL of ...
-2
votes
2answers
202 views
Rails upload CSV file with header
I am using Ruby 1.9.2 with Rails 3.2.1.
I would like to create a view to upload a CSV or tab delimited file, and displays the contents of the file on the same page using a table or pagination ...
-3
votes
2answers
48 views
How do I output in Views just the variables' values I want in Ruby On Rails?
Now in my application.html.erb in views folder, I wrote this.
<p>List of all post IDs: <%= Post.all.each {|i| print i.id } %></p>
I would like it to output just the post.id of ...
-1
votes
3answers
153 views
Ruby on Rails Twitter App - Associate Current User ID when Creating a new Status [closed]
I'm trying to follow along on a tutorial on a Ruby on Rails Twitter App but as I reached the end I noticed that I don't really like the fact that you can create other user's posts. My wish is just to ...
0
votes
1answer
260 views
Padrino and RSpec don't work with Sequel?
Recently, I've started diving into Ruby MVCs, in order to find the best, fastest, most minimal framework to build my app. Being unsatisfied with Rails, I decided to try out Padrino. I'm also trying ...

