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
| # ~/.rvm/hooks/after_cd | |
| local dir="$PWD" | |
| while [ "$(dirname "$dir")" != "$dir" ]; do | |
| if [ -f "$dir/.rbenv-version" ]; then | |
| rvm use "$(cat "$dir/.rbenv-version")" | |
| break | |
| fi | |
| dir="$(dirname "$dir")" |
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
| %fieldset.account_info | |
| - ["First Name","Last Name","Email","Choose Password"].each do |n| | |
| %dl.half | |
| %dt | |
| %label{:class => cycle("required", "", "required", "required")}=n | |
| %dd | |
| %input(type="text") |
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
| class UploadsController < ApplicationController | |
| def show | |
| headers['Cache-Control'] = 'public; max-age=600' | |
| send_file Rails.root.join("tmp/uploads/#{params[:path]}"), :disposition => 'inline' | |
| end | |
| 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
| source 'http://rubygems.org' | |
| gem 'rails', :git => 'git://github.com/rails/rails.git' | |
| gem 'arel', :git => 'git://github.com/rails/arel.git' | |
| gem 'hike', :git => 'git://github.com/sstephenson/hike.git' | |
| gem 'sprockets', :git => 'git://github.com/sstephenson/sprockets.git' | |
| gem 'rack', :git => 'git://github.com/rack/rack.git' | |
| gem 'rack-ssl', :git => 'git://github.com/josh/rack-ssl.git' | |
| gem 'rack-cache', :git => 'git://github.com/rtomayko/rack-cache.git' |
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
| ActionDispatch::Routing::PolymorphicRoutes.module_eval do | |
| def polymorphic_url_with_hierarchy(record, options={}) | |
| record = record.hierarchy if record.respond_to?(:hierarchy) | |
| polymorphic_url_without_hierarchy(record, options) | |
| end | |
| alias_method_chain :polymorphic_url, :hierarchy | |
| end | |
| ActionView::Helpers::FormHelper.module_eval do | |
| def form_for_with_hierarchy(object, *args, &block) |
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
| " Vim indent file | |
| " Language: CSS | |
| " Maintainer: Nikolai Weibull <now@bitwi.se> | |
| " Latest Revision: 2010-12-22 | |
| if exists("b:did_indent") | |
| finish | |
| endif | |
| let b:did_indent = 1 |
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
| class SettingsController < ApplicationController | |
| expose(:setting) | |
| def update | |
| setting.save | |
| respond_with setting, :location => settings_path | |
| end | |
| 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
| Gemfile.lock merge=bundlelock | |
| db/schema.rb merge=railsschema |
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
| {:name => "John"}.factorbate :user do |parent| | |
| activate! | |
| {:body => "Your mom!"}.factorbate :comments, self | |
| 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
| def morse s;s.upcase.gsub(/\S/){|x|("CF+(514M )DGL"[x[0]-65]).to_s(3).tr("12",".-")};end |