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.
1
vote
2answers
37 views
Accessing parent object in rabl template
I have a Submission model
belongs_to :report
has_many :answers
Report Model
has_many :questions
Question Model
has_many :answers # answer has submission_id
Now in rabl template I need ...
0
votes
1answer
22 views
Tire ActiveModel callback slow
I've a table which shows data from elasticsearch via tire. The table retrieves the data async in json format.
So if i try to change a entry the table still shows the "old" state of the entry (the ...
0
votes
0answers
17 views
Rails: Manipulate session data outside a controller
I'm thinking of creating a seperate ValidationManager class that takes care of UI validations in a wizard. Now I need to maintain in a session the number of consecutive errors that has occured.
Is ...
0
votes
0answers
15 views
Using twitter-bootstrap-rails `nav_bar` helper method in admin namespace not working
So, I'm using twitter-bootstrap-rails and this gem has a nav_bar helper method that is being loaded automatically. But if I want to use this helper method method in a namespaced view I get the error ...
0
votes
1answer
19 views
CKEditor gem not running in production: Uncaught TypeError: Object #<Object> has no method 'apply'
I have no clue on what's happening here.
I'm using the gem 'ckeditor' in my gemfile and just followed the guide to have //= require in application.js
Everything works smoothly in development, but ...
0
votes
1answer
15 views
Get merchant private data in order state change notification
I am using google checkout with a ruby on rails application. I have added merchant private data in HTML API like this:
<input type="hidden" name="shopping-cart.merchant-private-data" ...
0
votes
1answer
28 views
Selenium WebDriverError on Rails 3.2 with cucumber
I have a Rails 3.2 app. I am trying to set up cucumber tests to run using Google chrome. I have added config for the same:
Capybara.register_driver :selenium do |app|
...
0
votes
1answer
32 views
How to send data from an Android app to a Rails server? JSON or Alternatives? [closed]
When an Android client has to make a POST request to a server, I can send the data as URL parameters in the URL.
But the URL can become very big. So, I want to send the data in JSON format. Is doing ...
-1
votes
2answers
35 views
Rails: setting association object vs. setting association id
I'm following the "Agile Web Development with Rails" book and trying to copy a Products price to the LineItem. Overriding the setter on LineItem seems to be the appropriate choice. However, as so ...
1
vote
1answer
20 views
How do I reference a tiny_tds connection in ruby/sinatra via database.yml (or other)?
I'm trying to figure out how to pull data from a database without the need to place a connection string at the top of each ruby file.
I'm learning the basics of ruby via a little Sinatra app I'm ...
0
votes
0answers
11 views
rails_admin table of has_many in the show?
I would like to show a related has_many set of objects in the show view of the parent object as a table.
Currently the has_many items are just being shown as a list separated by commas.
How can I ...
0
votes
1answer
17 views
Read SOAP contents by given WSDL description
I've been given a service API of wsdl, I've never done it and not sure what I should do with it.
The file is a description of what they gonna send us:
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
3answers
29 views
dynamic fields in the rails view
I want to show fields from the database dynamically.i.e, if suppose
in one case my @user object reads from users table
@user = User.new
in another case @user object reads from posts table
...
0
votes
1answer
27 views
Arduino & Rails integration
I have developed a web aplication for storing sensor data.
Now I am starting the Arduino side development.
I have an arduino wiht network capabilities, of sensors and a relay. I want to send the ...
2
votes
2answers
37 views
How do I get the contents of temp file through a form
index.html.erb
= form_for :file_upload, :html => {:multipart => true} do |f|
= f.label :uploaded_file, 'Upload your file.'
= f.file_field :uploaded_file
= f.submit "Load new ...
0
votes
1answer
42 views
How to create a page through a Ruby Gem?
I am trying to create a gem which will create a page for your rails site say example.com/data and this page will show certain statistics about current rails installation say version etc.
Now I have ...
0
votes
2answers
19 views
Rails Rating System with strange helper method
there's an issue, that is bothering me.
I'm following this "Ruby on Rails"-Tutorial to implement an ajaxified rating system
...
2
votes
2answers
42 views
Calculate offset of a row
I am writing a server side on RoR, which uses postgresql.
Today I faced a feature, in what I need to identify the current offset of a row in the table. Client send me a unique identifier and I need ...
0
votes
1answer
18 views
What is the difference between jQuery rails(2.2.1) and browser's jQuery(1.8.3)?
i am new to ruby on rails, i installed latest gem jQuery rails(2.2.1) but the browser jQuery version is 1.8.3 why it's different
-1
votes
4answers
45 views
How to read these post parameters in rails [closed]
I have the below post request where i'm trying to get the teams id value.
{"utf8"=>"✓",
"_method"=>"put",
"authenticity_token"=>"knq4dG1U/5NJxMD6KYxfOpKd3CuOBHRlp6xCwdpwCnQ=",
...
2
votes
2answers
27 views
Displaying a join using three models in Ruby on Rails
Basically the functionality of the site allows users to follow other users, and they also receive a feed of the sightings that users they are following have made. These sightings are sent from the ...
-1
votes
3answers
38 views
How to make code run every 30 minutes?
I have this code in home controller
def index
urls = RssStream.select("rss_streams.url").all.map { |v| v[:url] }
RssStream.update_all_feeds(urls)
end
And I want to make run this code ...
1
vote
1answer
16 views
How to serve remote file as a download in rails?
I know it's old, but I have project running rails 2.3.9
Admins on our site can provide Document downloads to customers in two ways.
Create a Document with a file attachment
Create a Document with ...
0
votes
1answer
29 views
Ruby on Rails: text filed
I have a code where a user can select a specific file to be deleted or analyzed.
<% if @files%>
<%= form_tag what_to_do_files_path, method: :get do %>
<%= submit_tag ...
1
vote
1answer
37 views
How to turn queries to perform efficiently in rails?
Consider i have a 15 categories and 6 sub-categories and i have table items where i have set of records where i have to fetch in the following manner
category 1 ---> level 1 ---> 3 items with ...
0
votes
0answers
13 views
Rspec Capybara ActiveAdmin error rendering nested models paths
I have a capybara test in order to test the creation of a nested model
For example I have these two resources:
ActiveAdmin.register Campaign do
ActiveAdmin.register PublisherCampaign do
...
0
votes
0answers
18 views
Need to reproduce capistrano connection error: how do log ssh commands?
I have a capistrano configuration that has always worked. Today it does not, and i can't understand why. So i'm trying to reproduce the error. It's a connection error, so i guess it's a unix problem.
...
1
vote
2answers
42 views
Proper way to remember multiple parameters across requests in Rails
My application feature a "main" page where most of the action happens: There are tags for filtering and a list of results in a (paginated) table, plus the possibility to select some or all results in ...
4
votes
3answers
58 views
Dealing with API rate limits?
I've an app that's set up to make scheduled calls to a number of APIs once a day. This works very nicely but i'm aware that some of the APIs i'm calling (Twitter for example) have a rate limit. As the ...
1
vote
4answers
38 views
Ruby on Rails: Fetch database result and search through results
I have a set of IDs for a table called "brands". I want to fetch the name column for each record in the brand table without having to re-query the database using Brand.find(brand_id). Instead, is ...
0
votes
0answers
30 views
Why does the rails server have to be restarted for database changes to take effect?
Changes to source files don't require a restart, yet changes to database structure does mean the server needs to be restarted for the changes to take effect. Does the rails server 'load' the database ...
0
votes
0answers
22 views
Store novel-length strings as .txt files or text files in a database
An online library project I'm mulling over in my mind. Which would be the fastest, the most resource-efficient, and the most developer-friendly? Txt files with their paths stored in the database, or ...
1
vote
1answer
18 views
Disqus Ajax is not taking diffrent thread for diffrent posts in ruby on rails
I have one rails application where I am using Disqus Universal Code for comment function. I am using ajax remote=>true function to display my posts content. Here is my disqus code
<div ...
0
votes
1answer
55 views
How do I populate a model in Rails?
I am fairly new to Rails and I am currently trying to wrap my head around the model/db aspect of the framework. Albeit, I am having some trouble with understanding the connections between models, the ...
0
votes
2answers
16 views
Js files not loading in heroku production with rails 3.2.11
my rails app working in localhost with all js files, but when i run in heroku production, that doesn't load any js files?
config/application.rb
config.cache_classes = true
# Full error reports ...
1
vote
1answer
31 views
Best practices for mongoid relations
I am mapping relations in mongoid, I want to know the best practices for mongoid.
Models
Customer
Service
Supplier
there are four different services (S1, S2, S3, S4), each service provided by ...
0
votes
1answer
16 views
Select specific fields from Model Instance in rails 2.3
I am using Rails 2.3. In my application i need to get selected fields from Model instance. And the code looks like
searches.collect {|s| s.emp_search.find( :select => "id, name")}
From this code ...
0
votes
1answer
41 views
prevent sql injection in rails
I am using the following query to find nearest locations google maps. Is it immune to the Sql injection. If not can anyone help me to get rid of it.
AlphaCourses.find_by_sql("SELECT *,( 6371 * acos( ...
0
votes
0answers
30 views
Rails JSON Error
Well I download Ruby version 1.9.2-p290 and install it in my directory. Also I copied sqlite-shell-win32-x86-3070603 and sqlite-dll-win32-x86-3070603 files to Ruby192/bin directory. When I run the ...
0
votes
2answers
35 views
Rails - order by, with grouped_collection_select
This input select box shows a list of issues based on the selection of another input select box that displays the values in my School.rb model. But, this lists the issues by the issue_id. I need it to ...
1
vote
1answer
13 views
Self hosted @font-face kits from Fonts.com don't load correctly in Rails
I followed the demo.html and copied over all the fonts correctly and ensured that they're being added and compiled in the asset pipeline just like the rest of my fonts. However the .eot, .woff, .svg, ...
1
vote
1answer
11 views
Unicorn and omniauth-facebook - uninitialized constant OmniAuth
So I am trying to get omniauth-facebook to work in my production env. It works fine locally on my machine using POW.
My prod env is ubuntu with nginx/unicorn and code is Rails 3.2.13, the errors ...
0
votes
1answer
23 views
Which one is better ? Omniauth or Omniauth+Devise for twitter verification?
If i use omniauth for twitter verification.. code for the following is
def create
user = User.from_omniauth(env["omniauth.auth"])
session[:user_id] = user.id
redirect_to root_url, notice: ...
0
votes
1answer
18 views
NoMethodError in Flights#show
Showing app/views/flights/show.html.erb where line #3 raised:
You have a nil object when you didn't expect it!
The error occurred while evaluating nil.name
Extracted source (around line #3):
1: ...
0
votes
1answer
15 views
Using Carrierwave to upload image and that works but I don't know how to call the :thumb method
hello here is what I want to do... I have a method that checks if the image is added or not if not the placeholder is used.
I would like to make it where if the image is uploaded on the index page ...
0
votes
1answer
18 views
Rails SimpleForm with nested models: submission redirects to parent model
I have a User that has_many :recipes. I'm using simple_form, and trying to use a form to create a new recipe. Simple, right? I've looked through a dozen SO questions, and I thought I had fixed all the ...
0
votes
0answers
17 views
Rails devise sending emails to wrong email address
I successfully installed devise in my rails app and the user registration works perfect. I've also set it up such that users can confirm their accounts by sending an email. This works fine when the ...
0
votes
2answers
17 views
What are the variables accessible from user_mailer.html.erb?
My user_mailer.rb:
class UserMailer < ActionMailer::Base
default :from => "notifications@example.com"
def welcome_email(user)
@user = user
@url = "http://example.com/login"
...
0
votes
0answers
26 views
Rails 3.2.13 undefined method `photos_path' with nested resources with CarrierWave
I was hoping someone can give me some insights on how nested resources and more specifically how to tie it with CarrierWave.
I'm getting an error undefined method 'photos_path' and am a bit stuck on ...
1
vote
1answer
38 views
Rails database name dynamically by user choice in Mongodb
While installing my app , I want to ask question like
Name of database?
and user will input name they want for database.
Database name is inside config/mongoid.yml
development:
sessions:
...




