Skip to content

Commit

Permalink
Preparing cocoapod
Browse files Browse the repository at this point in the history
  • Loading branch information
vhailor13 committed May 21, 2017
1 parent d26c1ec commit d0419a5
Show file tree
Hide file tree
Showing 87 changed files with 597 additions and 203 deletions.
399 changes: 399 additions & 0 deletions Example/FanMenu.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
use_frameworks!

target 'FanMenu' do
pod 'Macaw', '0.8.2'
pod 'FanMenu', :path => '../'
end
23 changes: 23 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
PODS:
- FanMenu (0.6.0):
- Macaw
- Macaw (0.8.2):
- SWXMLHash (~> 3.0.0)
- SWXMLHash (3.0.5)

DEPENDENCIES:
- FanMenu (from `../`)
- Macaw (= 0.8.2)

EXTERNAL SOURCES:
FanMenu:
:path: "../"

SPEC CHECKSUMS:
FanMenu: 59a03265726dee1c95d00e9f6432a57f2d2f10a9
Macaw: d01bec971b24be4232895d08482a791c403ce513
SWXMLHash: 701f7d07c032089b9ff34e0352bd4fed1a24652a

PODFILE CHECKSUM: ebc157133e2cebecb868612ec2665d36d6b9e9d8

COCOAPODS: 1.1.1
20 changes: 20 additions & 0 deletions FanMenu.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Pod::Spec.new do |s|
s.name = "FanMenu"
s.version = "0.6.0"
s.summary = "Powerful and easy-to-use vector graphics library with SVG support written in Swift."

s.homepage = 'https://github.com/exyte/fan-menu.git'
s.license = 'MIT'
s.author = { 'Igor Zapletnev' => '[email protected]' }
s.source = { :git => 'https://github.com/exyte/fan-menu.git', :tag => s.version.to_s }
s.social_media_url = 'http://exyte.com'

s.platform = :ios, '8.0'
s.requires_arc = true

s.source_files = [
'Sources/*.*'
]

s.dependency 'Macaw'
end
270 changes: 87 additions & 183 deletions FanMenu.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (c) 2016 exyte <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
5 changes: 0 additions & 5 deletions Podfile

This file was deleted.

15 changes: 0 additions & 15 deletions Podfile.lock

This file was deleted.

19 changes: 19 additions & 0 deletions Sources/FanMenu.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// FanMenu.h
// FanMenu
//
// Created by Victor Sukochev on 17/05/2017.
// Copyright © 2017 Exyte. All rights reserved.
//

#import <UIKit/UIKit.h>

//! Project version number for FanMenu.
FOUNDATION_EXPORT double FanMenuVersionNumber;

//! Project version string for FanMenu.
FOUNDATION_EXPORT const unsigned char FanMenuVersionString[];

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


File renamed without changes.
24 changes: 24 additions & 0 deletions Sources/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?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>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>

0 comments on commit d0419a5

Please sign in to comment.