Ruby on Rails is an open source full-stack web application framework written in Ruby. It follows the popular MVC framework model and is known for its "convention over configuration" approach to application development.

learn more… | top users | synonyms (2) | ruby on rails jobs

1
vote
0answers
18 views

Cancel Rails DB connection

I am writing an app that uses Server Side events with ActionController::Live. It is using the puma app server. A method in the Messages controller stays alive while the user is connected waiting for ...
0
votes
2answers
27 views

Rails/Backbone.js content with script tag shows error “Uncaught SyntaxError: Unexpected token ILLEGAL”

I have an app that has page content that includes script tags, but when it tries to render it gives the error 'Uncaught SyntaxError: Unexpected token ILLEGAL'. I'm initializing a backbone app as ...
0
votes
2answers
10 views

Rails - Undefined Method in Staging, but fine in local development

I'm working on a project and I added a migration to add a project_page_description field to a Company Model. When I've ran the migrations, @company = Company.first @company.project_page_description ...
0
votes
1answer
16 views

Securely providing the database password in a Rails app

As you know, you MUST provide the correct database name, username, and password for the database in the config/database.yml file, or your Rails app will refuse to work. In the default setup, your ...
0
votes
0answers
26 views

rspec cannot find factory that is created in test

I have a Factory that creates a mock order. It has a before_create in the factory to create 3 models that are necessary for after_create callbacks when creating an order. The following factory code ...
18
votes
5answers
10k views

Deploying RoR app to Heroku with Sqlite3 fails

I'm trying to deploy my first app to Heroku. I'm using Sqlite as the database. As far as I know Heroku doesn't use Sqlite - it switches to Postgres in the backend. When I'm deploying I get the ...
0
votes
1answer
11 views

How to migrate with data update on *one time* joined columns?

I'm adding a new association to existing models with existing data in a Rails 3.2.x + AR project. The Migration script: class AddUserToSignups < ActiveRecord::Migration def up add_column ...
0
votes
0answers
15 views

Rails MySQL Connection Problems

I am having an issue connecting to the mysql database using rails. I'm a newbie to rails but I have tried the guide here: rails + MySQL on OSX: Library not loaded: libmysqlclient.18.dylib and this ...
0
votes
1answer
26 views

Rails form submission error

I currently have a form for when a user submits a user with a comment as such: <%= form_form @user => <%= f.fields_for :comments do |comment_form| %> <%= comment_form.text_area ...
0
votes
1answer
43 views

`Simple_form` + nested model + CanCan: creating new child updates parent

Environment: Rails 3.2.13 + simple_form 2.1.0 + CanCan 1.6.10 + etc. Model thumbnail: Articles have authors (Users) and Comments. Comments are a nested resource within Articles. The Comment model ...
0
votes
0answers
15 views

How to use Elasticsearch using tire gem?

I am implementing Elastic search for searching users and their friends in my project. I am able to successfully search users but not the friends. Below I am pasting relevant portion of my User model, ...
0
votes
1answer
37 views

how do I use the ruby-gpgme gem

I have no idea how to configure gpg, gpgme or get it working in rails. I need to encrypt a text file to be sent to a fulfillment company. How do I gpg encrypt the file in rails?
0
votes
0answers
18 views

Check a placeholder with cucumber

I'm running few test with cucumber and I'm trying to test if there's actually a placeholder on my input. This is what I've got (from this page : link) page.has_selector?(:xpath, ...
0
votes
1answer
23 views

VCR's allow_playback_repeat option does not let me reuse old cassettes

I have a test that implements VCR as follows: describe "DELETE destroy" do context 'for an Item that can be deleted' do it "destroys the requested item, assigns a flash message, and ...
0
votes
0answers
31 views

simple_format in Rails displays ugly html code in meta description

To display an article I use the following line in the articles/show.html.haml = simple_format(@article.content) Viewing the result in a broswer works perfectly. Anyhow, I use the first few words as ...
18
votes
4answers
3k views

Rails + New Relic: What does RPM mean?

I just started using New Relic RPM with my rails app, and one of the metrics they provide is "Throughput RPM". I have googled everywhere and thoroughly combed the New Relic docs, and I cannot find ANY ...
0
votes
1answer
18 views

How to override default id value in Rails Form helper methods?

So, I am making a todo list app using Rails and Ajax . I have a form for each todo task in my "lists/show.html.erb" file . Here is some code from it : <h3>Unfinished Tasks</h3> <div ...
1
vote
2answers
97 views

Specifying column name in a “references” migration

I want to made a migration, referencing another table. Usually, I would do something like: add_column :post, :user, :references OK, this will create a column named user_id in posts table, right? ...
0
votes
4answers
245 views

Ruby on Rails: How do I write a migration to add a reference to a table?

I have add_column :foos, :bar_id, :integer but I wast to be able to do stuff like @foo.bar.name rather than Bar.find(@foo.bar_id) I think its done with t.references when creating a table... ...
1
vote
0answers
25 views

deploy via capistrano fail

2013-06-17 15:23:22 executing `deploy' * 2013-06-17 15:23:22 executing `deploy:update' ** transaction: start * 2013-06-17 15:23:22 executing `deploy:update_code' updating the cached checkout on all ...
0
votes
0answers
18 views

Environment variables on production

Hi everybody I’m currently deploying my RoR application on Amazon and I’m facing a problem with environment variables. I'm using dotenv gem on development and testing and it works just fine while ...
0
votes
0answers
9 views

jQuery Fileupload sends wrong data

So I am having a problem with the jQuery Fileupload plugin, or, more specifically, with using it with rails. The problem is that almost half of my requests is completely broken. Instead of the valid ...
1
vote
1answer
15 views

Move domain name of Heroku to another Heroku app

Right now I have configured an APP to use a domain name that I own. However, I have created another app in Heroku and I would like that one to use that domain name. What would be the correct way to ...
0
votes
2answers
18 views

Rails + Postgres: How to select count of how many records are “UPDATE”d?

So I have an update statement: UPDATE billing_infos set card_number = '' FROM orders WHERE billing_infos.order_id = orders.id ...); How would I find the count of how many records are updated by this ...
0
votes
0answers
12 views

Why am I asked to run 'rake db:migrate RAILS_ENV=test'?

On Rails 4.0.0.rc1, Ruby 2.0.0, after I run a migration, I see the following error when I try to run a test through rspec: ...
0
votes
0answers
8 views

Share Redis pool between Sidekiq & Rails

What is the best practice to share a Redis connection pool between Rails & Sidekiq ? I've done that in an initializer : Sidekiq.configure_client do |config| pool = ConnectionPool.new(size: 1, ...
0
votes
1answer
22 views

Serializing ActiveRecord::Relation objects for storage

I am trying to build a reporting feature for my app and each report is essentially an active record relation / query with a name. I need to serialise these relations so that I can persist them and ...
1
vote
2answers
21 views

Rails Module/Folder Naming Convention

I'm having a problem with a module name and the folder structure. I have a model defined as module API module RESTv2 class User end end end The folder structure looks like ...
0
votes
1answer
21 views

Custom Analyzer in Tire (ElasticSearch)

I am trying to create this custom analyzer and for some reason I am getting the Analyzer [] not found for field [] error... I looked around a lot and tried different implementations and I think I have ...
0
votes
0answers
18 views

Homebrew install returns errors related to user/local paths and .pc files

First, I'm completely new to web development and have no idea what I'm doing. I've spent about 8 hours looking for various answers to my questions and different things have worked for a bit but in the ...
0
votes
0answers
14 views

How to check if the database exists or not in rails before doing a rake db:setup

How to check if the database exists or not in rails before doing a rake db:setup? I would like to check if a database already exists before a db:create is being done . I have not seen a specific way ...
1
vote
1answer
38 views

How can I serialize Ruby's TZInfo data?

I have a Rails application that, like all Rails applications, uses Ruby's TZInfo library for time-zone information. This library uses Olson-style information, but it the implementation doesn't ...
0
votes
0answers
5 views

Unable to find group (Fog::Compute::AWS::NotFound)

Amazon ec2 with rubber deploy error. When i run create staging I got following error. /usr/local/rvm/gems/ruby-1.9.3-p392/gems/excon-0.23.0/lib/excon/middlewares/expects.rb:10:in response_call': ...
1
vote
0answers
21 views

failed to allocate memory on the console and internal server error on the browser

I have this error while loading the data from files in to database. Please help me out in getting this right. here is the method : clusters.each do |cluster| cluster_path = cluster.path ...
0
votes
1answer
34 views

Ruby on Rails - render login page after session expire

I would like to render login page after session expire in my rails application. I didn't use any gem for authentication. Any help would be appreciated please. The below is my application controller. ...
0
votes
0answers
65 views

Ruby on Rails: calculate number of days using records in array and insert in another array

I have an array which consist of some records fetched from the table. Example record: rec = ReworkCycle id: 6634, issue_id: 2651, status_id: 3, project_id: 14, created_on: "2013-05-29 07:41:06", ...
0
votes
1answer
33 views

Served asset /css/bootstrap.css - 404 Not Found, rails 3.2.3, form is not loaded, RailsSpace

please help me. I would like to create a social networking website as in the book RailsSpace. Unfortunately, the book is old and I use Rails 3.2.3, devise for Authentifiaction and bootstrap. I've just ...
0
votes
0answers
24 views

Can't save more that one object using nested form?

I am using nested_form gem and have following form: = simple_nested_form_for @profile do |f| = f.fields_for :person do |p| = p.fields_for :web_profiles do |e| = e.input :name = ...
0
votes
1answer
23 views

params[:date] prints date as a number

I have a form which does a GET request through remote to user_path(@user) in a file called index.html.erb. In my show.js.erb I have a function which searches for the records within the start and end ...
0
votes
2answers
15 views

why rspec test requires save and reload all time

This my example test block it 'should redirect to account portfolio items page if user is creative and its first visit is false and sign in count is 1' do @creative.first_visit = false ...
0
votes
0answers
12 views

Rspec test fails on Jenkins when open file from /tmp folder

I have such trouble with Jenkins. I'm trying to test PDF generation using RSpec. RSpec test failing, when trying to open receuntly generated PDF file. (File is saving into /tmp directory) ...
0
votes
1answer
21 views

Rails 4 config.assets.precompile += %w(*.png *.jpg *.jpeg *.gif application-print.css) error

In Rails 4.0.0-rc2, the line below is causing an error "+" (something about truth) in either production.rb or application.rb. This link refers to it needing to be in application.rb. I am unable to ...
0
votes
1answer
54 views

Using the same “Voting” controller action for two different objects

I am following schneems's great intro to Rails tutorial on creating a Reddit clone, and want to expand the "voting" structure to work not only for questions, but for comments as well, and was having ...
-1
votes
0answers
21 views

if check-box is checked return timestamp

I have a rails app where I need a check-box. If the check-box is checked, I would like it to display the current time stamp. If it's not clicked, nothing should be displayed. Also, whenever I ...
0
votes
1answer
47 views

One validation for many model or how to right to do validation

I have 7 model Attach that set period of attache date for other model. I need to validate that date of attache do not have intersection periud for example: class AttachNetworkToUser < ...
0
votes
1answer
19 views

How to execute a Rails “Rake Task”

what's up? My friend created a rake task to update our data in the database (because we have db changes). Following is the task: namespace :db do task :update_database => :environment do ...
2
votes
1answer
35 views

How I can make the complex filter for examples

I try to do complex filter for examples. I have this code: require 'rspec' RSpec.configure do |config| config.treat_symbols_as_metadata_keys_with_true_values = true config.filter_run :foo => ...
-1
votes
0answers
47 views

Production redis server has 100% cpu usage [closed]

My production redis server has gone mad and has been hogging up 100% of CPU usage. I have done everything that I can from upgrading redis server to restarting the machine. I can't figure out what's ...
0
votes
0answers
8 views

Ignore URI(request.referer).path for previous URL when visiting directly to a page

I'm trying to save the previous URL in a session, I currently have this code: after_filter "save_my_previous_url", only: [:renderForm, :renderQuote] def save_my_previous_url if ...
0
votes
0answers
17 views

ArgumentError: redundant UTF-8 sequence

Hi i am unable to figure what is the actual issue. i am using rails 2.3.18 and ruby 1.8.7 The stack trace of the error is as follows …tivesupport-2.3.18/lib/active_support/json/encoding.rb: 68:in ...

1 2 3 4 5 2381