Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialChristopher Phillips
10,061 PointsWhat am I doing wrong?
I'm supposed to create a DELETE route path which will delete "/signatures/:index"
As you can see with my code, I don't think I'm doing anything wrong. But I've gone through a few of these challenges now and have had to skip them because I've always been getting an error when creating my routes. Thus, I think I'm doing it wrong. Can someone please shed some light on the subject for me??
<p><%= @signature %></p>
<form method="post" action="/signatures/<%= @index %>">
<input type="hidden" name="_method" value="delete">
<input type="submit" value="Delete This Signature"/>
</form>
require "sinatra"
def load_signature(index)
# Code omitted for brevity
end
def save_signature(signature)
# Code omitted for brevity
end
def update_signature(index, signature)
# Code omitted for brevity
end
# Deletes the line at the given index and re-saves the file.
def delete_signature(index)
lines = File.readlines("signatures.txt")
index = index.to_i
lines.delete_at(index)
File.open("signatures.txt", "w") do |file|
file.puts lines
end
end
get "/signatures/new" do
# Code omitted for brevity
end
get "/signatures/:index" do
@index = params[:index]
@signature = load_signature(@index)
erb 'show'.to_sym
end
delete "/signatures/:index" do
end
1 Answer
Jay McGavren
Treehouse TeacherIt looks like some changes we made on the code challenge runner broke this challenge. That should now be fixed, and your code should pass up through Task 4 as-is. Sorry for the trouble!