Tagged Questions
0
votes
1answer
16 views
Rails: Active Admin Association Image column
I am new to ruby on rails and have just installed active admin and was trying to customize the
views.
I have a product and image table. Each image belongs to one product.
Now I want to display a ...
0
votes
1answer
47 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
58 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
0answers
15 views
How to get Helios and Rails to work together (Rack issues)?
I'm trying to get Helios (https://github.com/helios-framework/helios) to work with an existing Ruby on Rails 3.1 application. But there's a conflict regarding rack version; bundle install gives me ...
0
votes
1answer
17 views
how to create dynamic routes and helpers in rails3
i have a task to create mapping of different urls at run time .
In the application i have a GUI interface which displays list of routes from routes.rb file.
User has the ability to change that url to ...
0
votes
0answers
16 views
Integrating ROR community engine to my existing app
Am trying to integrate Community Engine to my application.But it is showing dependency error.I tried to correct all the dependencies,but it is not integrating.
C:\Sites\Example>bundle install ...
0
votes
0answers
18 views
Provide an API integrating into the Rails asset pipeline
Want to create a gem which provides some assets for the rails asset_pipeline
My gem is at https://github.com/deepak/socialite_js
The required DSL is:
socialite_javascript_tag provides a method on ...
0
votes
3answers
43 views
Inline Javascript not working properly on rerendering a partial in ruby on rails 3.1
In my project we have inline javascript in a partial which is using some instance variables. When we are rerendering that partial after successful ajax call that script is not running.
Can you please ...
1
vote
0answers
55 views
Rspec Error in end of Section 10.1.3 of Michael Hartl's Rials tutorial
I am on Section 10.1.3 of the tutorial http://ruby.railstutorial.org/chapters/user-microposts#sec-user_micropost_associations. I am using rails 3.1.1 and ruby 1.9.2
When I run the spec test
bundle ...
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
2answers
20 views
Implement the gecoder gem in nested resource loop?
I implemented the geocoder gem based on the tutorial on http://railscasts.com/episodes/273-geocoder
This is a part of the house show view template
- @house.location.nearbys(20, {:order => ...
0
votes
1answer
17 views
Adding :scale to a column in a table already filled with data(non scaled) and Updating existing values-Rails 3
i have a migration file
class CreateProductDetails < ActiveRecord::Migration
def change
create_table :product_details do |t|
t.integer :quantity , :default => 1
...
0
votes
1answer
18 views
Rails 3: assets pipeline + many layouts
I have a huge project with rails 3.1 (without assets pipeline). This project has a lot of different layouts, for example:
application
home
console
And etc. Each layout has a huge list of js and ...
0
votes
3answers
23 views
Is there any posibility to control model callback for only one controller method call?
i need to use model callback when only selected action in controller
class TestController
def end_exam(); end
def resume_exam(); end
def continue_exam(); end
def review_exam(); end
end
class ...
-1
votes
1answer
51 views
Sort group of records based on different columns
I have a four columns in table called recordings such as score, event_id, user_id and I would like to sum the score of recordings based on user id + event id,
and then I would like to show the users ...
0
votes
1answer
34 views
Fields_for with nested attribute, has_many through association
I have 3 models - standards, layers, and layers_assocs. Standards has many layers through layer_assocs and the rest is trivial. The layers_assocs table stores the standards_id, layer_id and a visible ...
0
votes
1answer
20 views
How to avoid conflicting when naming model attributes?
I want to know if there is a best to name model attribute that won't conflict with ActiveRecord::Base instance methods.
For example, we probably won't name attribute as class or toggle, since these ...
0
votes
1answer
44 views
Make music streaming app using Ruby on Rails and WebSockets
I would like to make a Ruby on Rails app that streams music using WebSockets. Does anyone know of a tutorial or guide on how to get started? I need to make the app in Ruby on Rails which I only have a ...
2
votes
0answers
33 views
How do I limit Tire/ElasticSearch results by association?
I have a collection of posts that are within categories and subcategories using a belongs_to association. Additionally, the posts have a belongs_to relationship with my state and city models.
I am ...
0
votes
2answers
34 views
How to get not exists set in collection in Rails
I wanna to be get a set that doesn't exists in collection. like following:
ids = [1,2,3,4,5] # 2,3,4 is not exists
User.where(:id => ids)
I want to get a set [2,3,4]
Without affecting ...
1
vote
1answer
40 views
Rails file upload with ajax
i have been uploading file with rails with rest-client, but when i change that into ajax,
gives some server error.
FORM code
<%= form_tag({:controller => 'person',:action => ...
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
47 views
How to I remove a subdomain from URL?
I followed the Railscast on adding subdomains to a Rails app, here, and everything is working great with the subdomains. Now I just can't figure out a way to link back to the root domain without a ...
0
votes
1answer
29 views
Rails wrong static location picking
I am new to rails and implementing a demo app. I have this code in my 'app/view/layout/applicatio.html.erb' file:
<%= stylesheet_link_tag "scaffold" %>
but when I run it and debug in my ...
0
votes
2answers
46 views
How do I redirect request if a subdomain does not exist?
I've setup a current project with subdomains based on this Railscast. I have two models, State and City that each have a :subdomain field in their dataset. If a user enters a subdomain that matches ...
0
votes
0answers
28 views
ArgumentError in Users#index [Ch. 9 MHartl Tutorial]
Wrapping up the Mhartl rails tutorial and I've been hit with this error.
Error message:
ArgumentError in Users#index
Showing ...
0
votes
2answers
42 views
Authorize nested and polymorphic resources (cancan)
Have models User, Project, Document, Issue, Comment, Ability:
class User < ActiveRecord::Base
has_and_belongs_to_many :projects
end
class Project < ActiveRecord::Base
...
0
votes
2answers
68 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
1answer
42 views
Create migration files in rails from existing mysql table
I m developing an application in rails. I have created a table say "student" in mysql. Is there anyway to create its migration file in rails application? I have specified databse name in ...
0
votes
0answers
28 views
Count Consecutive Records matching a criteria in rails
I have a rails model called UserAttempt which has done_correct:boolean entry in database.
The model has a method on it called delta_tts which returns a float value. ie., user_attempt.delta_tts = ...
0
votes
2answers
92 views
How to access rails request object in rspec integration test?
In Rails 3.2.13, subdomain is provided by default. As such, I want to test my application such that when a merchant signs up, he goes by default to root_url with subdomain 'merchant' i.e. ...
0
votes
2answers
36 views
How to display the first 10 characters only of a message stored in database?
In my inbox view, where I am able to list each individual message, I want to display the first 10 characters of a message if the message is larger than 10 characters or display the entire message. The ...
0
votes
2answers
24 views
How to capture a User in the create action for sending a msg?
I want to implement functionality where User A can send a message to User B. Say User A is viewing User B's profile and clicks on the Send Message link, how can I make sure that only User B will ...
0
votes
0answers
19 views
Using gem 'route_translator' error on rake routes
Im try using the gem 'route_translator', but i want set a default language, i will use some one, so i see this code: in enviroment:
RouteTranslator.config do |config|
config.force_locale = true
...
0
votes
0answers
24 views
Facebook Koala (rails) : fetch a group and its members using a single batch request
I'm new to the facebook graph API, and I can't find a way to achieve this.
All my groups have less than 15 users (splitting requests is not required)
I'm currently using a loop which calls the API ...
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
87 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 ...
0
votes
2answers
61 views
Search form by start_time and end_time
My models
class House < ActiveRecord::Base
has_many: bookings
end
class Booking < ActiveRecord::Base
belongs_to: house
end
The booking table has the fields customer_name, start_time, ...
0
votes
2answers
38 views
Associating a new object with an existing object with has_many through
I have two classes Users and Projects. A user can own many projects and a project can be owned by many users. However, a project must have at least one user while a user does not necessary have to ...
0
votes
1answer
33 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 ...
1
vote
1answer
73 views
Rails 3.2 Time ago in words Method returns html content
I wanted to display datetime in words, like "1 hour ago" and i tried the following method but it is returning returning html in the string format as shown below.
method
...
-2
votes
1answer
70 views
Chat messenger like facebook or Gmail for rails framework [closed]
I want to add chat messenger in my application.
do we have any messenger like facebook or gmail in rails.
0
votes
3answers
33 views
Rails: Hide Paramater in URL
In order to reply to a message received from User A, I am passing in User A's id through the link_to tag:
<%= link_to "Reply", new_message_path(:id => @user.id), class: "button" %>
I can ...
0
votes
1answer
33 views
How to delete friendship from db when a “friend” deletes his account?
I have implemented a friendship model successfully which on creation of a friendship creates two rows in the database.
# Accept a friend request.
def self.accept(customer, friend)
transaction ...
0
votes
3answers
57 views
If params is present not working
My url paths are this
/locale/country/
/locale/country/region/
models:
class Region
belongs: country
end
class Country
has_many: regions
end
a foreign-key country_id in regions table
This is ...
0
votes
2answers
25 views
boolean value false in date range for rails
Hello i am developing demo app for room booking where user enters their start_date and end_date for room booking.
status is boolean type. default is true.
how can i make status false only for ...



