Skip to content

Commit

Permalink
Initial Implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Maccharoli committed Oct 19, 2017
0 parents commit 7709745
Show file tree
Hide file tree
Showing 22 changed files with 1,693 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/
.DS_Store

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

# 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

Carthage/Build
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output

# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/
16 changes: 16 additions & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
disabled_rules:
- cyclomatic_complexity
- compiler_protocol_init
- force_cast
- colon
- comma
- control_statement
- file_length
- type_body_length
opt_in_rules:
- empty_count
included:
- UIFontComplete
- UIFontCompleteTests
line_length: 180
reporter: "xcode"
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
language: objective-c
osx_image: xcode9

script:
- xcodebuild -alltargets

19 changes: 19 additions & 0 deletions Default-iOS/Default_iOS.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// Default_iOS.h
// Default-iOS
//
// Created by Nicholas Maccharoli on 2017/10/19.
// Copyright © 2017年 Nicholas Maccharoli. All rights reserved.
//

#import <UIKit/UIKit.h>

//! Project version number for Default_iOS.
FOUNDATION_EXPORT double Default_iOSVersionNumber;

//! Project version string for Default_iOS.
FOUNDATION_EXPORT const unsigned char Default_iOSVersionString[];

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


24 changes: 24 additions & 0 deletions Default-iOS/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>$(DEVELOPMENT_LANGUAGE)</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>
19 changes: 19 additions & 0 deletions Default-macOS/Default_macOS.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// Default_macOS.h
// Default-macOS
//
// Created by Nicholas Maccharoli on 2017/10/19.
// Copyright © 2017年 Nicholas Maccharoli. All rights reserved.
//

#import <Cocoa/Cocoa.h>

//! Project version number for Default_macOS.
FOUNDATION_EXPORT double Default_macOSVersionNumber;

//! Project version string for Default_macOS.
FOUNDATION_EXPORT const unsigned char Default_macOSVersionString[];

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


26 changes: 26 additions & 0 deletions Default-macOS/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>$(DEVELOPMENT_LANGUAGE)</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>NSHumanReadableCopyright</key>
<string>Copyright © 2017年 Nicholas Maccharoli. All rights reserved.</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
19 changes: 19 additions & 0 deletions Default-tvOS/Default_tvOS.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// Default_tvOS.h
// Default-tvOS
//
// Created by Nicholas Maccharoli on 2017/10/19.
// Copyright © 2017年 Nicholas Maccharoli. All rights reserved.
//

#import <UIKit/UIKit.h>

//! Project version number for Default_tvOS.
FOUNDATION_EXPORT double Default_tvOSVersionNumber;

//! Project version string for Default_tvOS.
FOUNDATION_EXPORT const unsigned char Default_tvOSVersionString[];

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


24 changes: 24 additions & 0 deletions Default-tvOS/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>$(DEVELOPMENT_LANGUAGE)</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>
19 changes: 19 additions & 0 deletions Default-watchOS/Default_watchOS.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// Default_watchOS.h
// Default-watchOS
//
// Created by Nicholas Maccharoli on 2017/10/19.
// Copyright © 2017年 Nicholas Maccharoli. All rights reserved.
//

#import <WatchKit/WatchKit.h>

//! Project version number for Default_watchOS.
FOUNDATION_EXPORT double Default_watchOSVersionNumber;

//! Project version string for Default_watchOS.
FOUNDATION_EXPORT const unsigned char Default_watchOSVersionString[];

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


24 changes: 24 additions & 0 deletions Default-watchOS/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>$(DEVELOPMENT_LANGUAGE)</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>
Loading

0 comments on commit 7709745

Please sign in to comment.