tack2us/app/controllers/pastes_controller.rb
Andrew Tomaka 5c49f8d25c Use spork instead of spring
Conflicts:
	Guardfile
	spec/spec_helper.rb
2014-02-14 15:54:53 -05:00

19 lines
165 B
Ruby

class PastesController < ApplicationController
def index
end
def create
end
def new
end
def update
end
def edit
end
def destroy
end
end