0
votes
0answers
3 views

Rails jquery sortable list not saving

Sorting the list with javascript works fine, however when I refresh the page, the sorted list returns to its original position rather than saving. Looks like the POST request does not seem to be ...
0
votes
0answers
2 views

Rspec Tests fail using custom model validation

I have this custom validation method which makes sure you can't vote on your own content, and it causes quite a few RSpec test to fail with undefined method 'user_id' for nil:NilClass Is there a way ...
0
votes
1answer
21 views

Rails Ajax Form to add new associated record

I have an events form that has a select drop down for venues. Currently if a new venue is to be added for an event users have to navigate away to the venue form, create their venue and then navigate ...
1
vote
4answers
26 views

Rails, is it possible to change the css depending on the value of an model column?

Lets say i have a table like this: I want to style the rows of the table dependent on the the type {id1: 'Anamnse', id2: 'Befund', id3: 'Therapie'}. Manually i would simply add the bootstrap classes ...
0
votes
0answers
20 views

Ruby on Rails 3.0 to RoR 4.0 Unit Test

I am upgrading an application from RoR 3.0 to RoR 4.0 and I am running into a problem where all the fixture yamls are inserted into the database before the unit test gets executed. One of my test ...
3
votes
1answer
32 views

Image tag shows all columns of model

Yesterday i made some experience with carrierwav, all works fine but at the image tag where normally only the image should displayed rails also shows the hole model, with created_at etc. Here you cann ...
3
votes
1answer
42 views

Deleted user attempts to login

When I'm testing my rails app and I delete a user and try to login I get. Couldn't find user with auth_token = " ... ". Okay, I guess I create a cookie with an auth_token for the user which no longer ...
1
vote
1answer
24 views

Assigning multiple attributes with radio buttons

Im building a plugin to spree, that i need in my application. We are using a shipping company that doesn't deliver to private adresses but to some parcel shops around the country. So when the user ...
2
votes
0answers
18 views

Rubber and Amazon EC2 hosting issue (Net::SSH::AuthenticationFailed: root)

I want to host my ruby on rails application on Amazon EC2 server. I am following Rubber and Amazon EC2 railcast on Ubuntu. When I execute cap rubber:create_staging command, its showing error something ...
0
votes
1answer
27 views

Rspec test failing for POST member route

I have a polymorphic vote model which POSTs through a member route on its parent models. Each parent has a "Vote" method in the controller and im trying to test this action in my controller tests. ...
0
votes
0answers
16 views

preventing /account.1111 routes in rails application?

I am able to enter /account.111 or /profile.111 in my URL's. Is it possible to prevent these routes to be accepted by a rails application?
0
votes
1answer
17 views

Foreign character issue with CSV import to Heroku Postgres DB

I have a rails app where my users can manually set up products via a web form. This works fine and accepts foreign characters well, words like 'Svölk' for example. I now have a need to bulk import ...
0
votes
0answers
16 views

Rails send_data excel works in firefox but not IE

This is my action: def report spreadsheet = StringIO.new [%w(o hai)].dump_to_excel(spreadsheet) send_data spreadsheet.string, :filename=> "#{f.name}.xls", :type=> ...
0
votes
3answers
46 views

How to find out the starting point for each match in ruby

Say, i have a following string string = "#Sachin is Indian cricketer. #Tendulkar is right hand batsman. #Sachin has been honoured with the Padma Vibhushan award " I want o/p as ...
0
votes
1answer
33 views

Rails assets pipeline not getting precompiled

I am trying to deploy a rails application on Heroku. The the deployment was successful but when I visited the link it loaded: We're sorry, but something went wrong. My Heroku Logs: ...
1
vote
3answers
31 views

Rails: if record exists then use this record

How do I use the result of an if condition in Rails? Something like: if @edits.where(:article_id => a.id).first THIS.body.html_safe else a.body.html_safe end How on earth do I access the ...
0
votes
1answer
23 views

401 Unauthorized using OmniAuth-Twitter

I am getting a 401 Unauthorized when trying to implement the OmniAuth-Twitter gem into my rails app in Development I have read several posts saying the server times are mismatched. The error comes ...
2
votes
2answers
38 views

Why do I get an “uninitialized constant” error?

I have the following code: class Zombie < ActiveRecord::Base attr_accessible :name, :rotting, :age has_many :assignments has_many :roles, through: :assignments end class Role < ...
0
votes
0answers
21 views

Rails: if any has_many child has changed remove only that child

I've got a blanket statement that removes all has_many children if any have changed, which is not exactly ideal: def editing @doc = Doc.find(params[:id]) #if articles have changed if ...
0
votes
0answers
24 views

Can we apply dashing for rails application

Now I am dealing with dashing from here http://shopify.github.io/dashing/ I created an dashing app using Sinatra and I added some more 3rd party API's everything is working well. Now I want to run the ...
0
votes
2answers
27 views

Heroku - Extremely slow put request update

I have a simple blog application that I put up on Heroku's free 5gb space. When I send get requests and post requests the response time is snappy and I get a response. The same thing happens with my ...
0
votes
1answer
17 views

Rails. Form submit contains nested model, call method from models controller

I have a Class Foo has many Bar(s) I have a form which contains the nested class Bar and when the form submits I would like Bar that was built to have an IP address associated to it from the server. ...
0
votes
1answer
19 views

Testing signup form with rspec, capybara, and stripe

I'm super new to testing, so I'm not really sure what I should be debugging here. That said, I have two different user types: Authors and Readers, subclassed on Users. They can both sign up fine in ...
0
votes
0answers
29 views

save position of draggable li jQuery Rails 3

I have page with a map on my web-site where administrator can drag and drop icons to the specific position. After reading some examples, icons can be draggable, but when i try to refresh the page all ...
0
votes
1answer
24 views

Defining a conditional ability on a model with a has_many relationship

First, my associations: Form has_many :agreements Agreement belongs_to :student I'm trying to define an Ability where the current user can :read, Form when one of its agreements belongs to the the ...
0
votes
3answers
19 views

How to show profile link on top header menu ? profile_edit_path giving error in applications.html.erb

I have a profile resources with edit_profile_path now I am trying add the link of it on a sitewide menu hence adding the link on application.html.erb <%= link_to 'My Profile', edit_profile_path ...
0
votes
2answers
20 views

Rails fields_for form not showing up, nested form

I created an simple rails project. All worked fine, until i tried to add a new model Paintings that belongs_to treatment and an Patient has many Paintings through Treatment. So somehow the nested i ...
2
votes
2answers
44 views

What is the difference between bundle and bundle update?

I get two different results when using the two commands bundle and bundle update If I use bundle update, I get the following error: Resolving dependencies... Bundler could not find compatible ...
0
votes
1answer
23 views

Rails submitting a form containing a nested class, creation issues

I have a Landlord class, a Comment class, landlords have many comments (1:N) Every time I submit a form (form is @landlord and contains a nested comment in the form) I am creating 3 insertions into ...
0
votes
1answer
9 views

Highlighting inconsistency (Tire / ElasticSearch)

I am trying to use Tire (ElasticSearch) with highlighting, but I am experiencing some inconsistencies and I am probably doing something wrong. The problem I got into is that it does not always ...
0
votes
0answers
12 views

Nested file upload problems with showing the url for the file in Amazon-s3

I have a an activeadmin+carrierwave app. I am trying to nest a file upload model called artwork into the order form. The form is creating fine but the show page is not showing the file link nor is it ...
0
votes
0answers
5 views

Google freebusy api call in rails will not recognizing parameters

I am trying to find all the freebusy times from my primary calendar, but I cannot get the query to recognize my parameters. In my controller I have: @freetimes = client.execute( :api_method ...
0
votes
1answer
21 views

Rails undefined method `image' for error

I wanted to add to my rails app a new model: rails g model Painting patient:references treatment:references image:string I run migration, and then added some lines to the other controllers In the ...
1
vote
1answer
41 views

How to apply scopes to joins in rails?

Let's say i've established this associations: class Budget has_many :forfeitures scope :with_forfeitures, ->{ joins(:forfeitures) } end class Forfeiture belongs_to :budget scope ...
0
votes
1answer
26 views

How to create a favourites relationship in rails 3.2

I am trying to create a "favourite" button for my rails site. I have two models, users and materials. I have done the following: a) I created a new table "favmats" which looks like this in the ...
1
vote
0answers
28 views

How to enable ActiveRecord on skip-active-record rails application?

I have just created a rails apps with skip-active-record for the first time, but after a few months, I need to store to the database. How do I enable ActiveRecord in my current application?
0
votes
0answers
24 views

A confusion when sign_in in rails tutorail chapter 8

I am looking into Rails tutorial chapter8, In the _header.html.erb file There is a line to check whether I have been signed_in. and a part of code in _header.html.erb is as follows: <% if ...
0
votes
0answers
7 views

Auditing in ecommerce - Seperate Audit Model vs Audit Trails

Separate Audit Model One often used pattern for good record-keeping in ecommerce is to create a model which stores a copy of each product. This can be visualised as Order <--- OrderProduct ...
-2
votes
1answer
33 views

ruby 2.0 not work well with rails3.2.8: can not load js and css file

My app is using ruby1.9.3 and rails3.2.8, toady i install ruby2.0 in my new pc. i tried to run rails s it runs without js and css files required in application.js / application.css loaded. how ...
0
votes
0answers
15 views

Auth service in rails for authentication in an service oriented design

I have the following architecture in place: . Most of the services will be Rails-based. The Auth service uses Devise for authentication on top the LDAP Plugin for Devise. I would like the Rails App ...
-1
votes
4answers
51 views

Compare array and return the value if true [closed]

I have these two arrays ArrayA = ["exampl@gmail.com", "example@techsolutions.net", "test@topgear.com"] ArrayB = ["TopGear","Gmail", "Tech Solutions", "Google", "Facebook", "Exxon"] Now what I want ...
-1
votes
1answer
32 views

Get items from 2 tables [closed]

I have two different models - Event and Object. And I want to get mixed array of these items with length 20, which should be sorted by 'created_at' field. What is the best practice to do this?
0
votes
1answer
10 views

Image uploaded through Carrierwave not found when Rails server is started with relative url root

We are using CarrierWave to upload images and they get stored under /public/uploads/#{model.id} When we start the server as rails s, url gets generated as http://localhost:3000/uploads/1 But when ...
1
vote
2answers
19 views

ruby on rails: ensure user must enter value before submittal

I have a form in rails using <%= form_for... %> and I was wondering what do I need to do so that the user has to submit values before submitting? I have input field, radio buttons, and checkbox. ...
1
vote
2answers
34 views

ruby on rails descending loop increments

How do I descent from 5 to 1 instead of going from 1 to 5? I have this... <div class="field-container rating"> <% (5..1).each do |i| %> <%= f.radio_button :rating, i, :id => ...
0
votes
0answers
10 views

How to display different feed data (using feedzirra)

So, I'm using feedzirra gem (https://github.com/pauldix/feedzirra) for parsing and displaying RSS data. However, I'm having trouble displaying different feeds. The code in my view is displaying ...
0
votes
3answers
44 views

Rails - Update action ignores validation

I have an app that has validations password for account creation. However, when a user is updating his password it ignores all validations. Users Controller class User < ActiveRecord::Base ...
0
votes
1answer
19 views

Passing an array of IDs to button_to in Rails?

Is there a way to pass an array of object IDs through button_to? I want the ID passed to controller in an array format so that it'll be the same format as if the user decides to select several items ...
0
votes
1answer
13 views

Remembering records returned from DB query in Rails

I currently use a query of the form @recordsfound = Model.where(...) This is located in my controller and returns all records matching the query. I am using pagination to show a limited number ...
0
votes
2answers
28 views

How come I am unable to delete elements from my database?

This is a list that the user has made, and the destroy method in the Tracks controller (Each track refers to each element in the list) deletes them once the link is clicked. However, this does ...

1 2 3 4 5 511