gem install rails --pre
rails new my_app -T
require 'thor' | |
require 'active_support/inflector' | |
require 'thor/group' | |
module Update | |
module My | |
class Tasks < Thor | |
include Thor::Actions | |
desc "task", "Generate Base App" | |
def task | |
thor :update, "make.thor", "http://gist.github.com/623258" |
load 'config/deploy/settings.rb' | |
load 'config/deploy/symlinks.rb' | |
load 'config/deploy/passenger.rb' | |
load 'config/deploy/callbacks.rb' | |
load 'config/deploy/maintenance.rb' | |
load 'config/deploy/git.rb' |
%w{readline rubygems bond}.each {|e| require e } | |
Bond.start | |
history_file = File.join(ENV["HOME"], '.mini_irb_history') | |
IO.readlines(history_file).each {|e| Readline::HISTORY << e.chomp } if File.exists?(history_file) | |
while (input = Readline.readline('>> ', true)) != 'exit' | |
begin puts "=> #{eval(input).inspect}"; rescue Exception; puts "Error: #{$!}" end | |
end | |
File.open(history_file, 'w') {|f| f.write Readline::HISTORY.to_a.join("\n") } |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
require 'rubygems' | |
require 'sinatra' | |
require 'redis' | |
# To use, simply start your Redis server and boot this | |
# example app with: | |
# ruby example_note_keeping_app.rb | |
# | |
# Point your browser to http://localhost:4567 and enjoy! | |
# |
class ActionDispatch::Routing::Mapper | |
def draw(routes_name) | |
instance_eval(File.read(Rails.root.join("config/routes/#{routes_name}.rb"))) | |
end | |
end | |
BCX::Application.routes.draw do | |
draw :api | |
draw :account | |
draw :session |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<link rel="stylesheet" href="style.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | |
<script src="http://underscorejs.org/underscore.js"></script> | |
<script src="http://backbonejs.org/backbone.js"></script> | |
<script src="http://coffeescript.org/extras/coffee-script.js"></script> |
Lomo PBR yr, freegan VHS butcher you probably haven't heard of them thundercats cardigan terry richardson. Aesthetic craft beer marfa chambray Austin, biodiesel freegan wolf jean shorts single-origin coffee cred viral gentrify williamsburg. Sartorial VHS iphone, before they sold out gluten-free +1 farm-to-table raw denim. Etsy tofu craft beer, organic hoodie aesthetic lomo 8-bit photo booth viral you probably haven't heard of them chambray carles. Twee american apparel marfa terry richardson, wes anderson lomo messenger bag VHS. Messenger bag 8-bit twee, biodiesel etsy readymade trust fund mustache wayfarers organic artisan. Terry richardson etsy wes anderson, vinyl fanny pack pitchfork viral mcsweeney's. | |
+1 put a bird on it photo booth, mixtape vinyl letterpress scenester. Carles quinoa beard banh mi, squid locavore trust fund shoreditch before they sold out PBR salvia raw denim stumptown biodiesel photo booth. Wolf vegan Austin sartorial. Next level banh mi banksy terry richardson, seitan lo-fi mustache. T |
;; Enable paredit for a couple for non lisp modes; tweak | |
;; paredit-space-for-delimiter-predicates to avoid inserting spaces | |
;; before open parens. | |
(dolist (mode '(ruby espresso)) | |
(add-hook (intern (format "%s-mode-hook" mode)) | |
'(lambda () | |
(add-to-list (make-local-variable 'paredit-space-for-delimiter-predicates) | |
(lambda (_ _) nil)) | |
(enable-paredit-mode)))) |