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
### Keybase proof | |
I hereby claim: | |
* I am itsluke on github. | |
* I am itsluke (https://keybase.io/itsluke) on keybase. | |
* I have a public key whose fingerprint is A38C D87C 01A7 1E2E B070 4DEB E275 56EA E94A E666 | |
To claim this, I am signing this object: |
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
// | |
// jquery.selectBoxIt.css 3.8.1 | |
// Author: @gregfranko | |
// SassMonkey: @itsluke | |
// | |
// | |
// Common CSS Properties | |
// --------------------- | |
// These properties will be applied to any themes that you use |
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
function dance() | |
config=' | |
# Gems | |
w%{ rubygems bundler/setup sinatra haml pry json net/http}.each {|req| require req } | |
configure do | |
end | |
require "./app" | |
run App | |
' |
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
function newrailsproject() { | |
rails new $1 -d mysql | |
cd $1 | |
rm public/index.html | |
rm Gemfile | |
rm app/views/layout/application.html.erb | |
cp $HOME/code/rails/template/template_Gemfile Gemfile | |
bundle install | |
echo "\n ****** project created \n" | |
rails g nifty:layout --haml |