Tagged Questions
0
votes
2answers
41 views
Polymorphic Association - Deleting comments
I am creating an application that allows users to make comments on project postings created. I followed this Railscast to set up polymorphic associations.
Everything works great per tutorial, but I ...
-1
votes
4answers
62 views
<%= posts_delete_path %> dont work
I'm programming a website with a friend, and I'm getting one error with my code. In the computer of my friend, he have the same code and don't have any error.
I get the following error:
We're ...
0
votes
2answers
92 views
How to delete a join table association between two models?
I have the following setup of models and controllers:
Models:
class Company < ActiveRecord::Base
has_many :follow_companies, dependent: :destroy
has_many :followers, through: ...
0
votes
2answers
139 views
Rails: question marks in direct SQL query
Disappointed with ActiveRecord which produces inefficient or buggy DELETE queries, I'm looking for an ability to execute direct SQL query in a safe way, free of SQL injection possibility.
I know ...
0
votes
2answers
68 views
How to delete without javascript
I'm trying to make my application work with DELETE action without javascript.
Evrything work as long as my app/view/layout/application.html.haml file do contain the following :
!!! 5
%html
%head
...
2
votes
2answers
73 views
HTTP code when deleting records
I am using Ruby on Rails and I am trying to understand all the subtleties of HTTP codes to bring my app with standards, and I'm facing the following case.
Let's say I have a database with two tables, ...
0
votes
1answer
54 views
Rails 3) Delete, Destory, and Routing
The problem is the code below
<%= button_to t('.delete'), @post, :method => :delete, :class => :destroy %>
My Post model has many relations that are dependent on delete. However, the ...
0
votes
0answers
65 views
Can't delete object with “destroy” method
I can't delete any of my "PointData" objects with the "destroy" method. Here is what I do in the Rails console environnement :
irb> d = Pointdata.where("point_id = ? AND pointfield_id = ?", 6, ...
0
votes
2answers
117 views
Rails object delete or destroy method
I've got
<%= link_to 'Destroy', project, :method => :delete, :data => { :confirm => 'Are you sure?' } %>
but when I click on "Destroy" in view, it shows me the project (routes ...
0
votes
1answer
99 views
Rails 3 Devise/ Delete user Error
I am creating a form for an admin to go in and list, edit and delete users. I have tried many different variations for deleting a user and nothing works. I am wondering if it is because I need to use ...
2
votes
3answers
409 views
ruby on rails link_to delete method not working
I am trying to delete a post using the code below:
<%= link_to 'Destroy', post, :method => :delete, :onclick => "return confirm('Are you sure you want to delete this post?')" %>
which ...
3
votes
1answer
120 views
Rails app won't delete user account using devise
I'm new to rails (and programming) and am trying to create a prelaunch signup page from the RailsApps Project template: http://railsapps.github.com/rails-prelaunch-signup/
I've deployed it to Heroku ...
0
votes
2answers
135 views
Rails delete links not working after upgrade
With rails 2.3.8 I had
= link_to 'old_Delete', link_path(@link), :confirm => 'Are you sure?',
:method => :delete
With rails 3.1.8 this no longer works, no error and the log just shows a ...
0
votes
1answer
148 views
why does the confirm dialog require two clicks with ujs?
Initially no confirm was coming up.
I found that adding //= query_ujs to my asset manifold resolved this.
However... now I find that the confirm dialog takes "2 clicks" to use (either the cancel or ...
0
votes
1answer
101 views
rails delete icon doesn't do confirm dialog
I can't the "confirm" dialog to come up. The record gets deleted ok and the page is updated, but no confirm dialog :(
= button_to('- - -', sched_set_path(sched_set_id),
:confirm => 'Are you ...
1
vote
1answer
516 views
Rails Admin - removing a related object
I'm using Rails Admin on one of my sites. It's great so far, but I can't figure out how to remove a related object from an edit page.
Example:
I have two models Property and PropertyImage.
class ...
0
votes
1answer
74 views
Rails 3.1 : Unable to delete and display confirm box
I am unable to delete or display a confirm box in Rails 3.1.
I have the following lines in my application.hmtl.erb layout :
<%= stylesheet_link_tag "application" %>
<%= ...
0
votes
1answer
162 views
undefined method `destroy' for “Tech”:String
When I go to delete a post I keep receiving an error that says
undefined method `destroy' for "Tech":String
the "tech" part of the posts varies with whatever the tag is of the post I am trying to ...
1
vote
1answer
376 views
Rails session gets destroyed on DELETE request [duplicate]
Possible Duplicate:
WARNING: Can't verify CSRF token authenticity rails
I send a DELETE HTTP request using JQuery AJAX. The URL (/myitems/1234) differs from logout URL ...
2
votes
2answers
191 views
Why does HTTP delete need javascript to work?
I was working with Devise in Rails and while setting up the sign_out function I run into errors. I noticed than, it happened because pages which have sign_out link skipped layouts so Javascript was ...
0
votes
4answers
111 views
rails, determine which page a :delete request is coming from
I was wondering how to determine what page a :delete request is coming from? For example, I have a wall post that appears on both a user’s home page and show page. When a user deletes a post from the ...
1
vote
2answers
161 views
Rails: Delete the temporary object from object.new?
In the show action, there is logic that requires me to define:
@object.nested_object.new (or @object.nested_object.build or @object.nested_object.create)
However, when it's time to show a list of ...
1
vote
1answer
658 views
Single step batch delete in Ruby on Rails
How to send such a query to database server from Rake task without removing record-by-record in "each" loop?
delete from data
where uuid in (
select uuid
from data
group by uuid, raw, ...
2
votes
3answers
804 views
Why am I getting “No route matches [GET]” on a “delete” request? Ruby on Rails
When I try to delete the content of a communityfeed_item/micropost I get the following error:
Routing Error
No route matches [GET] "/microposts/45"
Try running rake routes for more information on ...
0
votes
0answers
113 views
How to config rails to run rspec with mysql2
I am new to rails. I am trying to set up rspec using mysql database. However, specs that are running successfully with sqlite3 failed with mysql because I am able to call delete_all/destroy_all before ...
0
votes
1answer
105 views
On delete method
I have a method which passes ownership of a piece of information to a parent user when they are deleted, but I currently invoke this prior to @user.destroy in the controller.
Is there any way to run ...
2
votes
1answer
855 views
How to delete multiple records simultaneously using Rails 3 and multiple check_box_tag elements
I'm stuck worse than a Yugo in a ditch.
I added the changes which ultimately made this work below (marked as bold edits).
Background
Widgets have many Gadgets
The final td column in the table has ...
-1
votes
2answers
180 views
How to create a link to delete action in Rails (using paths and link_to)?
So far I've managed to come up with this piece of code:
1 <% @projects.each do |p| %>
2 <%= link_to p.name, project_path(p) %>
3 <%= link_to "edit", ...
0
votes
2answers
136 views
Rails delete records into separate table
In Rails, when a record is to be deleted, I want to maintain a separate table for such deleted records (that in structure would be analogous to the former).
One way to achieve this would be to ...
0
votes
1answer
41 views
Update record error when combined with delete
Hi all I have a problem at the moment with my _form.html.erb for editing a game. My code for this class is as followed:
<%= form_for @game, :html => { :multipart => true } do |f| %>
<% ...
2
votes
3answers
1k views
Delete old records on Heroku (Rails 3.1) via rake task
I can't seem to delete old records from my app on heroku.
Currently the heroku scheduler runs:
class Post < ActiveRecord::Base
def self.get_data
# this populates my app but the database is ...
1
vote
2answers
139 views
Deleting from a namespace
I have setup a admin namespace in order to access models in the admin area: /admin/pages
However i have the following problem
i cant get the delete function to work under Admin::PageController for ...
2
votes
0answers
279 views
RESTful API: DELETE item from a list resource without additional “association resource”
Simple model: A User can have several friends (=other users).
This could be a representation of a user:
{
"name" : "Chris",
"friends" : {
"href" : "http://example.org/users/32gu/friends",
...
2
votes
4answers
1k views
Why Delete link doesn't work in this Ruby on Rails project?
I am practicing this RoR tutorial project of Michael Hartl: http://ruby.railstutorial.org/ruby-on-rails-tutorial-book
I am using Ruby 1.9.2 and Rails 3.1 on Ubuntu 11.04 with Apache and MySQL.
I am ...
2
votes
1answer
753 views
Getting a form to use :method => :delete (rails)
I have a cart which contains many line_items. I'd like to have a "delete" button next to each line item that, upon clicked, removes the line_item from the cart.
I know I can do this with a button_to ...
0
votes
1answer
602 views
Running destroy_all on an array?
How can I run destroy_all on an array?
I've got the follow query:
spam_users = User.find_by_sql("SELECT * FROM users WHERE email ~* '21cn.com'")
I've tried running spam_users.destroy_all but I get ...
0
votes
3answers
321 views
Creating a “Delete all Results” button in rails
Im having difficulty understanding exactly what I have to do to provide a link to delete all of my "results"
I'm looking for something like:
<%= button_to 'Remove All', @results, delete_all %>
...
3
votes
2answers
2k views
How do I remove a directory from github?
I have a folder in vendor/plugins/ that I deleted and committed as a delete in my github. But the folder still exists on github.
How do I remove it from github as well? This..may be a submodule.. I'm ...
1
vote
1answer
270 views
Rails 3 data errors with link_to
I've been searching for a while for a solution, but haven't been able to find out what is wrong with my code.
I'm trying to delete an item using an ajax call on an event page, but it doesn't seem to ...
0
votes
2answers
184 views
Rails - delete_all or destroy_all not working on production server but working fine in development server
I have a rails app where I need to periodically delete search logs from a model. For this I am using a rake task with the syntax model.destroy_all, it is working fine in development server. However, ...
2
votes
2answers
1k views
How to stop soft deleted user's login with Devise
I currently use Devise for user registration/authentication in a Rails project.
When a user wants to cancel their account, the user object is soft deleted in a way like the following.
How to ...
7
votes
4answers
1k views
Rails 3 - Ajax Delete links log out current_user
The title pretty much explains it. I'm having an odd situation where views that allow users to delete notifications using Ajax cause the current_user to be logged out. I don't even know where to begin ...
3
votes
2answers
944 views
I'm having trouble using the event.preventDefault(); for an ahref on my DOM
I'm having trouble using the event.preventDefault(); for an ahref on my DOM.
How do you prevent the url from posting a nofollow delete, as specified by the HTML using JQuery?
<td ...
0
votes
2answers
385 views
Rails observers not firing…sometimes
I have a Rails photo observer model that runs after a photo is deleted. If there are no more photos left in the album, the album is unpublished. This works most of the time, but occasionally does not ...
0
votes
1answer
539 views
Rails 2.3.9 - scope, delete_all, update_all
I have a model called RaceWeek. Two operations I want to perform:
(1) I want to scope-down the records using this condition:
"start_date <= #{Time.now} AND end_date >= #{Time.now} AND ...
3
votes
5answers
983 views
How do I put a delete link within an update form?
I have a remote form for updating a 'Point' model. It's a pretty ordinary form with a submit button.
However, I'd like to also include a 'remove' button beside the 'update' button.
Unfortunately, ...
0
votes
1answer
663 views
Deleting nested objects - Rails
First, I'm a Rails noob. I have a profile, and this profile has many cursos (courses). I show all the courses a profile has on the show.html.erb of this profile.
<% for curso in @profile.cursos ...
1
vote
3answers
317 views
Automatically delete posts Rails 3
I'm building an app. where users can decide when their posts will be deleted. but I don't know how to do it in Rails 3. thanks in adv.
0
votes
1answer
837 views
protect_from_forgery does not protect PUT/DELETE requests
I made a demo application with rails new demo and then generated a scaffolded user controller with rails generate scaffold User name:string email:string. The scaffolded code has an ...
0
votes
1answer
66 views
How do I get my link to hit the correct controller action?
I have a has_many, through association between videos and topics with topicables as the independent resource. I want to have a link that deletes that specific topicable record aka the association and ...




