Tagged Questions
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.
7
votes
0answers
113 views
save_and_open_page and spork, spork is loosing test suite / output
When i run my rspec tests with spork, every time i use capybara's save_and_open_page, spork is loosing the test suite.. or maybe doesnt output anything anymore...
See the log
# => without ...
7
votes
0answers
271 views
Rails app on JRuby 1.7 in Nailgun mode does not start
I installed JRuby 1.7.2 in RVM, created a gemset, executed bundle install. Now, I run this:
Term 1:
[lzap@lzapx my_app]$ bundle exec jruby --ng-serv
NGServer started on all interfaces, port 2113.
...
6
votes
0answers
2k views
X-Frame-Options ALLOW-FROM a specific site allows from all
I'm using a rails application to serve a page from abc.com. In it, I set the response headers in my application controller (for every request through before_filter) so that it can be accessed through ...
5
votes
0answers
88 views
Parallel Test Execution hangs indefinitely on webkit driver for rspec
I'm running my specs through parallel_tests on the capybara-webkit driver. I have the following ruby environment:
ruby -v
ruby 1.9.3p125 (2012-02-16 revision 34643) [x86_64-darwin11.4.2]
Running ...
5
votes
0answers
266 views
Connection pool issue with ActiveRecord objects in rufus-scheduler
I'm using rufus-scheduler to run a number of frequent jobs that do some various tasks with ActiveRecord objects. If there is any sort of network or postgresql hiccup, even after recovery, all the ...
5
votes
0answers
430 views
Paperclip/Rspec tests: Is there a faster way to test paperclip validates_attachment_content_type?
One thing I've noticed is that in most of the projects I do, the one spec that always takes a long time (30 seconds +) is this shoulda/paperclip helper:
it { should ...
4
votes
0answers
214 views
Soundmanager-rails won't play sound with flash
I am using soundmanager-rails gem in my rails app. I use it to stream radio from stream. While HTML5 audio works fine with mp3, flash won't play a sound. I've tried Firefox, Safari and Chrome and in ...
4
votes
0answers
295 views
Rails' Paperclip gem POSTing instead of PUTting when uploading .zip file
I've got a form (Rails 3.2.8, Paperclip 3.1.4) with two Paperclip attachments for a model with two has_attached_files. One is meant to be an image, the other a generic file, usually a .zip file.
...
4
votes
0answers
219 views
Testing ActiveMerchant with cucumber/capybara
How do I test Paypal Express Gateway with cucumber(with capybara) and activemerchant. I have ActiveMerchant in test mode, and I'm wanting to test the process of testing out my shopping cart. ...
3
votes
0answers
173 views
Shared authentication between rails and node.js with redis store
I have a rails app and a node.js app and I use Devise to authenticate users. I store the session with Redis. Now I'd like that when a user go to the node app, the app checks through socket.io whether ...
3
votes
0answers
69 views
DBI::InterfaceError: Could not load driver (uninitialized constant MysqlError)
I have included gems,
dbd-mysql (0.4.4)
dbi (0.4.5)
mysql (2.8.1)
on rails console when I run the following code,
require 'rubygems'
require "dbi"
require 'dbd-mysql'
dbh = ...
3
votes
0answers
76 views
Anonymous Devise Issue: “[17] is not a symbol”
Devise is throwing an issue I don't understand.
Using better errors gem; here's where it gets caught:
block in constantize(gem) activesupport-3.2.12/lib/active_support/inflector/methods.rb
225 ...
3
votes
0answers
131 views
How to integrate acts-as-taggable-on to RailsAdmin?
Is someone integrate acts-as-taggable-on to RailsAdmin? I'm trying rails_admin_tag_list but it's not working for me.
My environments:
**Gems included by the bundle:
* actionmailer (3.2.13)
* ...
3
votes
0answers
326 views
Error installing mysql2 adapter: Please install the mysql2 adapter: `gem install activerecord-mysql2-adapter` (cannot load such file — mysql2/mysql2)
I am getting this error when running Redmine2.3-stable, and subsequently unable to install the mysql2 adapter successfully.
This is the error:
Please install the mysql2 adapter: `gem install ...
3
votes
0answers
93 views
Newline gets prepended when sending form with Capybara
I have this test in a Rails app, using Capybara:
within "#register" do
fill_in "Biography (optionnal)", :with => "Hello world!"
end
click_on "Save"
# Check that form is repopulated with old ...
3
votes
0answers
98 views
Using ActiveRecord interface for Models backed by external API in Ruby on Rails
I'm trying to use Models in my Rails application that retrieve information from an external API. What I would like to do is access my data models (which may consist of information resulting from ...
3
votes
0answers
178 views
Resque and New relic
I've started getting strange errors with New Relic and resque
INFO : Starting Agent shutdown
ERROR : undefined method `write' for nil:NilClass: Unable to send data to parent process, please see ...
3
votes
0answers
429 views
Getting PDF from WickedPDF for attachment via Carrierwave
In Rails3, I am using the WickedPDF gem to render a PDF format of one of my models. This is working fine: /invoices/123 returns HTML, /invoices/123.pdf downloads a PDF.
In my Invoice model, I am ...
3
votes
0answers
175 views
PUT requests in rails don't update the status on respond_with calls
Given the following controller in rails:
class AccountsController < ApplicationController
respond_to :json, :xml
def update
@account = Account.where(uuid: params[:id]).first
...
3
votes
0answers
282 views
Save image/octet-stream, base64 encoded as image file via Rails
I am using canvg library to save google graph as image. More about this process can be found on this page.
Ok, so JS framework provides me with encoded data of image and I POST that data using form ...
3
votes
0answers
121 views
Flattening a polymorphic AR relation with Elasticsearch/Tire
I'm working with a Rails 3 application to allow people to apply for grants and such. We're using Elasticsearch/Tire as a search engine.
Documents, e.g., grant proposals, are composed of many answers ...
3
votes
0answers
169 views
Get Rails pipeline to gzip xml assets
I'm using the rails asset pipeline for my rails site. The assets:precompile task properly processes and creates gzip versions of my css and js files automatically.
I've now added some xml assets. ...
3
votes
0answers
97 views
Adding custom fields to a class at runtime, in Ruby with mongoid
In a project came across a requirement wherein a logged in user should be asked specific data based on his company. This specific data would be company specific, and could be mandatory or unique. ...
3
votes
0answers
95 views
Globalize3— Save translation to the database
Hey everyone I'm newbie and would love to get some help with saving locale translation to database.
I have this form
= form_for @restaurant do |f|
= f.fields_for :en_info do |restaurant_en|
...
3
votes
0answers
194 views
Rails console issues using JRuby: no prompt character, no tab completion, broken arrow keys, etc
I'm having various issues with my Rails console under JRuby, including
No prompt character
Tab completion not working (literal tab gets inserted)
Up/down arrows not browsing history (^[[A or ^[[B ...
3
votes
0answers
212 views
Integration Testing a Backbone.js application with Cucumber and Capybara
I am trying to test a Backbone application running on top of a Rails 3.2.8 one using Cucumber, capybara, capybara-webkit, selenium-webdriver, rspec and jasmine. I am using eco as template engine for ...
3
votes
0answers
249 views
ERROR Errno::EINVAL: Invalid argument - <STDOUT> while uploading image with paperclip
I'm using Paperclip with ActiveAdmin to upload pictures in Articles.
But I have a problem, when I'm editing an existing article, the first time after Webrcik started, it functions very well. But ...
3
votes
0answers
296 views
Monitoring resque with monit with RVM
I previously had Monit monitoring resque with the following Monit script
check process resque_worker_production_QUEUE
with pidfile /var/tmp/resque_production.pid
start program = "/usr/bin/env ...
3
votes
0answers
176 views
What is best way to make Vim's omnicomplete context aware for ruby/rails? (i.e., intellisense)
Vim's auto complete seems like it is just throwing the the kitchen sink at me hoping that one of the words is sothing I need. If I know the first couple characters of the member method, I am ok, but ...
3
votes
0answers
102 views
How to test Rails applications using GIS databases
I'm developing a Rails app (3.2.8) that will use the activerecord-postgis-adapter and activerecord-spatialite-adapater gems and various rgeo plugins.
I would like to use the Rails unit and functional ...
3
votes
0answers
103 views
Omniauth login without refreshing the page?
I'm using the Omniauth gem to let my users sign up through twitter.
I want the omniauth process to happen behind the scenes, so I'm trying to make the link to /auth/twitter a remote: true link. ...
3
votes
0answers
246 views
Searching through tag using Ransack
I'm using Ransack to perform fairly complex searches through some models. One of these models holds free text and uses the acts_as_taggable gem to tag the words.
I'm trying to create a collection ...
3
votes
0answers
277 views
Improving performance on loading a long list of facebook friends
As part of my rails project, I have a feature that allows a user to issue invites to their FB friends. I'm using fb_graph for the API calls, and the below is a sampling of the code from the ...
3
votes
0answers
219 views
Rails Console Crashing
When I load up my Rails Console, I get the following error
Loading development environment (Rails 3.2.3)
/Users/nataliamurashev/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/irb/magic-file.rb:7:in ...
3
votes
0answers
160 views
Generate yaml node anchors and references programmatically
I need to generate this yaml programmatically in Rails:
foo: &foo
x: 1
y: 2
bar:
<<: *foo
z: 3
which when it's parsed should give this hash:
output = {
:foo => {
...
3
votes
0answers
190 views
Why is my middleware leaking memory?
I've forked the rack-timeout gem so I could add some features -- namely, catching the incidents of timeouts, logging them, and sending a 503.
Here's my fork.
Here's the Rack app/middleware in my ...
3
votes
0answers
301 views
Invite via hotmail contacts with rails
I need to send an invitation mail to hotmail contacts.
I'm trying to use this gem for this. This works correctly for gmail and yahoo, but for hotmail it doesn't:
Their API returns a Contact ...
3
votes
0answers
157 views
Rails 3 / Heroku / Memcached - Miss / Miss,store / Fresh
Good afternoon,
I have got Memcached set up decently well in my Heroku app. However, there is some odd behaviour that makes me wonder whether or not I've got it set up correctly.
When I visit a ...
3
votes
0answers
300 views
Why Omniauth redirects to /auth/failure and not /auth/:provider/failure
everything is in the title.
Do you know why omniauth redirects to /auth/failure in case of a failure for every strategy by default ?
It would be so much easier to customize errors pages depending on ...
3
votes
0answers
158 views
How to get the server port in a Rails initializer
I have multiple instances of Rails servers and there is a need for each one of them to know its own listening port in environment.rb. request.port will work in the controllers but not in the context ...
3
votes
0answers
275 views
RSpec and Machinist error: Too many open files
This morning I am having the following error:
14) Deal on creation sets frozen to false or nil
Failure/Error: Unable to find matching line from backtrace
Errno::EMFILE:
Too many ...
3
votes
0answers
535 views
rails activeadmin (multi) nested form
I try to getting started with active admin
I have this models:
class Client < ActiveRecord::Base
has_many :direcctions
validates :empresa,:presence => true
validates :fono,:presence => true
...
3
votes
0answers
409 views
Rails/Devise - Unprocessable Entity
I am trying to use a post request (JSON) to create a user. The example with curl works fine. Here is the curl command:
curl -X POST -H "Content-Type: application/json" ...
3
votes
0answers
180 views
Paste more than 4k worth of data into textarea from a Cucumber step (using Capybara)
I have a text area in a form that accepts JSON-formatted data to create a set of objects. I've written the step for that part as:
Then /^I should be able to paste JSON\-formatted data to create a new ...
3
votes
0answers
259 views
How do you write a cancan ability so can? and accessible_by both work on self referencing HABTM relation?
I am stumped on how to handle this situation using a self referencing HABTM relation, cancan, and ActiveRecord.
I am trying to use accessible_by to determine a set of videos that are visible given a ...
3
votes
0answers
265 views
How do you set up chainable scopes based on relations in Mongoid
Problem fixed... Turned out there was an active record method that got over written, now everything works as expected
I am trying to set up scopes so I can make a call that looks like
...
3
votes
0answers
203 views
rails gem prawn, image and anchor
Can you tell me how to insert image which will be a link to for example page 20? I know how to make with normal text:
text "<link anchor='page20'>Go to page 20</link>", ...
3
votes
0answers
450 views
concatenate two active record results (through join table) to return a new result
I have the following :
Account --> Options
Account --> Profiles --> Options
Here are the models
# models/account.rb
class Account < ActiveRecord::Base
has_many :accounts_has_options
...
3
votes
0answers
267 views
Rails Association Extensions: Override a HABTM assignment (collection=) method
In a question I've previously answered, I used an association extension to override a HABTM collection's append (<<) method (Also, a similar question):
has_and_belongs_to_many(:countries) do
...
3
votes
0answers
555 views
How to set current value in collection in simple_form (using mongoid)
I have this in my form:
= f.input :location_id, :collection => @locations, :include_blank => false, :selected => @video.location
This works fine for my "new" view/action and I see a nice ...


