Skip to content

Instantly share code, notes, and snippets.

View lsylvester's full-sized avatar

Lachlan Sylvester lsylvester

View GitHub Profile
@scottkf
scottkf / config-deploy.rb
Created December 18, 2012 17:51
Puma capistrano deployment script, w/init.d script and nginx conf
require "bundler/capistrano"
server "server", :web, :app, :db, primary: true
set :application, "<application>"
set :user, "<user>"
set :group, "wheel"
set :deploy_to, "/home/#{user}/apps/#{application}"
set :deploy_via, :remote_cache
set :use_sudo, false
@palkan
palkan / Gemfile
Last active April 25, 2024 14:23
RSpec profiling with RubyProf and StackProf
gem 'stackprof', require: false
gem 'ruby-prof', require: false