gh-ypresto-SwiftLintXcode/SwiftLintAutoCorrect/NSObject_Extension.swift
2016-04-04 17:28:36 +09:00

19 lines
No EOL
474 B
Swift

//
// NSObject_Extension.swift
//
// Created by yuya.tanaka on 2016/04/04.
// Copyright © 2016 Yuya Tanaka. All rights reserved.
//
import Foundation
extension NSObject {
class func pluginDidLoad(bundle: NSBundle) {
let appName = NSBundle.mainBundle().infoDictionary?["CFBundleName"] as? NSString
if appName == "Xcode" {
if sharedPlugin == nil {
sharedPlugin = SwiftLintAutoCorrect(bundle: bundle)
}
}
}
}