Skip to content

Commit a341895

Browse files
committed
Initial commit
1 parent b40a549 commit a341895

17 files changed

+1260
-1
lines changed

.gitignore

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Mac OS X
2+
3+
.DS_Store
4+
5+
# Xcode
6+
7+
## Build generated
8+
build/
9+
DerivedData/
10+
11+
## Various settings
12+
*.pbxuser
13+
!default.pbxuser
14+
*.mode1v3
15+
!default.mode1v3
16+
*.mode2v3
17+
!default.mode2v3
18+
*.perspectivev3
19+
!default.perspectivev3
20+
*xcuserdata/
21+
22+
## Other
23+
*.moved-aside
24+
*.xccheckout
25+
*.xcscmblueprint
26+
27+
## Obj-C/Swift specific
28+
*.hmap
29+
*.ipa
30+
*.dSYM.zip
31+
*.dSYM
32+
33+
## Playgrounds
34+
timeline.xctimeline
35+
playground.xcworkspace
36+
37+
# Carthage
38+
*/Carthage/
39+
40+
# fastlane
41+
*/fastlane/report.xml
42+
*/fastlane/Preview.html
43+
*/fastlane/screenshots
44+
*/fastlane/test_output

.jazzy.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
author: Ethenyl
2+
author_url: https://github.com/Ethenyl
3+
github_url: https://github.com/Ethenyl/JAMFKit
4+
root_url: https://ethenyl.github.io/JAMFKit/
5+
module: JAMFKit
6+
output: docs
7+
theme: fullwidth
8+
xcodebuild_arguments: [-workspace, 'JAMFKit.xcworkspace', -scheme, 'JAMFKit iOS']

.swift-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.2

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: objective-c
2+
osx_image: xcode8.3
3+
xcode_workspace: JAMFKit.xcworkspace
4+
env:
5+
global:
6+
- LC_CTYPE=en_US.UTF-8
7+
- LANG=en_US.UTF-8
8+
- IOS_FRAMEWORK_SCHEME="JAMFKit iOS"
9+
- MACOS_FRAMEWORK_SCHEME="JAMFKit macOS"

JAMFKit.podspec

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Pod::Spec.new do |s|
2+
s.name = "JAMFKit"
3+
s.version = "0.1"
4+
s.summary = "Swifty JSS communication SDK"
5+
s.description = <<-DESC
6+
A Swift API to interact with a JSS server's API.
7+
DESC
8+
9+
s.homepage = "https://[email protected]/Ethenyl/JAMFKit"
10+
s.license = { :type => "MIT", :file => "LICENSE" }
11+
s.author = { "Damien Rivet" => "[email protected]" }
12+
13+
s.ios.deployment_target = "9.0"
14+
s.osx.deployment_target = "10.10"
15+
16+
s.source = { :git => "https://[email protected]/Ethenyl/JAMFKit.git", :tag => s.version.to_s }
17+
s.source_files = "Sources/*.swift"
18+
19+
s.frameworks = "Foundation"
20+
end

JAMFKit.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JAMFKit/Configs/JAMFKit.plist

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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</string>
19+
<key>CFBundleSignature</key>
20+
<string>????</string>
21+
<key>CFBundleVersion</key>
22+
<string>$(CURRENT_PROJECT_VERSION)</string>
23+
<key>NSHumanReadableCopyright</key>
24+
<string>Copyright © 2017 Damien Rivet. All rights reserved.</string>
25+
<key>NSPrincipalClass</key>
26+
<string></string>
27+
</dict>
28+
</plist>

JAMFKit/Configs/JAMFKitTests.plist

+24
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>BNDL</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleSignature</key>
20+
<string>????</string>
21+
<key>CFBundleVersion</key>
22+
<string>1</string>
23+
</dict>
24+
</plist>

0 commit comments

Comments
 (0)