This file contains 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": "Arica", | |
"code": "15101", | |
"provincia": "Arica", | |
"region": "Arica y Parinacota", | |
"region_number": "XV", | |
"region_iso_3166_2": "CL-AP" | |
}, | |
{ |
This file contains 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
# acid-template.rb | |
git :init | |
gitignore = run("curl https://gist.github.com/raw/3875160/5d2745ee9bcae0bb4addf4bc701d3fa9a48ce187/.gitignore") | |
file ".gitignore", gitignore | |
if yes?("Do you use RVM? (yes|no") | |
if yes?("Do you want to create a .rvmrc file for the project? (yes|no)") | |
# RVM | |
current_ruby = %x{rvm list}.match(/^=>\s+(.*)\s\[/)[1].strip | |
desired_ruby = ask("Which RVM Ruby would you like to use? [#{current_ruby}]") |
This file contains 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
es: | |
errors: | |
messages: | |
not_found: "no encontrado" | |
already_confirmed: "ya ha sido confirmado" | |
not_locked: "no está bloqueado" | |
devise: | |
sessions: | |
link: 'Ingresar' |
This file contains 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
require 'spec_helper' | |
describe WorkPlace do | |
# This is the simplest (best) way to test a dependent: :destroy option | |
it "has one address and ensures it's destroyed when destroyed itself" do | |
should have_one(:address).dependent(:destroy) | |
end | |
# ... however the use this example does of lambda {} to encapsulate the code |
This file contains 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
#Load in rails via: | |
# config/initializers/core_extensions.rb | |
#Forcibly require our core extensions after rails has loaded | |
Dir.glob(Rails.root.join('lib', 'core_ext', '*.rb')).each { |extension| require extension } |
This file contains 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
# encoding: utf-8 | |
# lib/tbk/webpay/logger.rb | |
# Copyright (c) 2013 Acid Ltda <www.acid.cl> | |
# Copyright (c) 2013 Gonzalo Bulnes Guilpain <[email protected]> | |
# Copyright (c) 2013 Cristián Carreño <[email protected]> | |
# | |
# This code is distributed under the same license than TBK-Rails, | |
# see https://github.com/kiel-cristian/tbk-rails for details. | |
module TBK |
This file contains 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
# lib/custom_form_builder.rb | |
# See https://github.com/plataformatec/simple_form#custom-form-builder | |
class CustomFormBuilder < SimpleForm::FormBuilder | |
def input(attribute_name, options = {}, &block) | |
if options[:wrapper_html] | |
options[:wrapper_html].merge! class: 'form-group' | |
else | |
options[:wrapper_html] = { class: 'form-group' } | |
end |
This file contains 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
# features/step_definitions/api_steps.rb | |
# These steps are very deeply inspired in the Anthony Eden (@aeden) API steps. | |
# See http://vimeo.com/30586709 | |
# Given | |
Given /^I send and accept JSON$/ do | |
header 'Accept', 'application/json' |
This file contains 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
# db/migrate/XXXXXXXXXXXXX_add_authentication_token_to_users.rb | |
class AddAuthenticationTokenToUsers < ActiveRecord::Migration | |
def change | |
add_column :users, :authentication_token, :string | |
add_index :users, :authentication_token, :unique => true | |
end | |
end |
This file contains 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
--- | |
layout: nil | |
--- | |
<?xml version="1.0" encoding="utf-8"?> | |
<feed xmlns="http://www.w3.org/2005/Atom"> | |
<title type="text" xml:lang="en">{{ site.root_desc }}</title> | |
<link type="application/atom+xml" href="http://paulstamatiou.com/feed/" rel="self"/> | |
<link type="text" href="http://paulstamatiou.com" rel="alternate"/> | |
<updated>{{ site.time | date_to_xmlschema }}</updated> |
OlderNewer