Skip to content

Instantly share code, notes, and snippets.

@thorsteneckel
thorsteneckel / snippets
Last active March 17, 2018 21:22
Disable all ruby snippets from Sublime 3
# mac version
unzip -l /Applications/Sublime\ Text.app/Contents/MacOS/Packages/Ruby.sublime-package | grep '.sublime-snippet' | awk '{print $4}' | xargs -L 1 -I {} touch ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/Ruby/{}
@thorsteneckel
thorsteneckel / books_controller.rb
Last active November 10, 2015 08:36 — forked from cupakromer/books_controller.rb
Rails 4 Standard CRUD Controller
# This is a fairly basic / bare controller which does only the basic CRUD.
class BooksController < ApplicationController
before_action :set_book, only: [:show, :edit, :update, :destroy]
def index
respond_with @books = Book.all
end
def show
respond_with @book