Skip to content

Instantly share code, notes, and snippets.

View dgilperez's full-sized avatar
🌊
Build that!

David Gil dgilperez

🌊
Build that!
View GitHub Profile
@dgilperez
dgilperez / user.rb
Last active December 21, 2015 02:09 — forked from harlow/user.rb
# app/models/user.rb
class User < ActiveRecord::Base
validates :zipcode, presence: true, zipcode: true
end
# Add these two gems
gem 'ice_cube', '0.9.3'
gem 'squeel', '1.0.16'
# https://gist.github.com/1623632
# bundler bootstrap
require 'bundler/capistrano'
# main details
set :application, "123"
role :web, "#{application}.cloud.voupe.net" # #{application}.cloud.voupe.net
role :app, "#{application}.cloud.voupe.net"
role :db, "#{application}.cloud.voupe.net", :primary => true
RSpec.configure do |config|
config.around do |example|
# For examples using capybara-webkit for example.
# Remove this if you don't use it or anything similar
if example.metadata[:js]
example.run
ActiveRecord::Base.connection.tables.each do |table|
ActiveRecord::Base.connection.execute("TRUNCATE TABLE #{table};")
end
@dgilperez
dgilperez / delayed_job
Created July 3, 2012 18:27
Delayed_job init script for linux
#!/bin/sh
set_path="cd /home/rails/my_app/current"
case "$1" in
start)
echo -n "Starting delayed_job: "
su - rails -c "$set_path; RAILS_ENV=production script/delayed_job start" >> log/delayed_job.log 2>&1
echo "done."
;;
stop)
@dgilperez
dgilperez / gist:2829435
Created May 29, 2012 16:35 — forked from bkimble/gist:1365005
List local memcached keys using Ruby
#!/usr/bin/env ruby
require 'net/telnet'
cache_dump_limit = 100
localhost = Net::Telnet::new("Host" => "localhost", "Port" => 11211, "Timeout" => 3)
slab_ids = []
localhost.cmd("String" => "stats items", "Match" => /^END/) do |c|
matches = c.scan(/STAT items:(\d+):/)
slab_ids = matches.flatten.uniq
end
@dgilperez
dgilperez / capybara_debug.rb
Created May 3, 2012 12:10 — forked from tddium/capybara_debug.rb
Trap Capybara Stack Trace
### Show stack trace for 500 errors
### (adapted from https://gist.github.com/1079020)
# Given an application, yield to a block to handle exceptions
class ExceptionRaiserApp
def initialize(app)
@app = app
end
def call(env)
@dgilperez
dgilperez / copy_bucket.rb
Created April 27, 2012 19:23 — forked from jaimeiniesta/copy_bucket.rb
Copy all files from a S3 bucket to another. Works between different S3 accounts.
require 'right_aws'
s3_credentials = {
:source_key => "...",
:source_secret => "...",
:source_bucket => "...",
:destination_key => "...",
:destination_secret => "...",
:destination_bucket => "..."
}
@dgilperez
dgilperez / gist:2304667
Created April 4, 2012 18:48 — forked from eparreno/gist:2300165
About estimations
P = programmer; NP = non-programmer
NP: How long will it take?
P: It'll take as long as it takes.
NP: I don't understand. What does that mean?
P: When you tell me that the product is finished, it's done.
NP: You mean you can't estimate how long it'll take?
P: I can't estimate when you'll decide that it is done, therefore an
accurate prediction is impossible. From experience I know that a
project like this can take from three to nine months. A lot
@dgilperez
dgilperez / adsense_helper.rb
Created February 8, 2012 01:27 — forked from defkode/adsense_helper.rb
Google Adsense Rails 3 helper
module AdsenseHelper
# Author: Tomasz Mazur ([email protected])
# http://www.mydigitallife.info/2009/01/17/google-adsense-legacy-old-generation-code-reference-generate-and-get/
# :slot
# :theme
# :background
# :border
# :link
# :text