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
class CreatePersonas < ActiveRecord::Migration | |
def self.up | |
create_table :personas do |t| | |
t.string :nombre | |
t.string :apellido | |
t.string :email | |
t.boolean :activo | |
t.timestamps | |
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
package 'openssl' do | |
type 'make' | |
default 'source' | |
version 'source' do | |
download 'http://...' | |
# hooks | |
before :download { } | |
after :download { } |
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 config/paperclip.yml settings | |
if paperclip_cfg = YAML.load_file("#{Rails.root}/config/paperclip.yml")[Rails.env] | |
paperclip_cfg.symbolize_keys! | |
command_path = paperclip_cfg.delete(:command_path) | |
# Replace Attachment defaults with configuration ones | |
Paperclip::Attachment.default_options.merge!(paperclip_cfg) | |
# Adjust ImageMagick path to work with Passenger | |
Paperclip.options[:command_path] = command_path |
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
Se encuentran un Santiagueño y un Tucumano en la calle y entonces el | |
santiagueño piensa: le voy a mentir algo al gil de mierda este. | |
- che tucumano sabes que allá en santiago ta tan avanzada la | |
tecnología y la medicina que a mi vieja se quedó ciega y los medicos | |
como son muy avanzados le pusieron un huevo cocido y ahora ella ve | |
mejor que cualquiera.- | |
- que bien dice el tucumano, pero te cuento que allá en Tucuman es | |
mucho mejor la medicina, a mi tío que estaba trabajando en el campo le |
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
# | |
# Custom Matchers | |
# by INSIGNIA | |
# | |
# Contributors | |
# - Pablo Moreira Mora | |
# - Juan Maria Martinez Arce | |
# | |
# | |
# Usage |
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
{{#user}} | |
<div class="lefted gravatar-box"> | |
<a href="#tweets/users/{{id}}"> | |
<img alt="{{full_name}} avatar" src="http://gravatar.com/avatar/{{email_md5}}.png?s=30" title="{{full_name}}"> | |
</a> | |
</div> | |
{{/user}} | |
<div class="lefted"> | |
{{{decorated_status}}}<br/> | |
<small><abbr class="timeago" title="{{created_at}}">{{created_at}}</abbr></small> |