Skip to content

Commit

Permalink
Create shared framework
Browse files Browse the repository at this point in the history
  • Loading branch information
shu223 committed Mar 11, 2016
1 parent 5152219 commit 807f317
Show file tree
Hide file tree
Showing 5 changed files with 329 additions and 19 deletions.
39 changes: 30 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Xcode
.DS_Store
*/build/*
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
Expand All @@ -9,13 +15,28 @@
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
profile
xcuserdata/

## Other
*.moved-aside
DerivedData
.idea/
*.xcuserstate

## Obj-C/Swift specific
*.hmap
*.xccheckout
*.ipa

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control

Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

#CocoaPods
Pods
Carthage/Build
PulsingHaloDemo.xccheckout
26 changes: 26 additions & 0 deletions PulsingHalo/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
20 changes: 20 additions & 0 deletions PulsingHalo/PulsingHalo.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//
// PulsingHalo.h
// PulsingHalo
//
// Created by Shuichi Tsutsumi on 3/11/16.
// Copyright © 2016 Shuichi Tsutsumi. All rights reserved.
//

#import <UIKit/UIKit.h>

//! Project version number for PulsingHalo.
FOUNDATION_EXPORT double PulsingHaloVersionNumber;

//! Project version string for PulsingHalo.
FOUNDATION_EXPORT const unsigned char PulsingHaloVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <PulsingHalo/PublicHeader.h>

#import <PulsingHalo/PulsingHaloLayer.h>

Loading

0 comments on commit 807f317

Please sign in to comment.