$ cd /usr/local
$ brew versions mysql
5.6.10 git checkout aa3db07 Library/Formula/mysql.rb
5.5.29 git checkout 336c976 Library/Formula/mysql.rb
5.5.28 git checkout 5825f62 Library/Formula/mysql.rb
5.5.27 git checkout 93aecfa Library/Formula/mysql.rb
5.5.25a git checkout faaa6c1 Library/Formula/mysql.rb
This file contains hidden or 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
| #! /bin/sh | |
| # TestFlight upload notes | |
| while getopts "m:" opts | |
| do | |
| case $opts in | |
| m) | |
| NOTES=$OPTARG ;; | |
| esac | |
| done |
This file contains hidden or 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
| #!/usr/bin/env ruby | |
| require 'xcodeproj' | |
| require 'fileutils' | |
| PROJECT = 'Unity-iPhone' | |
| TARGET = 'Unity-iPhone' | |
| LIBRARY = 'Libraries' | |
| # システムFramework追加 |
This file contains hidden or 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
| #!/usr/bin/env ruby | |
| require 'xcodeproj' | |
| require 'fileutils' | |
| PROJECT = 'Unity-iPhone' | |
| TARGET = 'Unity-iPhone' | |
| LIBRARY = 'Libraries' | |
| LOCALIZE = 'Localize' |
This file contains hidden or 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
| try { | |
| var xxhdpiImage = File.openDialog("Select xxxhdpi file.", "*.png", false); | |
| if (xxhdpiImage == null) { | |
| throw ""; | |
| } | |
| var doc = open(xxhdpiImage, OpenDocumentType.PNG); | |
| if (doc == null) { |
This file contains hidden or 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
| -keep public class com.activeandroid.** { *; } | |
| -keep public class * extends com.activeandroid.Model | |
| -keepattributes *Annotation* |
This file contains hidden or 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
| #import <UIKit/UIKit.h> | |
| @interface GestureView : UIView <UIGestureRecognizerDelegate> | |
| @end |