Skip to content

Commit 889afdb

Browse files
committed
Add proper xcode project
1 parent 22c5fc8 commit 889afdb

6 files changed

Lines changed: 559 additions & 3 deletions

File tree

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232
- brew install sourcekitten
3333
- gem install jazzy
3434
before_deploy:
35-
- swift package generate-xcodeproj
3635
# Necessary for correct SourceKitten processing.
3736
- swift build
3837
# Build Carthage archive.

BitByteData.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ Pod::Spec.new do |s|
1313

1414
s.author = { "Timofey Solomko" => "tsolomko@gmail.com" }
1515

16+
s.source = { :git => "https://github.com/tsolomko/BitByteData.git", :tag => "#{s.version}" }
17+
1618
s.ios.deployment_target = "8.0"
1719
s.osx.deployment_target = "10.10"
1820
s.tvos.deployment_target = "9.0"
1921
s.watchos.deployment_target = "2.0"
2022

21-
s.source = { :git => "https://github.com/tsolomko/BitByteData.git", :tag => "#{s.version}" }
22-
2323
s.source_files = "Sources/*.swift"
2424

2525
s.test_spec 'Tests' do |test_spec|
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0.0-test.2</string>
19+
<key>CFBundleVersion</key>
20+
<string>2</string>
21+
<key>NSHumanReadableCopyright</key>
22+
<string>Copyright © 2017 Timofey Solomko. All rights reserved.</string>
23+
</dict>
24+
</plist>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>BNDL</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0.0-test.2</string>
19+
<key>CFBundleVersion</key>
20+
<string>2</string>
21+
</dict>
22+
</plist>

0 commit comments

Comments
 (0)