Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## Build generated
bin/
build/
DerivedData

Expand Down Expand Up @@ -39,3 +40,7 @@ Pods/

# Jazzy docs
docs/

Builds/
Index/
.DS_Store
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0720"
LastUpgradeVersion = "0820"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
7 changes: 4 additions & 3 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
platform :ios, '10.0'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!

target 'SettingsKitTests', :exclusive => true do
pod 'Quick', '~> 0.8.0'
pod 'Nimble', '3.0.0'
target 'SettingsKitTests' do
pod 'Quick', '2.0.0'
pod 'Nimble', '8.0.1'
end
21 changes: 14 additions & 7 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
PODS:
- Nimble (3.0.0)
- Quick (0.8.0)
- Nimble (8.0.1)
- Quick (2.0.0)

DEPENDENCIES:
- Nimble (= 3.0.0)
- Quick (~> 0.8.0)
- Nimble (= 8.0.1)
- Quick (= 2.0.0)

SPEC REPOS:
https://github.com/cocoapods/specs.git:
- Nimble
- Quick

SPEC CHECKSUMS:
Nimble: 4c353d43735b38b545cbb4cb91504588eb5de926
Quick: 563d0f6ec5f72e394645adb377708639b7dd38ab
Nimble: 45f786ae66faa9a709624227fae502db55a8bdd0
Quick: ce1276c7c27ba2da3cb2fd0cde053c3648b3b22d

PODFILE CHECKSUM: e4bd1b527d4e409a8d3aa03b3cbbaf2d9f7e681e

COCOAPODS: 0.39.0
COCOAPODS: 1.6.1
11 changes: 8 additions & 3 deletions SettingsKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SettingsKit"
s.version = "0.1.0"
s.version = "0.4.0"
s.summary = <<-SUMMARY
SettingsKit provides an elegant wrapper for iOS app settings.
SUMMARY
Expand All @@ -12,10 +12,15 @@ Pod::Spec.new do |s|
s.homepage = "https://github.com/dtrenz/SettingsKit"
s.license = "Apache 2.0"
s.author = { "Dan Trenz" => "dtrenz@gmail.com" }
s.source = { :git => "https://github.com/dtrenz/SettingsKit.git", :tag => s.version.to_s }
#s.source = { :git => "https://github.com/dtrenz/SettingsKit.git", :tag => s.version.to_s }
s.source = { :git => "https://github.com/dtrenz/SettingsKit.git", :branch => 'develop' }
s.social_media_url = "https://twitter.com/dtrenz"
s.platform = :ios, "8.3"
#s.platform = :ios, "8.3"
s.requires_arc = true
s.source_files = [ "Sources/**/*", "cli/**/*", "build" ]
s.preserve_paths = [ "cli/**/*", "build" ]

s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '10.0'
end
Loading