This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # remap prefix to Control + a | |
| set -g prefix C-a | |
| unbind C-b | |
| bind C-a send-prefix | |
| #clear screen w/ prefix 'c-l' | |
| bind C-l send-keys 'C-l' | |
| set -g default-terminal "screen-256color" | |
| set -g utf8 on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| match 'properties', to: 'properties#index', via: [:get, :post] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| match 'properties', to: 'properties#index', via: [:get, :post] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| match 'properties', to: 'properties#show', via: :all |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| get 'properties/:slug', to: 'properties#show', constraints: { slug: /[a-z]+\.\d+/ } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| get 'dashboard', to: 'dashboard#index', constraints: { subdomain: 'staging' } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root 'iphone#index', constraints: lambda { |req| req.env['HTTP_USER_AGENT'] =~ /iPhone/ } | |
| root 'web#index' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| constraints(subdomain: ['admin', 'staging']) do | |
| get 'properties', to: 'properties#show' | |
| post 'properties', to: 'properties#create' | |
| get 'dashboard', to: 'main#dashboard' | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| constraints(IphoneAdmin) do | |
| #your routes | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'rack' | |
| #run proc { |env| ['200', { 'Content-Type' => 'text/html' }, ['code is a liability']] } | |
| class MyRackApp | |
| def call(env) | |
| ['200', { 'Content-Type' => 'text/html' }, ['code is a liability']] | |
| end | |
| end | |
| run MyRackApp.new |
OlderNewer