Petergate AuthorizationsJanuary 18, 2015 |
"If you like the straight forward and effective nature of Strong Parameters and suspect that cancan might be overkill for your project then you'll love Petergate's easy to use and read action and content based authorizations."
-- I proclaim optimistically
My vimrcNovember 12, 2012 |
" " ========================================================================
" " Isaac Sloan - Vim Configuration 2012
" " ========================================================================
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
" My bundles
Bundle 'ervandew/supertab'
Bundle 'tpope/vim-fugitive'
Bundle 'tpope/vim-rails'
Bundle 'tpope/vim-haml'
Bundle 'slim-template/vim-slim'
Setting up MiniTest for a Rails 4 AppOctober 03, 2014 |
Gemfile
gem "minitest-rails", github: "blowmage/minitest-rails"
gem "minitest-reporters"
application.rb
config.generators do |g|
g.test_framework :minitest, spec: true, fixture: true
g.helper false
g.view_specs false
end
$>
rails g minitest:install
test_helper.rb
Rails.env = "test"
Deploying a Rails ApplicationSeptember 18, 2014 |
cap staging depoy
Setting up an Ubuntu 13.04 Server for RailsMay 25, 2013 |
sudo adduser deploy
Make sure that each line completes before running the next. Don't just copy the lines in all at once or it will use the beginning letters of one line as an answer to questions the first may ask.
sudo apt-get -y update && sudo apt-get -y upgrade