(Several of these git examples have been extracted from the book 'Pragmatic guide to GIT' of Travis Swicegood )
git config --global user.name "Fernando Guillen"
git config --global user.email "[email protected]"
cd /develop/myrepo
(Several of these git examples have been extracted from the book 'Pragmatic guide to GIT' of Travis Swicegood )
git config --global user.name "Fernando Guillen"
git config --global user.email "[email protected]"
cd /develop/myrepo
| /*! | |
| * | |
| * Imgur CORS Image upload | |
| * | |
| * Author & Copyright: timdream ([email protected]; http://timdream.org/) | |
| * License: MIT LICENSE | |
| * | |
| */ | |
| "use strict"; |
| #!/usr/bin/env ruby | |
| # Xcode auto-versioning script for Subversion by Axel Andersson | |
| # Updated for git by Marcus S. Zarra and Matt Long | |
| # Converted to ruby by Abizer Nasir | |
| # Appends the git sha to the version number set in Xcode. | |
| # see http://www.stompy.org/2008/08/14/xcode-and-git-another-build-script/ for more details | |
| # These are the common places where git is installed. | |
| # Change this if your path isn't here |
| #!/bin/bash | |
| # | |
| # Startup script for the Supervisor server | |
| # | |
| # Tested with Red Hat Enterprise Linux Server release 5.5 | |
| # | |
| # chkconfig: 2345 85 15 | |
| # description: Supervisor is a client/server system that allows its users to \ | |
| # monitor and control a number of processes on UNIX-like \ | |
| # operating systems. |
Just install this in your apps like so:
gem 'test-spec-mini', :git => 'git://gist.github.com/1806986.git', :require => 'mini'
| import urllib, urllib2, json | |
| class FacebookTestUserManager: | |
| ''' | |
| A tool which helps to create and delete test account for | |
| Facebook. | |
| See https://developers.facebook.com/docs/test_users/ | |
| ''' |
| #import <Foundation/Foundation.h> | |
| @interface ZBFacebookTestUserManager : NSObject | |
| - (id)initWithAppID:(NSString *)inAppID appSecret:(NSString *)inAppSecret; | |
| - (NSDictionary *)createTestAccountWithName:(NSString *)inUsername error:(NSError **)outError; | |
| - (BOOL)deleteTestAccountWithUserID:(NSString *)inUserID error:(NSError **)outError; | |
| @property (readonly) NSString *appID; | |
| @property (readonly) NSString *appSecret; |
Changes:
this version includes backport of Greg Price's patch for speedup startup http://bugs.ruby-lang.org/issues/7158 .
ruby-core prefers his way to do thing, so that I abandon cached-lp and sorted-lf patches of mine.
this version integrates 'array as queue' patch, which improves performance when push/shift pattern is heavily used on Array.
This patch is accepted into trunk for Ruby 2.0 and last possible bug is found by Yui Naruse. It is used in production* for a couple of months without issues even with this bug.