mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
19 lines
299 B
Objective-C
19 lines
299 B
Objective-C
//
|
|
// PBGitDefaults.h
|
|
// GitX
|
|
//
|
|
// Created by Jeff Mesnil on 19/10/08.
|
|
// Copyright 2008 Jeff Mesnil (http://jmesnil.net/). All rights reserved.
|
|
//
|
|
|
|
@interface PBGitDefaults : NSObject
|
|
{
|
|
|
|
}
|
|
|
|
+ (int) commitMessageViewVerticalLineLength;
|
|
+ (BOOL) isGistEnabled;
|
|
+ (BOOL) isGravatarEnabled;
|
|
|
|
@end
|