[
  {
    "path": ".gitignore",
    "content": "# Xcode\n#\n# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore\n\n## Build generated\nbuild/\nDerivedData/\n\n## Various settings\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\nxcuserdata/\n\n## Other\n*.moved-aside\n*.xccheckout\n*.xcscmblueprint\n\n## Obj-C/Swift specific\n*.hmap\n*.ipa\n*.dSYM.zip\n*.dSYM\n\n# CocoaPods\n#\n# We recommend against adding the Pods directory to your .gitignore. However\n# you should judge for yourself, the pros and cons are mentioned at:\n# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control\n#\n# Pods/\n\n# Carthage\n#\n# Add this line if you want to avoid checking in source code from Carthage dependencies.\n# Carthage/Checkouts\n\nCarthage/Build\n\n# fastlane\n#\n# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the\n# screenshots whenever they are needed.\n# For more information about the recommended setup visit:\n# https://docs.fastlane.tools/best-practices/source-control/#source-control\n\nfastlane/report.xml\nfastlane/Preview.html\nfastlane/screenshots\nfastlane/test_output\n\n# Code Injection\n#\n# After new code Injection tools there's a generated folder /iOSInjectionProject\n# https://github.com/johnno1962/injectionforxcode\n\niOSInjectionProject/\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: objective-c\nosx_image: xcode8.1\nscript:\n- set -o pipefail\n- xcodebuild clean build test -workspace Example/BMASpinningLabel.xcworkspace -scheme BMASpinningLabel -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 7' -configuration Debug | xcpretty\n- bash <(curl -s https://codecov.io/bash) -J 'BMASpinningLabel'\n"
  },
  {
    "path": "BMASpinningLabel/BMASpinningLabel.h",
    "content": "//\n// Copyright (c) Badoo Trading Limited, 2010-present. All rights reserved.\n//\n\n@import UIKit;\n\nNS_ASSUME_NONNULL_BEGIN\n\ntypedef NS_ENUM(NSUInteger, BMASpinDirection) {\n    BMASpinDirectionDownward,\n    BMASpinDirectionUpward\n};\n\ntypedef NS_OPTIONS(NSUInteger, BMASpinSettings) {\n    BMASpinSettingsNone = 0,\n    BMASpinSettingsAnimated = 1,\n    BMASpinSettingsWaitForLayout = (1 << 1)\n};\n\n@interface BMASpinningLabel : UIView\n\n@property (nonatomic, nullable) NSString *title;\n@property (nonatomic, nullable) NSAttributedString *attributedTitle;\n@property (nonatomic, readonly, getter=isAnimating) BOOL animating;\n\n- (void)setAttributedTitle:(nullable NSAttributedString *)title\n             spinDirection:(BMASpinDirection)spinDirection\n              spinSettings:(BMASpinSettings)spinSettings;\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "BMASpinningLabel/BMASpinningLabel.m",
    "content": "//\n// Copyright (c) Badoo Trading Limited, 2010-present. All rights reserved.\n//\n\n#import \"BMASpinningLabel.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface BMASpinningLabelChange : NSObject\n\n@property (nonatomic, copy, nullable) NSAttributedString *attributedTitle;\n@property (nonatomic) BOOL spinUp;\n@property (nonatomic) BOOL animated;\n@property (nonatomic) BOOL waitingLayout;\n\n- (instancetype)initWithAttributedTitle:(nullable NSAttributedString *)title\n                                 spinUp:(BOOL)spinUp\n                               animated:(BOOL)animated\n                          waitingLayout:(BOOL)waitingLayout;\n\n@end\n\n@interface BMASpinningLabel ()\n\n@property (nonatomic) UILabel *disappearingLabel;\n@property (nonatomic) UILabel *appearingLabel;\n@property (nonatomic) UILabel *titleLabel;\n@property (nonatomic, nullable) BMASpinningLabelChange *nextChange;\n@property (nonatomic, readwrite, getter=isAnimating) BOOL animating;\n\n@end\n\nNS_ASSUME_NONNULL_END\n\n@implementation BMASpinningLabelChange\n\n- (instancetype)initWithAttributedTitle:(NSAttributedString *)title spinUp:(BOOL)spinUp animated:(BOOL)animated waitingLayout:(BOOL)waitingLayout {\n    self = [super init];\n    if (self) {\n        _attributedTitle = [title copy];\n        _spinUp = spinUp;\n        _animated = animated;\n        _waitingLayout = waitingLayout;\n    }\n    return self;\n}\n\n@end\n\n@implementation BMASpinningLabel\n\n- (instancetype)initWithFrame:(CGRect)frame {\n    self = [super initWithFrame:frame];\n    if (self) {\n        [self commonInit];\n    }\n    return self;\n}\n\n- (instancetype)initWithCoder:(NSCoder *)aDecoder {\n    self = [super initWithCoder:aDecoder];\n    if (self) {\n        [self commonInit];\n    }\n    return self;\n}\n\n- (void)commonInit {\n    if (_titleLabel != nil) {\n        return;\n    }\n    _titleLabel = [[UILabel alloc] init];\n    _disappearingLabel = [[UILabel alloc] init];\n    _appearingLabel = [[UILabel alloc] init];\n\n    [self addSubview:_titleLabel];\n    [self addSubview:_disappearingLabel];\n    [self addSubview:_appearingLabel];\n\n    self.backgroundColor = [UIColor clearColor];\n    self.clipsToBounds = NO;\n}\n\n#pragma mark - Overrides\n\n- (CGSize)sizeThatFits:(CGSize)size {\n    CGSize contentSize = [self intrinsicContentSize];\n    return CGSizeMake(MIN(size.width, contentSize.width), MIN(size.height, contentSize.height));\n}\n\n- (CGSize)intrinsicContentSize {\n    CGFloat height = CGRectGetHeight(self.bounds);\n    CGFloat width = self.titleLabel.attributedText.size.width;\n    if (self.nextChange) {\n        width = MAX(width, self.nextChange.attributedTitle.size.width);\n    }\n    return CGSizeMake(width, height);\n}\n\n- (void)layoutSubviews {\n    [super layoutSubviews];\n    NSAttributedString *title = self.titleLabel.attributedText;\n    CGFloat totalWidth = CGRectGetWidth(self.bounds);\n    CGFloat totalHeight = CGRectGetHeight(self.bounds);\n    CGSize titleSize = CGSizeMake(MIN(title.size.width, totalWidth), MIN(title.size.height, totalHeight));\n    self.titleLabel.frame = CGRectMake((totalWidth - titleSize.width) / 2,\n                                       (totalHeight - titleSize.height) / 2,\n                                       titleSize.width,\n                                       titleSize.height);\n\n    if (self.nextChange && self.nextChange.waitingLayout) {\n        [self applyNextChangeIfNeeded];\n    }\n}\n\n#pragma mark - Public API\n\n- (NSString *)title {\n    return self.nextChange ? self.nextChange.attributedTitle.string : self.titleLabel.text;\n}\n\n- (void)setTitle:(NSString *)title {\n    NSAttributedString *attributedTitle = [[NSAttributedString alloc] initWithString:title];\n    [self setAttributedTitle:attributedTitle];\n}\n\n- (NSAttributedString *)attributedTitle {\n    return self.nextChange ? self.nextChange.attributedTitle : self.titleLabel.attributedText;\n}\n\n- (void)setAttributedTitle:(NSAttributedString *)attributedTitle {\n    [self setAttributedTitle:attributedTitle spinDirection:BMASpinDirectionDownward spinSettings:BMASpinSettingsNone];\n}\n\n- (void)setAttributedTitle:(NSAttributedString *)newTitle spinDirection:(BMASpinDirection)spinDirection spinSettings:(BMASpinSettings)spinSettings {\n    BOOL spinUp = spinDirection == BMASpinDirectionUpward;\n    BOOL animated = (spinSettings & BMASpinSettingsAnimated) > 0;\n    BOOL waitForLayout = (spinSettings & BMASpinSettingsWaitForLayout) > 0;\n    if (animated && waitForLayout) {\n        self.nextChange = [[BMASpinningLabelChange alloc] initWithAttributedTitle:newTitle spinUp:spinUp animated:animated waitingLayout:YES];\n        [self setNeedsLayout];\n    } else {\n        [self setAttributedTitle:newTitle spinUp:spinUp animated:animated];\n    }\n}\n\n#pragma mark - Private\n\n- (void)setAttributedTitle:(NSAttributedString *)newTitle spinUp:(BOOL)spinUp animated:(BOOL)animated {\n    if ([self.titleLabel.attributedText isEqualToAttributedString:newTitle]) {\n        self.nextChange = nil;\n        return;\n    }\n\n    if (self.isAnimating) {\n        self.nextChange = [[BMASpinningLabelChange alloc] initWithAttributedTitle:newTitle spinUp:spinUp animated:animated waitingLayout:NO];\n        return;\n    }\n\n    NSAttributedString *oldTitle = self.titleLabel.attributedText;\n    self.titleLabel.attributedText = newTitle;\n    self.animating = YES;\n\n    CGFloat spinDirection = spinUp ? 1 : -1;\n    CGFloat totalWidth = CGRectGetWidth(self.bounds);\n    CGFloat totalHeight = CGRectGetHeight(self.bounds);\n    CGPoint boundsCenter = CGPointMake(totalWidth / 2, totalHeight / 2);\n\n    CGSize oldTitleSize = CGSizeMake(MIN(oldTitle.size.width, totalWidth), MIN(oldTitle.size.height, totalHeight));\n    CGSize newTitleSize = CGSizeMake(MIN(newTitle.size.width, totalWidth), MIN(newTitle.size.height, totalHeight));\n\n    CGFloat appearOffset = ceil(spinDirection * 0.8f * newTitleSize.height);\n    CATransform3D willAppearTransform = CATransform3DMakeTranslation(0, appearOffset, 0);\n    CATransform3D didAppearTransform = CATransform3DIdentity;\n\n    CGFloat disappearPerspective = -0.01f;\n    CGFloat disappearRotation = spinDirection * (CGFloat)M_PI_4;\n    CGFloat disappearOffset = ceil(-spinDirection * 1.5f * oldTitleSize.height);\n    CATransform3D willDisappearTransform = CATransform3DIdentity;\n    willDisappearTransform.m34 = disappearPerspective;\n    CATransform3D didDisappearTransform = CATransform3DRotate(willDisappearTransform, disappearRotation, 1, 0, 0);\n    didDisappearTransform = CATransform3DTranslate(didDisappearTransform, 0, disappearOffset, 0);\n\n    self.titleLabel.hidden = YES;\n    self.titleLabel.frame = CGRectMake((totalWidth - newTitleSize.width) / 2,\n                                       (totalHeight - newTitleSize.height) / 2,\n                                       newTitleSize.width,\n                                       newTitleSize.height);\n\n    self.disappearingLabel.hidden = NO;\n    self.disappearingLabel.attributedText = oldTitle;\n    self.disappearingLabel.layer.anchorPoint = CGPointMake(0.5f, spinUp ? 1.0f : 0.0f);\n    self.disappearingLabel.bounds = CGRectMake(0, 0, oldTitleSize.width, oldTitleSize.height);\n    self.disappearingLabel.center = CGPointMake(boundsCenter.x, boundsCenter.y + spinDirection * oldTitleSize.height / 2);\n    self.disappearingLabel.layer.transform = willDisappearTransform;\n    self.disappearingLabel.alpha = 1.0f;\n\n    self.appearingLabel.hidden = NO;\n    self.appearingLabel.attributedText = newTitle;\n    self.appearingLabel.bounds = CGRectMake(0, 0, newTitleSize.width, newTitleSize.height);\n    self.appearingLabel.center = boundsCenter;\n    self.appearingLabel.layer.transform = willAppearTransform;\n    self.appearingLabel.alpha = 0.0f;\n\n    __weak typeof(self) wSelf = self;\n    [self performWithAnimation:animated duration:[CATransaction animationDuration] animations:^{\n        __strong typeof(self) sSelf = wSelf;\n        sSelf.appearingLabel.alpha = 1.0f;\n        sSelf.appearingLabel.layer.transform = didAppearTransform;\n        sSelf.disappearingLabel.alpha = 0.0f;\n        sSelf.disappearingLabel.layer.transform = didDisappearTransform;\n    } completion:^(BOOL finished) {\n        __strong typeof(self) sSelf = wSelf;\n        sSelf.titleLabel.hidden = NO;\n        sSelf.disappearingLabel.hidden = YES;\n        sSelf.appearingLabel.hidden = YES;\n        sSelf.animating = NO;\n        [sSelf applyNextChangeIfNeeded];\n    }];\n}\n\n- (void)applyNextChangeIfNeeded {\n    if (self.nextChange) {\n        BMASpinningLabelChange *nextChange = self.nextChange;\n        self.nextChange = nil;\n        [self setAttributedTitle:nextChange.attributedTitle spinUp:nextChange.spinUp animated:nextChange.animated];\n    }\n}\n\n- (void)performWithAnimation:(BOOL)animated duration:(NSTimeInterval)duration animations:(void (^)(void))animations completion:(void (^)(BOOL finished))completion {\n    if (animated) {\n        [UIView animateWithDuration:duration animations:animations completion:completion];\n    } else {\n        if (animations) {\n            animations();\n        }\n        if (completion) {\n            completion(YES);\n        }\n    }\n}\n\n@end\n"
  },
  {
    "path": "BMASpinningLabel.podspec",
    "content": "Pod::Spec.new do |s|\n  s.name         = \"BMASpinningLabel\"\n  s.version      = \"1.0.0\"\n  s.summary      = \"Label with...\"\n  s.description  = <<-DESC\n                   BMASpinningLabel is an UI component which provides easy way for displaying and animating text inside it.\n                   Text changes animated as 'spins' (either downwards or upwards).\n                   DESC\n  s.homepage     = \"https://github.com/badoo/BMASpinningLabel.git\"\n  s.license      = { :type => \"MIT\"}\n  s.author       = { \"Viacheslav Radchenko\"  => \"viacheslav.radchenko@gmail.com\" }\n  s.platform     = :ios, \"9.0\"\n  s.source       = { :git => \"https://github.com/badoo/BMASpinningLabel.git\", :tag => s.version.to_s }\n  s.source_files = \"BMASpinningLabel/*\"\n  s.public_header_files = \"BMASpinningLabel/*.h\"\n  s.requires_arc = true\nend\n"
  },
  {
    "path": "Example/BMASpinningLabel/AppDelegate.h",
    "content": "//\n// Copyright (c) Badoo Trading Limited, 2010-present. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@interface AppDelegate : UIResponder <UIApplicationDelegate>\n\n@property (strong, nonatomic) UIWindow *window;\n\n\n@end\n\n"
  },
  {
    "path": "Example/BMASpinningLabel/AppDelegate.m",
    "content": "//\n// Copyright (c) Badoo Trading Limited, 2010-present. All rights reserved.\n//\n\n#import \"AppDelegate.h\"\n\n@interface AppDelegate ()\n\n@end\n\n@implementation AppDelegate\n\n\n- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {\n    // Override point for customization after application launch.\n    return YES;\n}\n\n\n- (void)applicationWillResignActive:(UIApplication *)application {\n    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.\n    // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.\n}\n\n\n- (void)applicationDidEnterBackground:(UIApplication *)application {\n    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.\n    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.\n}\n\n\n- (void)applicationWillEnterForeground:(UIApplication *)application {\n    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.\n}\n\n\n- (void)applicationDidBecomeActive:(UIApplication *)application {\n    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.\n}\n\n\n- (void)applicationWillTerminate:(UIApplication *)application {\n    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.\n}\n\n\n@end\n"
  },
  {
    "path": "Example/BMASpinningLabel/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"20x20\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"20x20\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Example/BMASpinningLabel/Base.lproj/LaunchScreen.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"11134\" systemVersion=\"15F34\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\" colorMatched=\"YES\" initialViewController=\"01J-lp-oVM\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"11106\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--View Controller-->\n        <scene sceneID=\"EHf-IW-A2E\">\n            <objects>\n                <viewController id=\"01J-lp-oVM\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"Llm-lL-Icb\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"xb3-aO-Qok\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"Ze5-6b-2t3\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"667\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"iYj-Kq-Ea1\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"53\" y=\"375\"/>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "Example/BMASpinningLabel/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"11762\" systemVersion=\"16C67\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" colorMatched=\"YES\" initialViewController=\"ZhZ-Lw-yuj\">\n    <device id=\"retina4_7\" orientation=\"portrait\">\n        <adaptation id=\"fullscreen\"/>\n    </device>\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"11757\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--Navigation Controller-->\n        <scene sceneID=\"Cgf-tQ-mA3\">\n            <objects>\n                <navigationController id=\"ZhZ-Lw-yuj\" sceneMemberID=\"viewController\">\n                    <navigationBar key=\"navigationBar\" contentMode=\"scaleToFill\" id=\"fgk-Jv-EmG\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"44\"/>\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                    </navigationBar>\n                    <connections>\n                        <segue destination=\"Scn-e6-hLF\" kind=\"relationship\" relationship=\"rootViewController\" id=\"vp2-kk-oQz\"/>\n                    </connections>\n                </navigationController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"bzr-nd-5pN\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-532\" y=\"153\"/>\n        </scene>\n        <!--View Controller-->\n        <scene sceneID=\"gJP-jm-GAW\">\n            <objects>\n                <tableViewController id=\"Scn-e6-hLF\" customClass=\"ViewController\" sceneMemberID=\"viewController\">\n                    <tableView key=\"view\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"prototypes\" style=\"plain\" separatorStyle=\"default\" rowHeight=\"44\" sectionHeaderHeight=\"28\" sectionFooterHeight=\"28\" id=\"bpg-gy-DCZ\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"667\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                        <connections>\n                            <outlet property=\"dataSource\" destination=\"Scn-e6-hLF\" id=\"Zyq-lS-37c\"/>\n                            <outlet property=\"delegate\" destination=\"Scn-e6-hLF\" id=\"Smz-kp-XJd\"/>\n                        </connections>\n                    </tableView>\n                    <navigationItem key=\"navigationItem\" id=\"Q38-pl-dJ3\"/>\n                </tableViewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"4Zp-30-VDF\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"369\" y=\"132\"/>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "Example/BMASpinningLabel/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n\t<key>LSRequiresIPhoneOS</key>\n\t<true/>\n\t<key>UILaunchStoryboardName</key>\n\t<string>LaunchScreen</string>\n\t<key>UIMainStoryboardFile</key>\n\t<string>Main</string>\n\t<key>UIRequiredDeviceCapabilities</key>\n\t<array>\n\t\t<string>armv7</string>\n\t</array>\n\t<key>UISupportedInterfaceOrientations</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/BMASpinningLabel/ViewController.h",
    "content": "//\n// Copyright (c) Badoo Trading Limited, 2010-present. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@interface ViewController : UITableViewController\n\n\n@end\n\n"
  },
  {
    "path": "Example/BMASpinningLabel/ViewController.m",
    "content": "//\n// Copyright (c) Badoo Trading Limited, 2010-present. All rights reserved.\n//\n\n#import \"ViewController.h\"\n#import <BMASpinningLabel/BMASpinningLabel.h>\n\n@interface ViewController ()\n\n@property (nonatomic) NSArray<NSString *> *tableViewItems;\n@property (nonatomic) BMASpinningLabel *titleLabel;\n\n@end\n\n@implementation ViewController\n\n- (void)viewDidLoad {\n    [super viewDidLoad];\n    self.tableView.rowHeight = 300;\n    [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@\"cell\"];\n    self.tableViewItems = @[\n                            @\"Section 1\",\n                            @\"Section Two\",\n                            @\"Third Section\",\n                            @\"Long Section Name\",\n                            @\"Very Very Long Section Name\",\n                            @\"Section 6\",\n                            @\"7th Section\",\n                            @\"Last Section\"\n                            ];\n}\n\n- (void)didReceiveMemoryWarning {\n    [super didReceiveMemoryWarning];\n    // Dispose of any resources that can be recreated.\n}\n\n- (BMASpinningLabel *)titleLabel {\n    if (!_titleLabel) {\n        _titleLabel = [[BMASpinningLabel alloc] initWithFrame:CGRectMake(0, 0, 100, 40)];\n    }\n    return _titleLabel;\n}\n\n#pragma mark - UITableViewDataSource\n\n- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {\n    return self.tableViewItems.count;\n}\n\n- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {\n    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@\"cell\" forIndexPath:indexPath];\n    cell.textLabel.text = self.tableViewItems[indexPath.row];\n    return cell;\n}\n\n#pragma mark - UITableViewDelegate\n\n- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {\n    [self updateNavigationBarTitle];\n}\n\n- (void)tableView:(UITableView *)tableView didEndDisplayingCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath*)indexPath {\n    [self updateNavigationBarTitle];\n}\n\n#pragma mark -\n\n- (void)updateNavigationBarTitle {\n    NSArray<NSIndexPath *> *indexPathsForVisibleRows = [self.tableView indexPathsForVisibleRows];\n    NSInteger indexOfFirstVisibleItem = [indexPathsForVisibleRows firstObject].row;\n    for (NSIndexPath *indexPath in indexPathsForVisibleRows) {\n        if (indexPath.row < indexOfFirstVisibleItem) {\n            indexOfFirstVisibleItem = indexPath.row;\n        }\n    }\n    NSString *title = indexOfFirstVisibleItem < self.tableViewItems.count ? self.tableViewItems[indexOfFirstVisibleItem] : nil;\n    [self updateNavigationBarTitleWithText:title];\n}\n\n- (void)updateNavigationBarTitleWithText:(NSString *)title {\n    if ([self.titleLabel.title isEqualToString:title]) {\n        return;\n    }\n    NSString *oldTitle = self.titleLabel.title;\n    NSInteger oldItemIndex = [self.tableViewItems indexOfObjectPassingTest:^BOOL(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {\n        return [obj isEqualToString:oldTitle];\n    }];\n    NSInteger newItemIndex = [self.tableViewItems indexOfObjectPassingTest:^BOOL(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {\n        return [obj isEqualToString:title];\n    }];\n    BMASpinDirection spinDirection = BMASpinDirectionUpward;\n    BMASpinSettings spinSettings = (oldTitle.length > 0 ? BMASpinSettingsAnimated | BMASpinSettingsWaitForLayout : BMASpinSettingsNone);\n    if (oldItemIndex != NSNotFound && newItemIndex != NSNotFound) {\n        spinDirection = (oldItemIndex < newItemIndex ? BMASpinDirectionUpward : BMASpinDirectionDownward);\n    } else if (newItemIndex != NSNotFound || oldItemIndex != NSNotFound) {\n        spinDirection = (newItemIndex != NSNotFound ? BMASpinDirectionUpward : BMASpinDirectionDownward);\n    } else {\n        spinSettings = BMASpinSettingsNone;\n    }\n    NSAttributedString *attributedTitle = [[self class] attributedNavigationBarTitleForText:title];\n    [self.titleLabel setAttributedTitle:attributedTitle spinDirection:spinDirection spinSettings:spinSettings];\n    self.navigationItem.titleView = nil;  // force re-layout\n    self.navigationItem.titleView = self.titleLabel;\n}\n\n+ (NSAttributedString *)attributedNavigationBarTitleForText:(NSString *)text {\n    NSDictionary *attributes = @{ NSFontAttributeName : [UIFont boldSystemFontOfSize:16] };\n    NSAttributedString *attributedText = [[NSAttributedString alloc] initWithString:text attributes:attributes];\n    return attributedText;\n}\n\n@end\n"
  },
  {
    "path": "Example/BMASpinningLabel/main.m",
    "content": "//\n// Copyright (c) Badoo Trading Limited, 2010-present. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n#import \"AppDelegate.h\"\n\nint main(int argc, char * argv[]) {\n    @autoreleasepool {\n        return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));\n    }\n}\n"
  },
  {
    "path": "Example/BMASpinningLabel.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t1F7D59BD492D16A0C481118A /* Pods_BMASpinningLabelTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 06D1C860057E321001EBF7AF /* Pods_BMASpinningLabelTests.framework */; };\n\t\t341515666F14D6696419BD94 /* Pods_BMASpinningLabel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 58E27F90720B4E5AC1972F26 /* Pods_BMASpinningLabel.framework */; };\n\t\tF64F4A441E77235B00A347B2 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F64F4A431E77235B00A347B2 /* main.m */; };\n\t\tF64F4A471E77235B00A347B2 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F64F4A461E77235B00A347B2 /* AppDelegate.m */; };\n\t\tF64F4A4A1E77235B00A347B2 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F64F4A491E77235B00A347B2 /* ViewController.m */; };\n\t\tF64F4A4D1E77235B00A347B2 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F64F4A4B1E77235B00A347B2 /* Main.storyboard */; };\n\t\tF64F4A4F1E77235B00A347B2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F64F4A4E1E77235B00A347B2 /* Assets.xcassets */; };\n\t\tF64F4A521E77235B00A347B2 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F64F4A501E77235B00A347B2 /* LaunchScreen.storyboard */; };\n\t\tF64F4A5D1E77235B00A347B2 /* BMASpinningLabelTests.m in Sources */ = {isa = PBXBuildFile; fileRef = F64F4A5C1E77235B00A347B2 /* BMASpinningLabelTests.m */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\tF64F4A591E77235B00A347B2 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = F64F4A371E77235B00A347B2 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = F64F4A3E1E77235B00A347B2;\n\t\t\tremoteInfo = BMASpinningLabel;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t06D1C860057E321001EBF7AF /* Pods_BMASpinningLabelTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BMASpinningLabelTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t3DDA34E089F1C68BB801916E /* Pods-BMASpinningLabel.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-BMASpinningLabel.release.xcconfig\"; path = \"Pods/Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t58E27F90720B4E5AC1972F26 /* Pods_BMASpinningLabel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BMASpinningLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t84119858548ACB67A1F27BC7 /* Pods-BMASpinningLabel.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-BMASpinningLabel.debug.xcconfig\"; path = \"Pods/Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t94BB4F59CBD233A524A5567A /* Pods-BMASpinningLabelTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-BMASpinningLabelTests.release.xcconfig\"; path = \"Pods/Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t95229175C4E617E1B4A2C4B3 /* Pods-BMASpinningLabelTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-BMASpinningLabelTests.debug.xcconfig\"; path = \"Pods/Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tF64F4A3F1E77235B00A347B2 /* BMASpinningLabel.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BMASpinningLabel.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tF64F4A431E77235B00A347B2 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = \"<group>\"; };\n\t\tF64F4A451E77235B00A347B2 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = \"<group>\"; };\n\t\tF64F4A461E77235B00A347B2 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = \"<group>\"; };\n\t\tF64F4A481E77235B00A347B2 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = \"<group>\"; };\n\t\tF64F4A491E77235B00A347B2 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = \"<group>\"; };\n\t\tF64F4A4C1E77235B00A347B2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\tF64F4A4E1E77235B00A347B2 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = \"<group>\"; };\n\t\tF64F4A511E77235B00A347B2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = \"<group>\"; };\n\t\tF64F4A531E77235B00A347B2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tF64F4A581E77235B00A347B2 /* BMASpinningLabelTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BMASpinningLabelTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tF64F4A5C1E77235B00A347B2 /* BMASpinningLabelTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BMASpinningLabelTests.m; sourceTree = \"<group>\"; };\n\t\tF64F4A5E1E77235B00A347B2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\tF64F4A3C1E77235B00A347B2 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t341515666F14D6696419BD94 /* Pods_BMASpinningLabel.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tF64F4A551E77235B00A347B2 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t1F7D59BD492D16A0C481118A /* Pods_BMASpinningLabelTests.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t0E942D9FF31287D047629209 /* Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t84119858548ACB67A1F27BC7 /* Pods-BMASpinningLabel.debug.xcconfig */,\n\t\t\t\t3DDA34E089F1C68BB801916E /* Pods-BMASpinningLabel.release.xcconfig */,\n\t\t\t\t95229175C4E617E1B4A2C4B3 /* Pods-BMASpinningLabelTests.debug.xcconfig */,\n\t\t\t\t94BB4F59CBD233A524A5567A /* Pods-BMASpinningLabelTests.release.xcconfig */,\n\t\t\t);\n\t\t\tname = Pods;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t8F81B7DBFDE79B9A261CEDED /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t58E27F90720B4E5AC1972F26 /* Pods_BMASpinningLabel.framework */,\n\t\t\t\t06D1C860057E321001EBF7AF /* Pods_BMASpinningLabelTests.framework */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tF64F4A361E77235B00A347B2 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tF64F4A411E77235B00A347B2 /* BMASpinningLabel */,\n\t\t\t\tF64F4A5B1E77235B00A347B2 /* BMASpinningLabelTests */,\n\t\t\t\tF64F4A401E77235B00A347B2 /* Products */,\n\t\t\t\t0E942D9FF31287D047629209 /* Pods */,\n\t\t\t\t8F81B7DBFDE79B9A261CEDED /* Frameworks */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tF64F4A401E77235B00A347B2 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tF64F4A3F1E77235B00A347B2 /* BMASpinningLabel.app */,\n\t\t\t\tF64F4A581E77235B00A347B2 /* BMASpinningLabelTests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tF64F4A411E77235B00A347B2 /* BMASpinningLabel */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tF64F4A451E77235B00A347B2 /* AppDelegate.h */,\n\t\t\t\tF64F4A461E77235B00A347B2 /* AppDelegate.m */,\n\t\t\t\tF64F4A481E77235B00A347B2 /* ViewController.h */,\n\t\t\t\tF64F4A491E77235B00A347B2 /* ViewController.m */,\n\t\t\t\tF64F4A4B1E77235B00A347B2 /* Main.storyboard */,\n\t\t\t\tF64F4A4E1E77235B00A347B2 /* Assets.xcassets */,\n\t\t\t\tF64F4A501E77235B00A347B2 /* LaunchScreen.storyboard */,\n\t\t\t\tF64F4A531E77235B00A347B2 /* Info.plist */,\n\t\t\t\tF64F4A421E77235B00A347B2 /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = BMASpinningLabel;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tF64F4A421E77235B00A347B2 /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tF64F4A431E77235B00A347B2 /* main.m */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tF64F4A5B1E77235B00A347B2 /* BMASpinningLabelTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tF64F4A5C1E77235B00A347B2 /* BMASpinningLabelTests.m */,\n\t\t\t\tF64F4A5E1E77235B00A347B2 /* Info.plist */,\n\t\t\t);\n\t\t\tpath = BMASpinningLabelTests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\tF64F4A3E1E77235B00A347B2 /* BMASpinningLabel */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = F64F4A6C1E77235B00A347B2 /* Build configuration list for PBXNativeTarget \"BMASpinningLabel\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t530598CD3663D86A6FBAA9AB /* [CP] Check Pods Manifest.lock */,\n\t\t\t\tF64F4A3B1E77235B00A347B2 /* Sources */,\n\t\t\t\tF64F4A3C1E77235B00A347B2 /* Frameworks */,\n\t\t\t\tF64F4A3D1E77235B00A347B2 /* Resources */,\n\t\t\t\tABA10831E1EB3E72FB8F0E1D /* [CP] Embed Pods Frameworks */,\n\t\t\t\t4D9EF852FBA736F3515BA739 /* [CP] Copy Pods Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = BMASpinningLabel;\n\t\t\tproductName = BMASpinningLabel;\n\t\t\tproductReference = F64F4A3F1E77235B00A347B2 /* BMASpinningLabel.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\tF64F4A571E77235B00A347B2 /* BMASpinningLabelTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = F64F4A6F1E77235B00A347B2 /* Build configuration list for PBXNativeTarget \"BMASpinningLabelTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tD23E523F1453B62F81FDA020 /* [CP] Check Pods Manifest.lock */,\n\t\t\t\tF64F4A541E77235B00A347B2 /* Sources */,\n\t\t\t\tF64F4A551E77235B00A347B2 /* Frameworks */,\n\t\t\t\tF64F4A561E77235B00A347B2 /* Resources */,\n\t\t\t\tAC7DEC30319C770414C0FD5A /* [CP] Embed Pods Frameworks */,\n\t\t\t\tAD84A9F6C4E24292FC4FDB32 /* [CP] Copy Pods Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\tF64F4A5A1E77235B00A347B2 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = BMASpinningLabelTests;\n\t\t\tproductName = BMASpinningLabelTests;\n\t\t\tproductReference = F64F4A581E77235B00A347B2 /* BMASpinningLabelTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\tF64F4A371E77235B00A347B2 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastUpgradeCheck = 0820;\n\t\t\t\tORGANIZATIONNAME = Badoo;\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\tF64F4A3E1E77235B00A347B2 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 8.2.1;\n\t\t\t\t\t\tProvisioningStyle = Automatic;\n\t\t\t\t\t};\n\t\t\t\t\tF64F4A571E77235B00A347B2 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 8.2.1;\n\t\t\t\t\t\tProvisioningStyle = Automatic;\n\t\t\t\t\t\tTestTargetID = F64F4A3E1E77235B00A347B2;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = F64F4A3A1E77235B00A347B2 /* Build configuration list for PBXProject \"BMASpinningLabel\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = English;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = F64F4A361E77235B00A347B2;\n\t\t\tproductRefGroup = F64F4A401E77235B00A347B2 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\tF64F4A3E1E77235B00A347B2 /* BMASpinningLabel */,\n\t\t\t\tF64F4A571E77235B00A347B2 /* BMASpinningLabelTests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\tF64F4A3D1E77235B00A347B2 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tF64F4A521E77235B00A347B2 /* LaunchScreen.storyboard in Resources */,\n\t\t\t\tF64F4A4F1E77235B00A347B2 /* Assets.xcassets in Resources */,\n\t\t\t\tF64F4A4D1E77235B00A347B2 /* Main.storyboard in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tF64F4A561E77235B00A347B2 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXShellScriptBuildPhase section */\n\t\t4D9EF852FBA736F3515BA739 /* [CP] Copy Pods Resources */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Copy Pods Resources\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${SRCROOT}/Pods/Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel-resources.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t530598CD3663D86A6FBAA9AB /* [CP] Check Pods Manifest.lock */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Check Pods Manifest.lock\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"diff \\\"${PODS_ROOT}/../Podfile.lock\\\" \\\"${PODS_ROOT}/Manifest.lock\\\" > /dev/null\\nif [ $? != 0 ] ; then\\n    # print error to STDERR\\n    echo \\\"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\\\" >&2\\n    exit 1\\nfi\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\tABA10831E1EB3E72FB8F0E1D /* [CP] Embed Pods Frameworks */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Embed Pods Frameworks\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${SRCROOT}/Pods/Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel-frameworks.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\tAC7DEC30319C770414C0FD5A /* [CP] Embed Pods Frameworks */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Embed Pods Frameworks\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${SRCROOT}/Pods/Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests-frameworks.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\tAD84A9F6C4E24292FC4FDB32 /* [CP] Copy Pods Resources */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Copy Pods Resources\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${SRCROOT}/Pods/Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests-resources.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\tD23E523F1453B62F81FDA020 /* [CP] Check Pods Manifest.lock */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"[CP] Check Pods Manifest.lock\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"diff \\\"${PODS_ROOT}/../Podfile.lock\\\" \\\"${PODS_ROOT}/Manifest.lock\\\" > /dev/null\\nif [ $? != 0 ] ; then\\n    # print error to STDERR\\n    echo \\\"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\\\" >&2\\n    exit 1\\nfi\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n/* End PBXShellScriptBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\tF64F4A3B1E77235B00A347B2 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tF64F4A4A1E77235B00A347B2 /* ViewController.m in Sources */,\n\t\t\t\tF64F4A471E77235B00A347B2 /* AppDelegate.m in Sources */,\n\t\t\t\tF64F4A441E77235B00A347B2 /* main.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tF64F4A541E77235B00A347B2 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tF64F4A5D1E77235B00A347B2 /* BMASpinningLabelTests.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\tF64F4A5A1E77235B00A347B2 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = F64F4A3E1E77235B00A347B2 /* BMASpinningLabel */;\n\t\t\ttargetProxy = F64F4A591E77235B00A347B2 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\tF64F4A4B1E77235B00A347B2 /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tF64F4A4C1E77235B00A347B2 /* Base */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tF64F4A501E77235B00A347B2 /* LaunchScreen.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tF64F4A511E77235B00A347B2 /* Base */,\n\t\t\t);\n\t\t\tname = LaunchScreen.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\tF64F4A6A1E77235B00A347B2 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tF64F4A6B1E77235B00A347B2 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tF64F4A6D1E77235B00A347B2 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 84119858548ACB67A1F27BC7 /* Pods-BMASpinningLabel.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tINFOPLIST_FILE = BMASpinningLabel/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = Badoo.BMASpinningLabel;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tF64F4A6E1E77235B00A347B2 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 3DDA34E089F1C68BB801916E /* Pods-BMASpinningLabel.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tINFOPLIST_FILE = BMASpinningLabel/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = Badoo.BMASpinningLabel;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tF64F4A701E77235B00A347B2 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 95229175C4E617E1B4A2C4B3 /* Pods-BMASpinningLabelTests.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tINFOPLIST_FILE = BMASpinningLabelTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = Badoo.BMASpinningLabelTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/BMASpinningLabel.app/BMASpinningLabel\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tF64F4A711E77235B00A347B2 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 94BB4F59CBD233A524A5567A /* Pods-BMASpinningLabelTests.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tINFOPLIST_FILE = BMASpinningLabelTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = Badoo.BMASpinningLabelTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/BMASpinningLabel.app/BMASpinningLabel\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\tF64F4A3A1E77235B00A347B2 /* Build configuration list for PBXProject \"BMASpinningLabel\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tF64F4A6A1E77235B00A347B2 /* Debug */,\n\t\t\t\tF64F4A6B1E77235B00A347B2 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tF64F4A6C1E77235B00A347B2 /* Build configuration list for PBXNativeTarget \"BMASpinningLabel\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tF64F4A6D1E77235B00A347B2 /* Debug */,\n\t\t\t\tF64F4A6E1E77235B00A347B2 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tF64F4A6F1E77235B00A347B2 /* Build configuration list for PBXNativeTarget \"BMASpinningLabelTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tF64F4A701E77235B00A347B2 /* Debug */,\n\t\t\t\tF64F4A711E77235B00A347B2 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = F64F4A371E77235B00A347B2 /* Project object */;\n}\n"
  },
  {
    "path": "Example/BMASpinningLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:BMASpinningLabel.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "Example/BMASpinningLabel.xcodeproj/xcshareddata/xcschemes/BMASpinningLabel.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0820\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"F64F4A3E1E77235B00A347B2\"\n               BuildableName = \"BMASpinningLabel.app\"\n               BlueprintName = \"BMASpinningLabel\"\n               ReferencedContainer = \"container:BMASpinningLabel.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      codeCoverageEnabled = \"YES\">\n      <Testables>\n         <TestableReference\n            skipped = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"F64F4A571E77235B00A347B2\"\n               BuildableName = \"BMASpinningLabelTests.xctest\"\n               BlueprintName = \"BMASpinningLabelTests\"\n               ReferencedContainer = \"container:BMASpinningLabel.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n         <TestableReference\n            skipped = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"F64F4A621E77235B00A347B2\"\n               BuildableName = \"BMASpinningLabelUITests.xctest\"\n               BlueprintName = \"BMASpinningLabelUITests\"\n               ReferencedContainer = \"container:BMASpinningLabel.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n      </Testables>\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"F64F4A3E1E77235B00A347B2\"\n            BuildableName = \"BMASpinningLabel.app\"\n            BlueprintName = \"BMASpinningLabel\"\n            ReferencedContainer = \"container:BMASpinningLabel.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"F64F4A3E1E77235B00A347B2\"\n            BuildableName = \"BMASpinningLabel.app\"\n            BlueprintName = \"BMASpinningLabel\"\n            ReferencedContainer = \"container:BMASpinningLabel.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"F64F4A3E1E77235B00A347B2\"\n            BuildableName = \"BMASpinningLabel.app\"\n            BlueprintName = \"BMASpinningLabel\"\n            ReferencedContainer = \"container:BMASpinningLabel.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Example/BMASpinningLabel.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:BMASpinningLabel.xcodeproj\">\n   </FileRef>\n   <FileRef\n      location = \"group:Pods/Pods.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "Example/BMASpinningLabelTests/BMASpinningLabelTests.m",
    "content": "//\n// Copyright (c) Badoo Trading Limited, 2010-present. All rights reserved.\n//\n\n@import XCTest;\n#import <BMASpinningLabel/BMASpinningLabel.h>\n\n@interface BMASpinningLabelTests : XCTestCase\n\n@property (nonatomic) NSString *title;\n@property (nonatomic) NSAttributedString *attributedTitle;\n@property (nonatomic) BMASpinningLabel *label;\n\n@end\n\n@implementation BMASpinningLabelTests\n\n- (void)setUp {\n    [super setUp];\n    self.label = [[BMASpinningLabel alloc] init];\n    self.title = @\"title\";\n    self.attributedTitle = [[NSAttributedString alloc] initWithString:self.title];\n}\n\n- (void)tearDown {\n    self.label = nil;\n    self.title = nil;\n    self.attributedTitle= nil;\n    [super tearDown];\n}\n\n- (void)testThat_WhenCreated_ThenTitleIsNil {\n    XCTAssertNil(self.label.title);\n}\n\n- (void)testThat_GivenLabel_WhenSetTitle_ThenLabelRetunsNewTitleValue {\n    // Test\n    self.label.title = self.title;\n    \n    // Verify\n    XCTAssertEqualObjects(self.label.title, self.title);\n}\n\n- (void)testThat_GivenEmptyLabel_WhenSetTitleWithAnimation_ThenLabelRetunsNewTitleValue {\n    // Test\n    [self.label setAttributedTitle:self.attributedTitle spinDirection:BMASpinDirectionUpward spinSettings:BMASpinSettingsAnimated];\n    \n    // Verify\n    XCTAssertEqualObjects(self.label.attributedTitle, self.attributedTitle);\n}\n\n- (void)testThat_GivenLabelWithTitle_WhenSetTitleWithAnimation_ThenLabelRetunsNewTitleValue {\n    // Setup\n    [self setupLabelWithInitialTitle:@\"initial\" runningAnimation:nil pendingAnimation:nil];\n\n    // Test\n    [self.label setAttributedTitle:self.attributedTitle spinDirection:BMASpinDirectionUpward spinSettings:BMASpinSettingsAnimated];\n\n    // Verify\n    XCTAssertEqualObjects(self.label.attributedTitle, self.attributedTitle);\n}\n\n- (void)testThat_GivenLabelWithTitleAndRunningAnimation_WhenSetTitleWithAnimation_ThenLabelRetunsNewTitleValue {\n    // Setup\n    [self setupLabelWithInitialTitle:@\"initial\" runningAnimation:@\"current\" pendingAnimation:nil];\n    \n    // Test\n    [self.label setAttributedTitle:self.attributedTitle spinDirection:BMASpinDirectionUpward spinSettings:BMASpinSettingsAnimated];\n    \n    // Verify\n    XCTAssertEqualObjects(self.label.attributedTitle, self.attributedTitle);\n}\n\n- (void)testThat_GivenLabelWithTitleAndRunningAnimation_WhenSetTitleWithoutAnimation_ThenLabelRetunsNewTitleValue {\n    // Setup\n    [self setupLabelWithInitialTitle:@\"initial\" runningAnimation:@\"current\" pendingAnimation:nil];\n    \n    // Test\n    self.label.attributedTitle = self.attributedTitle;\n\n    // Verify\n    XCTAssertEqualObjects(self.label.attributedTitle, self.attributedTitle);\n}\n\n- (void)testThat_GivenLabelWithTitle_WhenSetTitleWithAnimation_ThenChangePerformedWithAnimation {\n    // Setup\n    [self setupLabelWithInitialTitle:@\"initial\" runningAnimation:nil pendingAnimation:nil];\n    \n    // Test\n    [self.label setAttributedTitle:self.attributedTitle spinDirection:BMASpinDirectionUpward spinSettings:BMASpinSettingsAnimated];\n    \n    // Verify\n    XCTAssertTrue(self.label.isAnimating);\n}\n\n- (void)testThat_GivenLabelWithTitle_WhenSettitleWithAnimationAndWaitForLayout_ThenAnimationNotStartedImmediately {\n    // Setup\n    [self setupLabelWithInitialTitle:@\"initial\" runningAnimation:nil pendingAnimation:nil];\n    \n    // Test\n    [self.label setAttributedTitle:self.attributedTitle spinDirection:BMASpinDirectionUpward spinSettings:BMASpinSettingsAnimated | BMASpinSettingsWaitForLayout];\n    \n    // Verify\n    XCTAssertFalse(self.label.isAnimating);\n}\n\n- (void)testThat_GivenLabelWithTitleAndPendingAnimationAfterLayout_WhenUpdateLayout_ThenChangePerformedWithAnimation {\n    // Setup\n    [self setupLabelWithInitialTitle:@\"initial\" runningAnimation:nil pendingAnimation:nil];\n    [self.label setAttributedTitle:self.attributedTitle spinDirection:BMASpinDirectionUpward spinSettings:BMASpinSettingsAnimated | BMASpinSettingsWaitForLayout];\n    \n    // Test\n    [self.label layoutIfNeeded];\n    \n    // Verify\n    XCTAssertTrue(self.label.isAnimating);\n    XCTAssertEqualObjects(self.label.attributedTitle, self.attributedTitle);\n}\n\n#pragma mark - Helpers\n\n- (void)setupLabelWithInitialTitle:(NSString *)initialTitle runningAnimation:(NSString *)newTitle pendingAnimation:(NSString *)pendingTitle {\n    if (initialTitle) {\n        self.label.title = initialTitle;\n    }\n    if (newTitle) {\n        [self.label setAttributedTitle:[[NSAttributedString alloc] initWithString:newTitle] spinDirection:BMASpinDirectionUpward spinSettings:BMASpinSettingsAnimated];\n    }\n    if (pendingTitle) {\n        [self.label setAttributedTitle:[[NSAttributedString alloc] initWithString:pendingTitle] spinDirection:BMASpinDirectionUpward spinSettings:BMASpinSettingsAnimated];\n    }\n}\n\n@end\n"
  },
  {
    "path": "Example/BMASpinningLabelTests/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>BNDL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Podfile",
    "content": "platform :ios, '9.0'\nuse_frameworks!\n\ntarget :BMASpinningLabel do\n  pod 'BMASpinningLabel', :path => '..'\n  target :BMASpinningLabelTests do\n    inherit! :search_paths\n  end\nend\n"
  },
  {
    "path": "Example/Pods/Local Podspecs/BMASpinningLabel.podspec.json",
    "content": "{\n  \"name\": \"BMASpinningLabel\",\n  \"version\": \"1.0.0\",\n  \"summary\": \"Label with...\",\n  \"description\": \"BMACollectionBatchUpdates` is a set of classes and extensions to UICollectionView and UITableView to perform safe batch updates of these views.\",\n  \"homepage\": \"https://github.com/badoo/BMASpinningLabel.git\",\n  \"license\": {\n    \"type\": \"MIT\"\n  },\n  \"authors\": {\n    \"Viacheslav Radchenko\": \"viacheslav.radchenko@gmail.com\"\n  },\n  \"platforms\": {\n    \"ios\": \"9.0\"\n  },\n  \"source\": {\n    \"git\": \"https://github.com/badoo/BMASpinningLabel.git\",\n    \"tag\": \"1.0.0\"\n  },\n  \"source_files\": \"BMASpinningLabel/*\",\n  \"public_header_files\": \"BMASpinningLabel/*.h\",\n  \"requires_arc\": true\n}\n"
  },
  {
    "path": "Example/Pods/Pods.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t0B373A6FC5E17679733C47DEC1746486 /* Pods-BMASpinningLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B70C0DC4C187E792482B4CAC8B3489FF /* Pods-BMASpinningLabel-dummy.m */; };\n\t\t1D5E02F88C6E2D6DC4CB91160E9CA31F /* BMASpinningLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C2AB455DF01CC04A48B1DF1DAFF31FA8 /* BMASpinningLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t24D09DBE6779C2CF4B01C6FED4085FE5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */; };\n\t\t446A5F444D7EE35B019E17F7B33987C0 /* BMASpinningLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 762C3CDF3BBB1AFCFA448C51BC3346A8 /* BMASpinningLabel-dummy.m */; };\n\t\t5EFFFD2A53BBD260BEDC1DFCE410AC65 /* Pods-BMASpinningLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D55400C8E35FAC5E84E09B1D6017CC8F /* Pods-BMASpinningLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t5F6E497A915749508AC4CDADAD987337 /* Pods-BMASpinningLabelTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D9F8239427790EB147139D6290E61FE /* Pods-BMASpinningLabelTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t7AF2361C041EBD6B56C98AFCA28EB858 /* BMASpinningLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 807AFA29E9C36E8914F2A0849993A0A8 /* BMASpinningLabel.m */; };\n\t\tC9481B2B982118F4F88E04975155441F /* BMASpinningLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 41E0688E3B99E993DA8843200E84CF08 /* BMASpinningLabel.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tD9A53E8EF1C63168F8466CA35C714FA6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */; };\n\t\tE35F8F18E8708CD0F36EFF632BAD10C7 /* Pods-BMASpinningLabelTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B1D3A0F7DCFAB676617FDB3EE42920A /* Pods-BMASpinningLabelTests-dummy.m */; };\n\t\tF69A74AAEC7A1C3888E4EE5183B0ABA0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\tC7205D33439C44F7412094147444253E /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 9A0BCFE9E9733ECFC76EA65836BE33ED;\n\t\t\tremoteInfo = BMASpinningLabel;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t037F7B11FF272D52E89853D0C8B40AAB /* Pods_BMASpinningLabelTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_BMASpinningLabelTests.framework; path = \"Pods-BMASpinningLabelTests.framework\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t0B1D3A0F7DCFAB676617FDB3EE42920A /* Pods-BMASpinningLabelTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Pods-BMASpinningLabelTests-dummy.m\"; sourceTree = \"<group>\"; };\n\t\t0CF7A31FEE41AD187B7C73D2A7EE2D1B /* Pods-BMASpinningLabelTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = \"Pods-BMASpinningLabelTests-acknowledgements.markdown\"; sourceTree = \"<group>\"; };\n\t\t18154C3053A5E21155B46E13306781E2 /* BMASpinningLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = BMASpinningLabel.modulemap; sourceTree = \"<group>\"; };\n\t\t23BBC94CBE0141C2A10ECC61EFB35F12 /* Pods-BMASpinningLabel.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-BMASpinningLabel.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t255250EE6C19586E8A8CED437CF4E661 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t32F94EFBF8F1BEB77B46E3C8FA5140B1 /* BMASpinningLabel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = BMASpinningLabel.framework; path = BMASpinningLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t39802CF25AD0C05F2BA5D1B2D0FAE0BB /* Pods-BMASpinningLabelTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-BMASpinningLabelTests-resources.sh\"; sourceTree = \"<group>\"; };\n\t\t3F976A26BDC5D8CDC47FB178C6601426 /* Pods-BMASpinningLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = \"Pods-BMASpinningLabel.modulemap\"; sourceTree = \"<group>\"; };\n\t\t40D97DC0F171AC61099FF73203AB1F75 /* Pods-BMASpinningLabelTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-BMASpinningLabelTests-acknowledgements.plist\"; sourceTree = \"<group>\"; };\n\t\t41E0688E3B99E993DA8843200E84CF08 /* BMASpinningLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BMASpinningLabel.h; sourceTree = \"<group>\"; };\n\t\t4D4F993985323668EED1DE4BE76EED86 /* Pods_BMASpinningLabel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_BMASpinningLabel.framework; path = \"Pods-BMASpinningLabel.framework\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t4EAF4135BD4CE45B36AF12888249F3F6 /* Pods-BMASpinningLabelTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-BMASpinningLabelTests-frameworks.sh\"; sourceTree = \"<group>\"; };\n\t\t5BB6369F63FE3B3A98CCA38FDFC3B26F /* BMASpinningLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"BMASpinningLabel-prefix.pch\"; sourceTree = \"<group>\"; };\n\t\t5D1316032251363BD9D6F05680C32D05 /* Pods-BMASpinningLabel-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = \"Pods-BMASpinningLabel-acknowledgements.markdown\"; sourceTree = \"<group>\"; };\n\t\t712ED897B202D1940371CFD316976294 /* Pods-BMASpinningLabelTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-BMASpinningLabelTests.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t762C3CDF3BBB1AFCFA448C51BC3346A8 /* BMASpinningLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"BMASpinningLabel-dummy.m\"; sourceTree = \"<group>\"; };\n\t\t807AFA29E9C36E8914F2A0849993A0A8 /* BMASpinningLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BMASpinningLabel.m; sourceTree = \"<group>\"; };\n\t\t8475D04AD4ACC9D8E9A44C04B7ABA282 /* Pods-BMASpinningLabel-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-BMASpinningLabel-resources.sh\"; sourceTree = \"<group>\"; };\n\t\t8A28C8DB0DF4D1B090E56D558F8CCDE8 /* Pods-BMASpinningLabel-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-BMASpinningLabel-frameworks.sh\"; sourceTree = \"<group>\"; };\n\t\t8D9F8239427790EB147139D6290E61FE /* Pods-BMASpinningLabelTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Pods-BMASpinningLabelTests-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };\n\t\tA8ACF3C7444E1F6A1CC92FF8AC619C69 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tB3CB326996B552C3585256666038A1D6 /* Pods-BMASpinningLabel-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-BMASpinningLabel-acknowledgements.plist\"; sourceTree = \"<group>\"; };\n\t\tB6BA22FDD759827A8E4C880B61748717 /* Pods-BMASpinningLabel.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-BMASpinningLabel.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tB70C0DC4C187E792482B4CAC8B3489FF /* Pods-BMASpinningLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Pods-BMASpinningLabel-dummy.m\"; sourceTree = \"<group>\"; };\n\t\tC2AB455DF01CC04A48B1DF1DAFF31FA8 /* BMASpinningLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"BMASpinningLabel-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\tC3436A17F87988A29E3D64A8492004CC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tCBB3DE36805AF21409EC968A9691732F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };\n\t\tD55400C8E35FAC5E84E09B1D6017CC8F /* Pods-BMASpinningLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Pods-BMASpinningLabel-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\tDB2C483054F798DDA8C9A7DDC444DBD3 /* Pods-BMASpinningLabelTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-BMASpinningLabelTests.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tE9B183E16D0189060F6F03AD4578A782 /* BMASpinningLabel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BMASpinningLabel.xcconfig; sourceTree = \"<group>\"; };\n\t\tEEC24EF247918A97328DBE2CFDCBA1B1 /* Pods-BMASpinningLabelTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = \"Pods-BMASpinningLabelTests.modulemap\"; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t9754D0F7221D8D0B98F0E5A39D391222 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tD9A53E8EF1C63168F8466CA35C714FA6 /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tB39D340D24539BAB2E19BE5943AC36A1 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t24D09DBE6779C2CF4B01C6FED4085FE5 /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tF8E2AB9C4FF77CDDA5EA5FE51EF23BB6 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tF69A74AAEC7A1C3888E4EE5183B0ABA0 /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t7531C8F8DE19F1AA3C8A7AC97A91DC29 /* iOS */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tCBB3DE36805AF21409EC968A9691732F /* Foundation.framework */,\n\t\t\t);\n\t\t\tname = iOS;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t7DB346D0F39D3F0E887471402A8071AB = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,\n\t\t\t\tDA36F800624BD716B92970DB01EF0049 /* Development Pods */,\n\t\t\t\tBC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */,\n\t\t\t\tF780DCE62180D10D942D537896AE327C /* Products */,\n\t\t\t\t9F410788B1613D25497947B152B33720 /* Targets Support Files */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9F410788B1613D25497947B152B33720 /* Targets Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tDA83665EB9B81B80B7F151E44DC22EAD /* Pods-BMASpinningLabel */,\n\t\t\t\tCA12BB3BE89ED655CEBDDCEF5BEAF8B9 /* Pods-BMASpinningLabelTests */,\n\t\t\t);\n\t\t\tname = \"Targets Support Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tBC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t7531C8F8DE19F1AA3C8A7AC97A91DC29 /* iOS */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC431E0F4A1D0394E5113939C7BFA2D25 /* BMASpinningLabel */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t41E0688E3B99E993DA8843200E84CF08 /* BMASpinningLabel.h */,\n\t\t\t\t807AFA29E9C36E8914F2A0849993A0A8 /* BMASpinningLabel.m */,\n\t\t\t);\n\t\t\tname = BMASpinningLabel;\n\t\t\tpath = BMASpinningLabel;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC457D933C12505A25177DC4424BEE39C /* Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t18154C3053A5E21155B46E13306781E2 /* BMASpinningLabel.modulemap */,\n\t\t\t\tE9B183E16D0189060F6F03AD4578A782 /* BMASpinningLabel.xcconfig */,\n\t\t\t\t762C3CDF3BBB1AFCFA448C51BC3346A8 /* BMASpinningLabel-dummy.m */,\n\t\t\t\t5BB6369F63FE3B3A98CCA38FDFC3B26F /* BMASpinningLabel-prefix.pch */,\n\t\t\t\tC2AB455DF01CC04A48B1DF1DAFF31FA8 /* BMASpinningLabel-umbrella.h */,\n\t\t\t\tC3436A17F87988A29E3D64A8492004CC /* Info.plist */,\n\t\t\t);\n\t\t\tname = \"Support Files\";\n\t\t\tpath = \"Example/Pods/Target Support Files/BMASpinningLabel\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCA12BB3BE89ED655CEBDDCEF5BEAF8B9 /* Pods-BMASpinningLabelTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t255250EE6C19586E8A8CED437CF4E661 /* Info.plist */,\n\t\t\t\tEEC24EF247918A97328DBE2CFDCBA1B1 /* Pods-BMASpinningLabelTests.modulemap */,\n\t\t\t\t0CF7A31FEE41AD187B7C73D2A7EE2D1B /* Pods-BMASpinningLabelTests-acknowledgements.markdown */,\n\t\t\t\t40D97DC0F171AC61099FF73203AB1F75 /* Pods-BMASpinningLabelTests-acknowledgements.plist */,\n\t\t\t\t0B1D3A0F7DCFAB676617FDB3EE42920A /* Pods-BMASpinningLabelTests-dummy.m */,\n\t\t\t\t4EAF4135BD4CE45B36AF12888249F3F6 /* Pods-BMASpinningLabelTests-frameworks.sh */,\n\t\t\t\t39802CF25AD0C05F2BA5D1B2D0FAE0BB /* Pods-BMASpinningLabelTests-resources.sh */,\n\t\t\t\t8D9F8239427790EB147139D6290E61FE /* Pods-BMASpinningLabelTests-umbrella.h */,\n\t\t\t\tDB2C483054F798DDA8C9A7DDC444DBD3 /* Pods-BMASpinningLabelTests.debug.xcconfig */,\n\t\t\t\t712ED897B202D1940371CFD316976294 /* Pods-BMASpinningLabelTests.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Pods-BMASpinningLabelTests\";\n\t\t\tpath = \"Target Support Files/Pods-BMASpinningLabelTests\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tDA36F800624BD716B92970DB01EF0049 /* Development Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tF40F63C9E01F65FE60D4D76C5B500E70 /* BMASpinningLabel */,\n\t\t\t);\n\t\t\tname = \"Development Pods\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tDA83665EB9B81B80B7F151E44DC22EAD /* Pods-BMASpinningLabel */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tA8ACF3C7444E1F6A1CC92FF8AC619C69 /* Info.plist */,\n\t\t\t\t3F976A26BDC5D8CDC47FB178C6601426 /* Pods-BMASpinningLabel.modulemap */,\n\t\t\t\t5D1316032251363BD9D6F05680C32D05 /* Pods-BMASpinningLabel-acknowledgements.markdown */,\n\t\t\t\tB3CB326996B552C3585256666038A1D6 /* Pods-BMASpinningLabel-acknowledgements.plist */,\n\t\t\t\tB70C0DC4C187E792482B4CAC8B3489FF /* Pods-BMASpinningLabel-dummy.m */,\n\t\t\t\t8A28C8DB0DF4D1B090E56D558F8CCDE8 /* Pods-BMASpinningLabel-frameworks.sh */,\n\t\t\t\t8475D04AD4ACC9D8E9A44C04B7ABA282 /* Pods-BMASpinningLabel-resources.sh */,\n\t\t\t\tD55400C8E35FAC5E84E09B1D6017CC8F /* Pods-BMASpinningLabel-umbrella.h */,\n\t\t\t\tB6BA22FDD759827A8E4C880B61748717 /* Pods-BMASpinningLabel.debug.xcconfig */,\n\t\t\t\t23BBC94CBE0141C2A10ECC61EFB35F12 /* Pods-BMASpinningLabel.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Pods-BMASpinningLabel\";\n\t\t\tpath = \"Target Support Files/Pods-BMASpinningLabel\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tF40F63C9E01F65FE60D4D76C5B500E70 /* BMASpinningLabel */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC431E0F4A1D0394E5113939C7BFA2D25 /* BMASpinningLabel */,\n\t\t\t\tC457D933C12505A25177DC4424BEE39C /* Support Files */,\n\t\t\t);\n\t\t\tname = BMASpinningLabel;\n\t\t\tpath = ../..;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tF780DCE62180D10D942D537896AE327C /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t32F94EFBF8F1BEB77B46E3C8FA5140B1 /* BMASpinningLabel.framework */,\n\t\t\t\t4D4F993985323668EED1DE4BE76EED86 /* Pods_BMASpinningLabel.framework */,\n\t\t\t\t037F7B11FF272D52E89853D0C8B40AAB /* Pods_BMASpinningLabelTests.framework */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXHeadersBuildPhase section */\n\t\t61383A00C94C83D9E6645565C418BAE0 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t5EFFFD2A53BBD260BEDC1DFCE410AC65 /* Pods-BMASpinningLabel-umbrella.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t80513183A1E29DC02832066EB7DAA42F /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t5F6E497A915749508AC4CDADAD987337 /* Pods-BMASpinningLabelTests-umbrella.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t985BCD29D8AD5A2A16282DCB15C99794 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t1D5E02F88C6E2D6DC4CB91160E9CA31F /* BMASpinningLabel-umbrella.h in Headers */,\n\t\t\t\tC9481B2B982118F4F88E04975155441F /* BMASpinningLabel.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXHeadersBuildPhase section */\n\n/* Begin PBXNativeTarget section */\n\t\t58D22365453EF7FF5F6939D3A5EA6BDF /* Pods-BMASpinningLabel */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = F53EF2A1D614F98E565AB6F77EB3E63E /* Build configuration list for PBXNativeTarget \"Pods-BMASpinningLabel\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t91414E9381BAF36C8D07815766F3A394 /* Sources */,\n\t\t\t\tB39D340D24539BAB2E19BE5943AC36A1 /* Frameworks */,\n\t\t\t\t61383A00C94C83D9E6645565C418BAE0 /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\tC2F8CE85FEA6D5177553AD5B6FDFCBFE /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"Pods-BMASpinningLabel\";\n\t\t\tproductName = \"Pods-BMASpinningLabel\";\n\t\t\tproductReference = 4D4F993985323668EED1DE4BE76EED86 /* Pods_BMASpinningLabel.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t5D5123086F22E66D6FE84DED12DB2C05 /* Pods-BMASpinningLabelTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = AE346AFE58DE1D2E09B12CDA591AC2E8 /* Build configuration list for PBXNativeTarget \"Pods-BMASpinningLabelTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t7ED6BD09438BCAD258099EC113026F30 /* Sources */,\n\t\t\t\tF8E2AB9C4FF77CDDA5EA5FE51EF23BB6 /* Frameworks */,\n\t\t\t\t80513183A1E29DC02832066EB7DAA42F /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = \"Pods-BMASpinningLabelTests\";\n\t\t\tproductName = \"Pods-BMASpinningLabelTests\";\n\t\t\tproductReference = 037F7B11FF272D52E89853D0C8B40AAB /* Pods_BMASpinningLabelTests.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t9A0BCFE9E9733ECFC76EA65836BE33ED /* BMASpinningLabel */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = A90D03ED09E2ABB38C008B14BAC0EF5E /* Build configuration list for PBXNativeTarget \"BMASpinningLabel\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t9D674074715A54AA181215291977A014 /* Sources */,\n\t\t\t\t9754D0F7221D8D0B98F0E5A39D391222 /* Frameworks */,\n\t\t\t\t985BCD29D8AD5A2A16282DCB15C99794 /* Headers */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = BMASpinningLabel;\n\t\t\tproductName = BMASpinningLabel;\n\t\t\tproductReference = 32F94EFBF8F1BEB77B46E3C8FA5140B1 /* BMASpinningLabel.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\tD41D8CD98F00B204E9800998ECF8427E /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastSwiftUpdateCheck = 0730;\n\t\t\t\tLastUpgradeCheck = 0700;\n\t\t\t};\n\t\t\tbuildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject \"Pods\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = English;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t);\n\t\t\tmainGroup = 7DB346D0F39D3F0E887471402A8071AB;\n\t\t\tproductRefGroup = F780DCE62180D10D942D537896AE327C /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t9A0BCFE9E9733ECFC76EA65836BE33ED /* BMASpinningLabel */,\n\t\t\t\t58D22365453EF7FF5F6939D3A5EA6BDF /* Pods-BMASpinningLabel */,\n\t\t\t\t5D5123086F22E66D6FE84DED12DB2C05 /* Pods-BMASpinningLabelTests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t7ED6BD09438BCAD258099EC113026F30 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tE35F8F18E8708CD0F36EFF632BAD10C7 /* Pods-BMASpinningLabelTests-dummy.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t91414E9381BAF36C8D07815766F3A394 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t0B373A6FC5E17679733C47DEC1746486 /* Pods-BMASpinningLabel-dummy.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9D674074715A54AA181215291977A014 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t446A5F444D7EE35B019E17F7B33987C0 /* BMASpinningLabel-dummy.m in Sources */,\n\t\t\t\t7AF2361C041EBD6B56C98AFCA28EB858 /* BMASpinningLabel.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\tC2F8CE85FEA6D5177553AD5B6FDFCBFE /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = BMASpinningLabel;\n\t\t\ttarget = 9A0BCFE9E9733ECFC76EA65836BE33ED /* BMASpinningLabel */;\n\t\t\ttargetProxy = C7205D33439C44F7412094147444253E /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin XCBuildConfiguration section */\n\t\t455F7C092CF8BAF3E3EEE317591B2C4B /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = E9B183E16D0189060F6F03AD4578A782 /* BMASpinningLabel.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/BMASpinningLabel/BMASpinningLabel-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/BMASpinningLabel/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/BMASpinningLabel/BMASpinningLabel.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tPRODUCT_NAME = BMASpinningLabel;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t48C3A0E48A778D247B7C84DF91C53D98 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = E9B183E16D0189060F6F03AD4578A782 /* BMASpinningLabel.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/BMASpinningLabel/BMASpinningLabel-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/BMASpinningLabel/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/BMASpinningLabel/BMASpinningLabel.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tPRODUCT_NAME = BMASpinningLabel;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t58739EC1F9A59F3F2E8C524914DB8740 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 23BBC94CBE0141C2A10ECC61EFB35F12 /* Pods-BMASpinningLabel.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-BMASpinningLabel/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = Pods_BMASpinningLabel;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t59B042A655B7C20CBAB90E385BF4E4C7 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCODE_SIGNING_REQUIRED = NO;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"POD_CONFIGURATION_DEBUG=1\",\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_SYMBOLS_PRIVATE_EXTERN = NO;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/;\n\t\t\t\tSTRIP_INSTALLED_PRODUCT = NO;\n\t\t\t\tSYMROOT = \"${SRCROOT}/../build\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t7D7F0D1BF83B37B86CD3F8BA7E058D3F /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = B6BA22FDD759827A8E4C880B61748717 /* Pods-BMASpinningLabel.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-BMASpinningLabel/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = Pods_BMASpinningLabel;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tB7324857C38B065FEB1EEE3105C2367A /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCODE_SIGNING_REQUIRED = NO;\n\t\t\t\tCOPY_PHASE_STRIP = YES;\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"POD_CONFIGURATION_RELEASE=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/;\n\t\t\t\tSTRIP_INSTALLED_PRODUCT = NO;\n\t\t\t\tSYMROOT = \"${SRCROOT}/../build\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tC4928E08FCDC401FA44536F4861BD8CC /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 712ED897B202D1940371CFD316976294 /* Pods-BMASpinningLabelTests.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-BMASpinningLabelTests/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = Pods_BMASpinningLabelTests;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tEF652AB73DAA358DEBC0422A451E097E /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = DB2C483054F798DDA8C9A7DDC444DBD3 /* Pods-BMASpinningLabelTests.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-BMASpinningLabelTests/Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests.modulemap\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = Pods_BMASpinningLabelTests;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject \"Pods\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t59B042A655B7C20CBAB90E385BF4E4C7 /* Debug */,\n\t\t\t\tB7324857C38B065FEB1EEE3105C2367A /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tA90D03ED09E2ABB38C008B14BAC0EF5E /* Build configuration list for PBXNativeTarget \"BMASpinningLabel\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t48C3A0E48A778D247B7C84DF91C53D98 /* Debug */,\n\t\t\t\t455F7C092CF8BAF3E3EEE317591B2C4B /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tAE346AFE58DE1D2E09B12CDA591AC2E8 /* Build configuration list for PBXNativeTarget \"Pods-BMASpinningLabelTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tEF652AB73DAA358DEBC0422A451E097E /* Debug */,\n\t\t\t\tC4928E08FCDC401FA44536F4861BD8CC /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tF53EF2A1D614F98E565AB6F77EB3E63E /* Build configuration list for PBXNativeTarget \"Pods-BMASpinningLabel\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t7D7F0D1BF83B37B86CD3F8BA7E058D3F /* Debug */,\n\t\t\t\t58739EC1F9A59F3F2E8C524914DB8740 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/BMASpinningLabel/BMASpinningLabel-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_BMASpinningLabel : NSObject\n@end\n@implementation PodsDummy_BMASpinningLabel\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/BMASpinningLabel/BMASpinningLabel-prefix.pch",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/BMASpinningLabel/BMASpinningLabel-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n#import \"BMASpinningLabel.h\"\n\nFOUNDATION_EXPORT double BMASpinningLabelVersionNumber;\nFOUNDATION_EXPORT const unsigned char BMASpinningLabelVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/BMASpinningLabel/BMASpinningLabel.modulemap",
    "content": "framework module BMASpinningLabel {\n  umbrella header \"BMASpinningLabel-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/BMASpinningLabel/BMASpinningLabel.xcconfig",
    "content": "CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/BMASpinningLabel\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = \"${PODS_ROOT}/Headers/Private\" \"${PODS_ROOT}/Headers/Public\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPODS_TARGET_SRCROOT = ${PODS_ROOT}/../..\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\n"
  },
  {
    "path": "Example/Pods/Target Support Files/BMASpinningLabel/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabel/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel-acknowledgements.markdown",
    "content": "# Acknowledgements\nThis application makes use of the following third party libraries:\n\n## BMASpinningLabel\n\nThe MIT License (MIT)\n \nCopyright (c) 2015-present Badoo Trading Limited.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\nGenerated by CocoaPods - https://cocoapods.org\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel-acknowledgements.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreferenceSpecifiers</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>This application makes use of the following third party libraries:</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Acknowledgements</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>The MIT License (MIT)\n \nCopyright (c) 2015-present Badoo Trading Limited.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n</string>\n\t\t\t<key>License</key>\n\t\t\t<string>MIT</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>BMASpinningLabel</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Generated by CocoaPods - https://cocoapods.org</string>\n\t\t\t<key>Title</key>\n\t\t\t<string></string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t</array>\n\t<key>StringsTable</key>\n\t<string>Acknowledgements</string>\n\t<key>Title</key>\n\t<string>Acknowledgements</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_BMASpinningLabel : NSObject\n@end\n@implementation PodsDummy_Pods_BMASpinningLabel\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel-frameworks.sh",
    "content": "#!/bin/sh\nset -e\n\necho \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nmkdir -p \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\nSWIFT_STDLIB_PATH=\"${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}\"\n\ninstall_framework()\n{\n  if [ -r \"${BUILT_PRODUCTS_DIR}/$1\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$1\"\n  elif [ -r \"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\"\n  elif [ -r \"$1\" ]; then\n    local source=\"$1\"\n  fi\n\n  local destination=\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\n  if [ -L \"${source}\" ]; then\n      echo \"Symlinked...\"\n      source=\"$(readlink \"${source}\")\"\n  fi\n\n  # use filter instead of exclude so missing patterns dont' throw errors\n  echo \"rsync -av --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${source}\\\" \\\"${destination}\\\"\"\n  rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"\n\n  local basename\n  basename=\"$(basename -s .framework \"$1\")\"\n  binary=\"${destination}/${basename}.framework/${basename}\"\n  if ! [ -r \"$binary\" ]; then\n    binary=\"${destination}/${basename}\"\n  fi\n\n  # Strip invalid architectures so \"fat\" simulator / device frameworks work on device\n  if [[ \"$(file \"$binary\")\" == *\"dynamically linked shared library\"* ]]; then\n    strip_invalid_archs \"$binary\"\n  fi\n\n  # Resign the code if required by the build settings to avoid unstable apps\n  code_sign_if_enabled \"${destination}/$(basename \"$1\")\"\n\n  # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.\n  if [ \"${XCODE_VERSION_MAJOR}\" -lt 7 ]; then\n    local swift_runtime_libs\n    swift_runtime_libs=$(xcrun otool -LX \"$binary\" | grep --color=never @rpath/libswift | sed -E s/@rpath\\\\/\\(.+dylib\\).*/\\\\1/g | uniq -u  && exit ${PIPESTATUS[0]})\n    for lib in $swift_runtime_libs; do\n      echo \"rsync -auv \\\"${SWIFT_STDLIB_PATH}/${lib}\\\" \\\"${destination}\\\"\"\n      rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"\n      code_sign_if_enabled \"${destination}/${lib}\"\n    done\n  fi\n}\n\n# Signs a framework with the provided identity\ncode_sign_if_enabled() {\n  if [ -n \"${EXPANDED_CODE_SIGN_IDENTITY}\" -a \"${CODE_SIGNING_REQUIRED}\" != \"NO\" -a \"${CODE_SIGNING_ALLOWED}\" != \"NO\" ]; then\n    # Use the current code_sign_identitiy\n    echo \"Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}\"\n    local code_sign_cmd=\"/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'\"\n\n    if [ \"${COCOAPODS_PARALLEL_CODE_SIGN}\" == \"true\" ]; then\n      code_sign_cmd=\"$code_sign_cmd &\"\n    fi\n    echo \"$code_sign_cmd\"\n    eval \"$code_sign_cmd\"\n  fi\n}\n\n# Strip invalid architectures\nstrip_invalid_archs() {\n  binary=\"$1\"\n  # Get architectures for current file\n  archs=\"$(lipo -info \"$binary\" | rev | cut -d ':' -f1 | rev)\"\n  stripped=\"\"\n  for arch in $archs; do\n    if ! [[ \"${VALID_ARCHS}\" == *\"$arch\"* ]]; then\n      # Strip non-valid architectures in-place\n      lipo -remove \"$arch\" -output \"$binary\" \"$binary\" || exit 1\n      stripped=\"$stripped $arch\"\n    fi\n  done\n  if [[ \"$stripped\" ]]; then\n    echo \"Stripped $binary of architectures:$stripped\"\n  fi\n}\n\n\nif [[ \"$CONFIGURATION\" == \"Debug\" ]]; then\n  install_framework \"$BUILT_PRODUCTS_DIR/BMASpinningLabel/BMASpinningLabel.framework\"\nfi\nif [[ \"$CONFIGURATION\" == \"Release\" ]]; then\n  install_framework \"$BUILT_PRODUCTS_DIR/BMASpinningLabel/BMASpinningLabel.framework\"\nfi\nif [ \"${COCOAPODS_PARALLEL_CODE_SIGN}\" == \"true\" ]; then\n  wait\nfi\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel-resources.sh",
    "content": "#!/bin/sh\nset -e\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n\nRESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt\n> \"$RESOURCES_TO_COPY\"\n\nXCASSET_FILES=()\n\ncase \"${TARGETED_DEVICE_FAMILY}\" in\n  1,2)\n    TARGET_DEVICE_ARGS=\"--target-device ipad --target-device iphone\"\n    ;;\n  1)\n    TARGET_DEVICE_ARGS=\"--target-device iphone\"\n    ;;\n  2)\n    TARGET_DEVICE_ARGS=\"--target-device ipad\"\n    ;;\n  3)\n    TARGET_DEVICE_ARGS=\"--target-device tv\"\n    ;;\n  *)\n    TARGET_DEVICE_ARGS=\"--target-device mac\"\n    ;;\nesac\n\ninstall_resource()\n{\n  if [[ \"$1\" = /* ]] ; then\n    RESOURCE_PATH=\"$1\"\n  else\n    RESOURCE_PATH=\"${PODS_ROOT}/$1\"\n  fi\n  if [[ ! -e \"$RESOURCE_PATH\" ]] ; then\n    cat << EOM\nerror: Resource \"$RESOURCE_PATH\" not found. Run 'pod install' to update the copy resources script.\nEOM\n    exit 1\n  fi\n  case $RESOURCE_PATH in\n    *.storyboard)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .storyboard`.storyboardc\" \"$RESOURCE_PATH\" --sdk \"${SDKROOT}\" ${TARGET_DEVICE_ARGS}\n      ;;\n    *.xib)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .xib`.nib\" \"$RESOURCE_PATH\" --sdk \"${SDKROOT}\" ${TARGET_DEVICE_ARGS}\n      ;;\n    *.framework)\n      echo \"mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      mkdir -p \"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      echo \"rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      rsync -av \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      ;;\n    *.xcdatamodel)\n      echo \"xcrun momc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\"`.mom\\\"\"\n      xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodel`.mom\"\n      ;;\n    *.xcdatamodeld)\n      echo \"xcrun momc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodeld`.momd\\\"\"\n      xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodeld`.momd\"\n      ;;\n    *.xcmappingmodel)\n      echo \"xcrun mapc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcmappingmodel`.cdm\\\"\"\n      xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcmappingmodel`.cdm\"\n      ;;\n    *.xcassets)\n      ABSOLUTE_XCASSET_FILE=\"$RESOURCE_PATH\"\n      XCASSET_FILES+=(\"$ABSOLUTE_XCASSET_FILE\")\n      ;;\n    *)\n      echo \"$RESOURCE_PATH\"\n      echo \"$RESOURCE_PATH\" >> \"$RESOURCES_TO_COPY\"\n      ;;\n  esac\n}\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nrsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from=\"$RESOURCES_TO_COPY\" / \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nif [[ \"${ACTION}\" == \"install\" ]] && [[ \"${SKIP_INSTALL}\" == \"NO\" ]]; then\n  mkdir -p \"${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n  rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from=\"$RESOURCES_TO_COPY\" / \"${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nfi\nrm -f \"$RESOURCES_TO_COPY\"\n\nif [[ -n \"${WRAPPER_EXTENSION}\" ]] && [ \"`xcrun --find actool`\" ] && [ -n \"$XCASSET_FILES\" ]\nthen\n  # Find all other xcassets (this unfortunately includes those of path pods and other targets).\n  OTHER_XCASSETS=$(find \"$PWD\" -iname \"*.xcassets\" -type d)\n  while read line; do\n    if [[ $line != \"${PODS_ROOT}*\" ]]; then\n      XCASSET_FILES+=(\"$line\")\n    fi\n  done <<<\"$OTHER_XCASSETS\"\n\n  printf \"%s\\0\" \"${XCASSET_FILES[@]}\" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform \"${PLATFORM_NAME}\" --minimum-deployment-target \"${!DEPLOYMENT_TARGET_SETTING_NAME}\" ${TARGET_DEVICE_ARGS} --compress-pngs --compile \"${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nfi\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n\nFOUNDATION_EXPORT double Pods_BMASpinningLabelVersionNumber;\nFOUNDATION_EXPORT const unsigned char Pods_BMASpinningLabelVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel.debug.xcconfig",
    "content": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/BMASpinningLabel\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$PODS_CONFIGURATION_BUILD_DIR/BMASpinningLabel/BMASpinningLabel.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"BMASpinningLabel\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}/Pods\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel.modulemap",
    "content": "framework module Pods_BMASpinningLabel {\n  umbrella header \"Pods-BMASpinningLabel-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabel/Pods-BMASpinningLabel.release.xcconfig",
    "content": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/BMASpinningLabel\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$PODS_CONFIGURATION_BUILD_DIR/BMASpinningLabel/BMASpinningLabel.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"BMASpinningLabel\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}/Pods\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabelTests/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests-acknowledgements.markdown",
    "content": "# Acknowledgements\nThis application makes use of the following third party libraries:\nGenerated by CocoaPods - https://cocoapods.org\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests-acknowledgements.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreferenceSpecifiers</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>This application makes use of the following third party libraries:</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Acknowledgements</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Generated by CocoaPods - https://cocoapods.org</string>\n\t\t\t<key>Title</key>\n\t\t\t<string></string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t</array>\n\t<key>StringsTable</key>\n\t<string>Acknowledgements</string>\n\t<key>Title</key>\n\t<string>Acknowledgements</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_BMASpinningLabelTests : NSObject\n@end\n@implementation PodsDummy_Pods_BMASpinningLabelTests\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests-frameworks.sh",
    "content": "#!/bin/sh\nset -e\n\necho \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nmkdir -p \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\nSWIFT_STDLIB_PATH=\"${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}\"\n\ninstall_framework()\n{\n  if [ -r \"${BUILT_PRODUCTS_DIR}/$1\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$1\"\n  elif [ -r \"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\"\n  elif [ -r \"$1\" ]; then\n    local source=\"$1\"\n  fi\n\n  local destination=\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\n  if [ -L \"${source}\" ]; then\n      echo \"Symlinked...\"\n      source=\"$(readlink \"${source}\")\"\n  fi\n\n  # use filter instead of exclude so missing patterns dont' throw errors\n  echo \"rsync -av --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${source}\\\" \\\"${destination}\\\"\"\n  rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"\n\n  local basename\n  basename=\"$(basename -s .framework \"$1\")\"\n  binary=\"${destination}/${basename}.framework/${basename}\"\n  if ! [ -r \"$binary\" ]; then\n    binary=\"${destination}/${basename}\"\n  fi\n\n  # Strip invalid architectures so \"fat\" simulator / device frameworks work on device\n  if [[ \"$(file \"$binary\")\" == *\"dynamically linked shared library\"* ]]; then\n    strip_invalid_archs \"$binary\"\n  fi\n\n  # Resign the code if required by the build settings to avoid unstable apps\n  code_sign_if_enabled \"${destination}/$(basename \"$1\")\"\n\n  # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.\n  if [ \"${XCODE_VERSION_MAJOR}\" -lt 7 ]; then\n    local swift_runtime_libs\n    swift_runtime_libs=$(xcrun otool -LX \"$binary\" | grep --color=never @rpath/libswift | sed -E s/@rpath\\\\/\\(.+dylib\\).*/\\\\1/g | uniq -u  && exit ${PIPESTATUS[0]})\n    for lib in $swift_runtime_libs; do\n      echo \"rsync -auv \\\"${SWIFT_STDLIB_PATH}/${lib}\\\" \\\"${destination}\\\"\"\n      rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"\n      code_sign_if_enabled \"${destination}/${lib}\"\n    done\n  fi\n}\n\n# Signs a framework with the provided identity\ncode_sign_if_enabled() {\n  if [ -n \"${EXPANDED_CODE_SIGN_IDENTITY}\" -a \"${CODE_SIGNING_REQUIRED}\" != \"NO\" -a \"${CODE_SIGNING_ALLOWED}\" != \"NO\" ]; then\n    # Use the current code_sign_identitiy\n    echo \"Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}\"\n    local code_sign_cmd=\"/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'\"\n\n    if [ \"${COCOAPODS_PARALLEL_CODE_SIGN}\" == \"true\" ]; then\n      code_sign_cmd=\"$code_sign_cmd &\"\n    fi\n    echo \"$code_sign_cmd\"\n    eval \"$code_sign_cmd\"\n  fi\n}\n\n# Strip invalid architectures\nstrip_invalid_archs() {\n  binary=\"$1\"\n  # Get architectures for current file\n  archs=\"$(lipo -info \"$binary\" | rev | cut -d ':' -f1 | rev)\"\n  stripped=\"\"\n  for arch in $archs; do\n    if ! [[ \"${VALID_ARCHS}\" == *\"$arch\"* ]]; then\n      # Strip non-valid architectures in-place\n      lipo -remove \"$arch\" -output \"$binary\" \"$binary\" || exit 1\n      stripped=\"$stripped $arch\"\n    fi\n  done\n  if [[ \"$stripped\" ]]; then\n    echo \"Stripped $binary of architectures:$stripped\"\n  fi\n}\n\nif [ \"${COCOAPODS_PARALLEL_CODE_SIGN}\" == \"true\" ]; then\n  wait\nfi\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests-resources.sh",
    "content": "#!/bin/sh\nset -e\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n\nRESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt\n> \"$RESOURCES_TO_COPY\"\n\nXCASSET_FILES=()\n\ncase \"${TARGETED_DEVICE_FAMILY}\" in\n  1,2)\n    TARGET_DEVICE_ARGS=\"--target-device ipad --target-device iphone\"\n    ;;\n  1)\n    TARGET_DEVICE_ARGS=\"--target-device iphone\"\n    ;;\n  2)\n    TARGET_DEVICE_ARGS=\"--target-device ipad\"\n    ;;\n  3)\n    TARGET_DEVICE_ARGS=\"--target-device tv\"\n    ;;\n  *)\n    TARGET_DEVICE_ARGS=\"--target-device mac\"\n    ;;\nesac\n\ninstall_resource()\n{\n  if [[ \"$1\" = /* ]] ; then\n    RESOURCE_PATH=\"$1\"\n  else\n    RESOURCE_PATH=\"${PODS_ROOT}/$1\"\n  fi\n  if [[ ! -e \"$RESOURCE_PATH\" ]] ; then\n    cat << EOM\nerror: Resource \"$RESOURCE_PATH\" not found. Run 'pod install' to update the copy resources script.\nEOM\n    exit 1\n  fi\n  case $RESOURCE_PATH in\n    *.storyboard)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .storyboard`.storyboardc\" \"$RESOURCE_PATH\" --sdk \"${SDKROOT}\" ${TARGET_DEVICE_ARGS}\n      ;;\n    *.xib)\n      echo \"ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}\"\n      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \\\"$RESOURCE_PATH\\\" .xib`.nib\" \"$RESOURCE_PATH\" --sdk \"${SDKROOT}\" ${TARGET_DEVICE_ARGS}\n      ;;\n    *.framework)\n      echo \"mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      mkdir -p \"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      echo \"rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      rsync -av \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n      ;;\n    *.xcdatamodel)\n      echo \"xcrun momc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\"`.mom\\\"\"\n      xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodel`.mom\"\n      ;;\n    *.xcdatamodeld)\n      echo \"xcrun momc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodeld`.momd\\\"\"\n      xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcdatamodeld`.momd\"\n      ;;\n    *.xcmappingmodel)\n      echo \"xcrun mapc \\\"$RESOURCE_PATH\\\" \\\"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcmappingmodel`.cdm\\\"\"\n      xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xcmappingmodel`.cdm\"\n      ;;\n    *.xcassets)\n      ABSOLUTE_XCASSET_FILE=\"$RESOURCE_PATH\"\n      XCASSET_FILES+=(\"$ABSOLUTE_XCASSET_FILE\")\n      ;;\n    *)\n      echo \"$RESOURCE_PATH\"\n      echo \"$RESOURCE_PATH\" >> \"$RESOURCES_TO_COPY\"\n      ;;\n  esac\n}\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nrsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from=\"$RESOURCES_TO_COPY\" / \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nif [[ \"${ACTION}\" == \"install\" ]] && [[ \"${SKIP_INSTALL}\" == \"NO\" ]]; then\n  mkdir -p \"${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n  rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from=\"$RESOURCES_TO_COPY\" / \"${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nfi\nrm -f \"$RESOURCES_TO_COPY\"\n\nif [[ -n \"${WRAPPER_EXTENSION}\" ]] && [ \"`xcrun --find actool`\" ] && [ -n \"$XCASSET_FILES\" ]\nthen\n  # Find all other xcassets (this unfortunately includes those of path pods and other targets).\n  OTHER_XCASSETS=$(find \"$PWD\" -iname \"*.xcassets\" -type d)\n  while read line; do\n    if [[ $line != \"${PODS_ROOT}*\" ]]; then\n      XCASSET_FILES+=(\"$line\")\n    fi\n  done <<<\"$OTHER_XCASSETS\"\n\n  printf \"%s\\0\" \"${XCASSET_FILES[@]}\" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform \"${PLATFORM_NAME}\" --minimum-deployment-target \"${!DEPLOYMENT_TARGET_SETTING_NAME}\" ${TARGET_DEVICE_ARGS} --compress-pngs --compile \"${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\nfi\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n\nFOUNDATION_EXPORT double Pods_BMASpinningLabelTestsVersionNumber;\nFOUNDATION_EXPORT const unsigned char Pods_BMASpinningLabelTestsVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests.debug.xcconfig",
    "content": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/BMASpinningLabel\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$PODS_CONFIGURATION_BUILD_DIR/BMASpinningLabel/BMASpinningLabel.framework/Headers\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}/Pods\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests.modulemap",
    "content": "framework module Pods_BMASpinningLabelTests {\n  umbrella header \"Pods-BMASpinningLabelTests-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-BMASpinningLabelTests/Pods-BMASpinningLabelTests.release.xcconfig",
    "content": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/BMASpinningLabel\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_CFLAGS = $(inherited) -iquote \"$PODS_CONFIGURATION_BUILD_DIR/BMASpinningLabel/BMASpinningLabel.framework/Headers\"\nPODS_BUILD_DIR = $BUILD_DIR\nPODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}/Pods\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n \nCopyright (c) 2015-present Badoo Trading Limited.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# BMASpinningLabel [![Build Status](https://api.travis-ci.org/badoo/BMASpinningLabel.svg)](https://travis-ci.org/badoo/BMASpinningLabel) [![codecov.io](https://codecov.io/github/badoo/BMASpinningLabel/coverage.svg?branch=master)](https://codecov.io/github/badoo/BMASpinningLabel?branch=master) [![CocoaPods Compatible](https://img.shields.io/cocoapods/v/BMASpinningLabel.svg)](https://img.shields.io/cocoapods/v/BMASpinningLabel.svg)\n`BMASpinningLabel` is an UI component which provides easy way for displaying and animating text inside it.\nText changes animated as 'spins' either downwards or upwards.\nBelow you can see example how it works.\n\n<div align=\"center\">\n<img src=\"./demoimages/demo.gif\" />\n</div>\n\n## How to use\n\n```objectivec\n// Creation\nBMASpinningLabel *label = [[BMASpinningLabel alloc] initWithFrame:CGRectMake(0, 0, 100, 40)];\nself.navigationItem.titleView = label;\n\n// Set initial value\nNSAttributedString *initialTitle = [[NSAttributedString alloc] initWithString:@\"Initial Title\"];\nself.label.attributedTitle = initialTitle;\n\n// Update with animation\nNSAttributedString *newTitle = [[NSAttributedString alloc] initWithString:@\"New Title\"];\n[self.label setAttributedTitle:newTitle spinDirection:BMASpinDirectionUpward spinSettings:BMASpinSettingsAnimated];\n```\n\n## How to install\n\n### Using CocoaPods\n\n\n1. Include the following line in your `Podfile`:\n\n    ```\n    pod 'BMASpinningLabel', '~> 1.0'\n    ```\n\n2. Run `pod install`\n\n### Manually\n\n1. Clone, add as a submodule or [download.](https://github.com/badoo/BMASpinningLabel/archive/master.zip)\n2. Add the files under `BMASpinningLabel` to your project.\n3. Make sure your project is configured to use ARC.\n\n## License\n\nSource code is distributed under MIT license.\n\n## Blog\n\nRead more on our [tech blog](http://techblog.badoo.com/) or explore our other [open source projects](https://github.com/badoo)\n"
  }
]