I hereby claim:
- I am guilhermearaujo on github.
- I am guilhermearaujo (https://keybase.io/guilhermearaujo) on keybase.
- I have a public key ASDVo3hP06FSx-ObYhQ0kRLYoQIS7knyW-QhZuJx8yVf3go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env ruby | |
require 'english' | |
require 'rubocop' | |
ADDED_OR_MODIFIED = /A|AM|^M/.freeze | |
changed_files = `git status --porcelain`.split(/\n/). | |
select { |file_name_with_status| | |
file_name_with_status =~ ADDED_OR_MODIFIED |
// | |
// UISegmentedControl+Multiline.h | |
// | |
// Created by Guilherme Araújo on 6/9/14. | |
// Copyright (c) 2014 Guilherme Araújo. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
@interface UISegmentedControl (Multiline) |
// | |
// NSString+BaseConvertion.h | |
// | |
// Created by Guilherme Araújo on 31/05/14. | |
// Copyright (c) 2014 Guilherme Araújo. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
@interface NSString (BaseConvertion) |
// | |
// RoundedNetworkImageView | |
// | |
// Created by Guilherme Araújo on 4/3/14. | |
// | |
import android.content.Context; | |
import android.graphics.Bitmap; | |
import android.graphics.BitmapShader; | |
import android.graphics.Canvas; |