0
votes
1answer
46 views

Best way to implement DRY in this example

What is the best way to create a reusable read method in this example. I have two chunks of code that do two things in common, read file and check for a certain regex pattern. I want to separate these ...
3
votes
2answers
57 views

ruby sort an array alphabetically,unique and loop though 5 times

I am retrieving elements from an array: - member_results.each do |member| = member It returns something like this: ["John", "Jason", "Andy", "Zee", "Sandy", "Randy", "Grisham"] I need to ...
0
votes
1answer
21 views

Rails 3: method delegations with nil relationships

Given the following (vastly simplified) objects: class Player < ActiveRecord::Base has_many :characters end class Character < ActiveRecord::Base belongs_to :player delegate :name, :to ...
0
votes
2answers
39 views

problems rounding. I want to round the value with 2 digits

This is my loop in the house view show template: - @region.cities.each do |city| %li = link_to city.name, country_region_city_path(@country, @region, city) %li = ...
0
votes
1answer
32 views

Mysql queries inside controller class

I have a Usetable contains username and password fields and inserted one value to that table username:admin password:text In view file contains text boxes for username and password and a login button ...
1
vote
1answer
33 views

exception_notification settings not being used

I have the following in my development.rb, staging.rb, and production.rb config.middleware.use ExceptionNotifier, :email => { :email_prefix => "[Exception] ", :sender_address => ...
0
votes
1answer
35 views

Why is Rails not precompiling javascripts and stylesheets inside the vendor directory?

In my project I have third party JavaScripts and Css files inside the vendor/assets/javascripts and vendor/assets/stylesheets directories. In development mode I can refer to the assets within those ...
0
votes
2answers
67 views

Set maximum length in Text field in RoR

Has anyone managed to set maximum field lenghts for text fields How can i set the maximum length of a text field. Here is the code iam using <%= text_field_tag(:create_text), :input_html => ...
0
votes
0answers
51 views

has_many tags in nested resources setup

I implemented the tagging feature described at railscasts. http://railscasts.com/episodes/382-tagging part of my tag model: class Tag < ActiveRecord::Base has_many :taggings has_many ...
0
votes
2answers
85 views

Mysql2::Error: Incorrect date value: '— !ruby/hash:ActiveSupport::HashWithIndifferentAccess

I moved from sqllite to mysql (recreated the same workspace with mysql right from the beginning. Did not do any migrations). The code worked well with sqllite but is erroring out with mysql. This is ...
3
votes
1answer
24 views

how to ensure that a user can not redirect to another element in the child engine from within the parent engine

I have some engines mounted inside another engines as this engine is to be made a congregation of multiple child elements from various engines. This engine is finally mounted in the main app. My ...
0
votes
1answer
32 views

MHartl Tutorial Error: undefined method `model_name' for NilClass:Class

So I'm working my way through the MHartl Rails Tutorial and it has been awesome so far, albeit I have just ran into my first error and I am having trouble finding a working solution. The error: ...
0
votes
1answer
22 views

How to get the values by association in ruby?

I have three tables, Alpha - :set_code, :field_code Beta - :set_code, :field_code # both fields are primary key in BETA table Gamma - :field_code, :field_name I have three Classes in my model: ...
0
votes
1answer
45 views

How to use the date_select and time_select in the form in rails?

I have a Date and Time column separately in the table in my database. When i click the Edit in the table, the Date and Time should display the values by params. The User can change the Date and the ...
0
votes
2answers
64 views

Where to put JS file in Rails?

I want to know where to put javascript file in ruby on rails. I am using jQuery dialogue box in my app. All jQuery and CSS files I put under assets/javascripts and assets/stylesheets. Now I have ...
0
votes
3answers
78 views

Getting catcomplete to work in rails

I'm trying to implement the categories version of autocomplete in jquery. This is the type of array I need to recreate and pass to my view: var data = [ { label: "anders", category: "" }, { ...
0
votes
4answers
91 views

wrong number of arguments (4 for 1..3)

i'm struggling to understand why this is happen with destroy method since everything on controller and routes is ok! if someone passed through this way please could give me a hint? Routes ...
0
votes
1answer
53 views

Custom password field with devise (ruby)

I'm using a database shared between 2 rails apps. A webapp using BCrypt and has_secure_password to authenticate user, and my app, an REST API, using Devise to authenticate users. Password hash is the ...
1
vote
1answer
44 views

Rails Display post according to timestamp

I am noob in Rails i was following rails official documentation for creating blog, after creating the blog with post and comment controller i want to add some way to display the post according to ...
1
vote
1answer
69 views

Facebook APP Multiple Domains

I am setting up a Ruby on Rails app to allow login via Facebook with Devise + Omniauth. I can got this working no problem with the APP ID and Token. However I am having an issue that I am not sure ...
0
votes
1answer
74 views

Rails : can't convert Regexp into Integer

I have the following code in my rails controller: @main_mastertest = $connection.execute("SELECT * FROM builds;") @l2_tmp_mastertest = Array.new @l2_tmp_mastertest = @main_mastertest.map {|y|[y[0]]} ...
0
votes
1answer
48 views

rspec testing for order of json response

So my code is returning json like this: "offenses": [ { "name": "Speeding", "penalties": [ { "name": "Ticket", "severity": "Medium" } } ] I have the following ...
0
votes
1answer
74 views

SQL JOIN equivalent in Ruby on Rails

these are my Models User -> has many Pins Pins -> has many votes vote -> has a user_id and pin_id How do I get all the Pins that are voted by the user in the most effective way? ...
0
votes
2answers
36 views

Image not visible from imdb-party

<%= image_tag(movie_info.poster_url, :class => 'img-polaroid') %> HTML output: <img alt="Mv5bmje1odcyodyxml5bml5banbnxkftztcwnja1nde3mq@@._v1_" class="img-polaroid" ...
-1
votes
2answers
289 views

How to MySQL ruby on rails?

I am really new in Ruby On Rails. I have readed this tutorial http://railsforzombies.org/levels/1# and it sounds really easy. But how can i "connect" to my database (mySQL) or what does ruby on rails ...
0
votes
2answers
71 views

undefined local variable or method `hej'

Hello i am totally new to ruby on rails. I am getting this error: undefined local variable or method `hej' in my application.html.erb i have: <%=hej%> and in application.controller i have ...
1
vote
0answers
32 views

How to destroy folders in a custom generator

I'm having a bit silly issue by creating my own generator in rails using Thor. It turns out to be automatic that when you run your generator and it creates files in your code base, let's say rails ...
-1
votes
3answers
80 views

get values from ruby to javascript

Am new to ruby on rails.I want to get the values from ruby to java script.Here is the code iam using. What i want is i want to create a data variable in json format with speed and time values from ...
0
votes
1answer
36 views

Application error on deploy heroku

My app is works fine in localhost, but when i deploy to heroku and try create a new order i receive this error: 2013-03-20T21:26:02+00:00 app[web.1]: Started GET "/orders/new" for 189.44.29.3 at ...
0
votes
1answer
57 views

rspec for testing json results

So I am basically trying to write rspec to test my json results: patient_allergies = patient.patient_allergies expect(response_body['allergies'].size).to eq(patient_allergies.size) ...
0
votes
1answer
54 views

Rails error serving assets

I am migrating a big site from Rails 2 to Rails 3. When I try to get an asset I get the following error using Webrick: Started GET "/assets/key.png" for 127.0.0.1 at 2013-03-20 11:00:06 -0300 Served ...
1
vote
0answers
18 views

submit video feed to itune

Is there any way to submit Video Feed to itune directly without iTunes application(like by API) manually. I am searching a way to submit feed or podcast directly from ROR application. Thanks
1
vote
2answers
57 views

Understanding Ruby messages

To provide some background; I've been learning Ruby for the passed few months (have read most of Well-Grounded-Rubyist, completed Poignant ruby guide, and planning on reading Eloquent ruby afterwards) ...
1
vote
1answer
127 views

Rails ckeditor Invalid CSS after “*”: expected “{”, was “html .cke_uicol…”

I'm updating an app to rails 3.1 and I'm getting this error when precompiling my assets, I've updated ckeditor to 4.0.2 because according to this Github Issue that will fix it but the error is still ...
0
votes
3answers
46 views

Rails 3.2 Model scope date less_than_a_

I am trying to create a scope which can find the dataset for example, less_than_a_year, less_than_six_month, in my model through my deadline attribute. class Goal < ActiveRecord::Base ...
1
vote
2answers
34 views

How to validate attachment in nested model?

I have a Design model that has two Paperclip attachments inside two associations (full_image and preview). I want to be able to save designs only when both full_image and preview have valid files but ...
0
votes
8answers
387 views

Ruby On Rails “Hello World” page doesn't work

I'm new in ruby on rails and I have a problem. When I starе server " rails server and going to the page www.localhost:3000 in my browser everything works fine with ROR default page, but.... after ...
0
votes
1answer
48 views

ruby on rails add a column after a specific column name

I tried to add a column to a table after a specific column in the table. Here is what I did: rails generate migration add_reaction_id_to_patient_allergies reaction_id: integer :after => ...
0
votes
1answer
77 views

Mongoid: can I embed many and reference one of the embedded?

I have a list of games. Each one has an embedded list of scores. I'd like to keep a reference to the best score outside of the scores list. class Game include Mongoid::Document field ...
1
vote
2answers
43 views

How can I tell if a vendored gem is being used?

I have inherited an old project that was previously passed on by multiple developers. It's in a bad shape so I'm trying to bring it back to life. I notice there are some gems and libs that have been ...
0
votes
1answer
68 views

Generate HTML with Rails and Jquery doest work

Im trying to make a button to add one form to create one Task with many Users, i put this: $("#more").click(function(){ i++; $("#more").after("<%= select_tag ...
0
votes
3answers
62 views

populate random data in ruby on rails

I need help in populate some random data in my database table. I have a list of 10 users in my system. My allergy table has the following fields: id user_id name reactions status I have the ...
0
votes
1answer
63 views

ruby on rails looping through a list of key value elements

I have a list of key value pairs like this. PERSON_SUMMARY = { first_names: %w(Mike Tim Jim kevin Alan Sara John Sammy t'Renée), last_names: %w(Robinson Jackson Fox Terry Ali Brits ...
0
votes
2answers
47 views

test if model exists in callback, if it does update, else create

I have a model called Product. p = Product.new(...) and p.save I wanna acomplish the following: If there is another product with the same id(not pk), then we update the product, else we create a ...
0
votes
2answers
32 views

Getting error when updating blog post with tags

Hello I just started with Ruby on Rails and its a very cool language to work with.. But after finishing the tutorial I encounter an error that I don't really understand since I followed the getting ...
0
votes
1answer
53 views

How to convert an array into content_tags in Ruby on Rails?

I am trying to write a helper function in Rails that converts an array of values into an array of radio_buttons. In my form I have this: <%= radio_tags_for_select(f.object.invoice_types) %> ...
1
vote
1answer
64 views

ruby on rails if else logic

How do I shorten my if else statement below. Right now the only difference in the 2 statments is the first line. accordion-body and accordion-body.collapse. - if @office.to_i == office.id ...
0
votes
2answers
139 views

rake aborted! uninitialized constant User::UserGroup

I am having a strange problem where my rake task is running on my local machine but not in production. Getting the following error when try the same in PRODUCTION rake aborted!uninitialized ...
2
votes
1answer
141 views

Where to put helper functions for rake tasks and test files in Ruby on Rails?

In my Rails application I have a file sample_data.rb inside /lib/tasks as well as a bunch of test files inside my /spec directory. All these files often share common functionality such as: def ...
0
votes
3answers
82 views

ruby on rails handling url parameters

I come from a PHP background and am having lot of trouble understanding how to handle rails handles post,get request data etc. I have have a hyperlink that I make it go to ...

1 2 3 4 5 23