Ruby on Rails is an open-source web development framework written in Ruby. Ruby on Rails follows the principle of convention over configuration, freeing you from having to re-invent things to stay productive. Ruby on Rails 4.0 is the latest edge version available.
0
votes
1answer
27 views
Slightly different content many Rails views - how to be DRY
Hopefully I haven't duplicated a question. It's similar to this one and this one but not quite.
On the subject of duplication, this is my problem. I'm new to Rails btw.
I have a (Twitter ...
0
votes
3answers
25 views
Rails 4: Where to put JavaScript/CSS plugins
I have Rails 4rc1 application. I need integrate some JavaScript/CSS plugins /3rd party libraries/ to my app. I know vendor/plugins directories are deprecated in Rails 4. So where can I put ...
0
votes
1answer
23 views
Twitter Integration using Ruby on Rails
I have a Ruby on Rails application (Ruby-1.9, Rails-3.2)which integrates with twitter to display the latest tweets containing a particular "keyword" dynamically. But it throws an error as NameError ...
0
votes
1answer
57 views
+100
Why does my checkout button not work all of a sudden?
I have an app that I have been developing, that used to work up until some recent changes.
I ran a bundle update, and a bunch of gems updated. Since then (or around that time) my checkout process ...
1
vote
1answer
35 views
NoMethodError in controller#new - undefined method
I'm getting a NoMethodError in the new action of my business_controller.
It seems to be acessing the @business object for a form in my view and the error occurs then:
undefined method ...
0
votes
1answer
24 views
Rails: duplicating information into another model if conditions met
I've got a list of articles with checkboxes on a form. When a box is checked, the body of the selected article is copied into one of x text areas.
Should a user want to make a change to the body of ...
1
vote
3answers
42 views
Check if record exists from controller in Rails
In my app a User can create a Business. When they trigger the index action in my BusinessesController I want to check if a Business is related to the current_user.id:
If yes: display the business.
...
0
votes
1answer
12 views
Rspec test describing listing items on index failing
Rspec/TDD beginner. I have a spec that is failing and I don't know why. Everything works in the browser as it should. I am using Kaminari for pagination, which defaults to 25 items per page.
spec:
...
0
votes
1answer
32 views
Rails query not equal
My rails app has 3 components:
-users (has many works and comments)
-works (blog posts) (belongs to users, has many comments)
-comments (comments belong to both users and work)
I'm trying to display ...
0
votes
1answer
28 views
ruby rails dynamo db tutorial
Im trying to develop an app that uses the dynamoDB from the AWS as DB. I have been trying for the last 2 days with the dynamoid gem but I am about to throw my computer out by the window.
...
0
votes
1answer
23 views
How can I update Python on Mac OS and have RubyGems use the new version?
I am having serious issues trying to download the "therubyracer" gem. I think the problem is that I do not have a working libv8 library to create the gem.
I think I do not have a working libv8 ...
0
votes
1answer
16 views
polymorphic association with formtastic and mongo
I'm trying to create a relationship between two models in rails.
I have a Product and an Offer where an Offer belongs to a Product.
class Product
include Mongoid::Document
include ...
0
votes
0answers
12 views
gem rest_in_place and alias_attribute issue
I have a model that is connecting to a legacy database using active record. Because the column names are in all caps. I have created alias_attributes for them like so
alias_attribute(:marketing_code, ...
0
votes
4answers
24 views
undefined method `Calendar' for 2:Fixnum
I am trying to put a calendar on my user page. I added route to routes.rb file. But I can not understand why it doesn't work.
route.rb
resources :users do
resources :calendars
end
The error ...
0
votes
1answer
25 views
generate pdf if object is persisted
I'm using wicked_pdf gem to generate a pdf file:
I want to generate the pdf only if the object is persisted/saved in database:
Something like this:
def new
@invoice = Invoice.new
respond_to do ...
0
votes
2answers
21 views
Changing an instance variable within dynamic dispatch method (dynamic resource using ActiveResource)
I am using dynamic dispatch to define several class methods in a class that inherits from ActiveResource.
class Invoice < ActiveResource::Base
self.site = 'http://localhost:8080/'
def ...
0
votes
0answers
11 views
Seedbank, nothing happens when doing rake db:seed anymore
I just installed seedbank gem : https://github.com/james2m/seedbank which is exactly what I was looking for! (I'm actually surprised this kind of feature is not in the core Rails, but anyway, thanks ...
0
votes
0answers
23 views
Generating additional routes, controller methods & view templates in rails and other long term time savers via console
The one way I know how to do this, at least 2/3 of these, is to run, for example:
rails g controller names dog
if I want to add a names#dog page/method/route. This generates the route and the ...
0
votes
2answers
41 views
How to test model's callback method independently?
I had a method in a model:
class Article < ActiveRecord::Base
def do_something
end
end
I also had a unit test for this method:
# spec/models/article_spec.rb
describe "#do_something" do
...
0
votes
1answer
17 views
How to develop an authentication/authorization plugin that I can use for multiple projects
I am a newbie for RoR but I liked it so far. For the current project I
already developed an authenticaion page where the user will be
authenticated before and after login. I know that I will be doing ...
0
votes
0answers
22 views
How to build a form that on submit sends back a file to the end user
I'm building a form that on submit needs to send the user a file to download.
My form:
<form method="GET" action="/data_export" class="form-horizontal">
<input ...
1
vote
0answers
16 views
javascript void links with RSpec
My Rails app uses nav pills to change the partial used on a form.
%ul.nav.nav-pills
%li.active
%a{href: "javascript:void()", id: 'post_one_partial', name: 'post_one_tab'} Post One
%li
...
0
votes
1answer
6 views
Rails 3 - Calendar Date Select Gem - Disable Field Input
Using gem 'calendar_date_select', :git => 'git://github.com/paneq/calendar_date_select.git' in my Gemfile.
Is there an option for disabling the user from keying in the date, forcing them to use ...
0
votes
2answers
27 views
iterating data from 2 models
In my index I'm trying to iterate through records through records in 2 models, job and employer. I've set up a has_many relationship.
Rails its throwing a undefined method `each' for #
job model
...
0
votes
2answers
41 views
Why do I get “406 Not Acceptable” for this request?
I'm trying to get a JSON response in my browser but I'm getting:
Completed 406 Not Acceptable in 4ms (ActiveRecord: 1.0ms)
It should work. I have the following code in my controller:
respond_to ...
0
votes
1answer
25 views
Strange Routing error in rails 3. Rails changes the route that is specified
I have a rails 3 app, and when I click the link to my terms page, it routes to a completely different controller, than what the routes should use. Stranger still, the route works when I'm not logged ...
0
votes
0answers
12 views
Rails Asset Pipeline, Bower, & Pathing
I'm having trouble referencing a bower component via @import in my stylesheets. I have my Rails project setup according to this article. I am trying to do this (using Stylus):
@import semantic-grid
...
0
votes
1answer
20 views
Rails 3.2 - Validate in Model Based on Other Model Criteria
I have an AWARD model - there are two forms to create an AWARD. One is for nominating EMPLOYEES, the other is for Non-Employees. The EMPLOYEE form pulls a list of active employees to populate the ...
0
votes
1answer
54 views
How can i call the private method in controller by link_to in ruby on rails?
I have a method in my controller called scenario_population
def scenario_population
.....
end
I have a link_to method in view
<%= name_id %> #without form
<%= link_to 'Run', # %>
...
0
votes
1answer
22 views
rails require_tree and javascript is not working
My javascripts are not working when i have = require_tree . inside my application.js, if i delete it then my js.erb for a view some_view.js.erb is not working.
My application.js file:
/*
= require ...
1
vote
0answers
16 views
Config Solr and Memcache connections at initialization in Rails
I am using Rsolr and Dalli to connect to Solr and Memcached in my rail app .
solr = RSolr.connect :url => 'http://localhost:8080/solr/core-name/'
and
mc = Dalli::Client.new('localhost:11211')
...
2
votes
2answers
109 views
undefined method `protect_against_forgery?' for #<#<Class:0x0
I have the following code in my routes.rb file .
resources :users do
member do
get :following,:followers
end
collection do
put :activate_email
end
end
And I have a user email ...
0
votes
1answer
22 views
Rescuing an ActiveRecord::RecordNotUnique in Rails 3.2
I am new to ruby and I want to ensure that the combination of three columns in a model will be unique. I tried using validates_uniqueness_of with scopes but it didn't work as intended. So i added a ...
0
votes
1answer
18 views
I do not have access to the rails command in my application folder
I have rails installed on a machine (Ubuntu 12.04) and have used for a couple of Rails projects. I have access to the rails command in my home folder and any other folder I create on my machine. I ...
0
votes
1answer
27 views
uninitialized constant Rails (NameError) in Rails 3.213
When I attempt to visit the rails site I am working or attempt to run the rake I get the following error
uninitialized constant Rails (NameError)
/path/config/boot.rb:4:in `<top (required)>'
...
3
votes
1answer
28 views
Rails - Why jQuery Doesn't Load After Submitting My Form Remotely
For the sake of simplicity, I have a form that updates a partial. Nothing special there. Within the partial, I have a jQuery sortable list. Before updating the form, I can drag things around in the ...
0
votes
2answers
34 views
undefined method `model_name' for NilClass:Class on view
My code is working on local server but it's not working on the production server. I can't figure it out what I'm doing wrong.Please help me.
This is where I'm getting error in my partial:
...
0
votes
0answers
20 views
Debuggin Rails application in production mode without rebooting system
I am working on a very complex system which has a setup that goes like this.
1. Master Web Server
Running a rails application which is actually 5 different rails application installed using chef.
...
0
votes
1answer
15 views
including rails object in meta tags keywords
I'd like to include a rails object in my keywords as well as straight text but the code is clearly not the right way to do it...how can I do this?
set_meta_tags :keywords => %w[keyword1 keyword2 ...
0
votes
5answers
54 views
How to add confirm message with link_to Ruby on rails
I wanted to add confirmation message on link_to function with Ruby.
= link_to 'Reset message', :action=>'reset' ,:confirm=>'Are you sure?'
Any ideas why it's not working?
0
votes
1answer
32 views
Problems with custom submit in FormBuilder
I'm writing my custom FormBuilder, and I don't understand why the output of method below
def submit(label = "Save changes", *args)
options = args.extract_options!
new_class = options[:class] || ...
0
votes
0answers
24 views
Ruby on Rails: Adding a local image in a Google Maps marker
I have a page show_map.html.erb that displays a Google Map (currently working great). I want to add an image instead of the pin marker on the map. I have Googled a lot for this question, and found ...
2
votes
2answers
42 views
+150
Ruby on rails - paperclip not saving to database
I'm trying to make a create product page in rails. This includes adding multiple images. I have one model for products one for photos and for users. I'm using the paperclip gem for photo upload. But I ...
0
votes
0answers
20 views
How to display a list of following users/followers?
I'm trying to display user's following and followers, but it does not work for some reason and does not throw any error messages. Here's my code:
following and followers action in ...
3
votes
1answer
72 views
Ruby on Rails application installer
I want to develop my rails application installer like in joomla in which we can configure database name, username, password, port, host etc. what is the best idea for it. I tried through rake tasks. ...
1
vote
0answers
20 views
Rails deployment using Phusion Passenger on Bluehost
I am trying to deploy a rails application on Bluehost using passenger and I have been failing all the time.
I installed the passenger gem using:
gem install passenger
And also ran:
...
1
vote
2answers
28 views
How to display previous value on Min Miles text field
I want to display a previous value on Min Miles and that should not be editable. I want like
Default value of Min Miles is 0.
When I click on Add More Range then In the new form - Min Value ...
1
vote
1answer
58 views
How to to mass email (500,000) using rails
How or what should I use in rails to mass mail to 500,000 emails? Also how can I format the email so it goes from different IP and from address. I know AWS is an option (and we would like to use it), ...
0
votes
1answer
31 views
How to query multiple columns against a single array of ids
I have the following model:
Message.rb: sender_id, receiver_id, created_at
I would like to find all messages where the sender_id and receiver_id are both within an array of ids ...
1
vote
1answer
32 views
Exporting CSV data from Rails
I'm working to export csv data from rails. I'm following the tutorial here: http://railscasts.com/episodes/362-exporting-csv-and-excel?view=asciicast
In my controller I have:
def show
# ...



