Skip to content

Commit

Permalink
Merge pull request #66 from thefuntasty/feature/spm
Browse files Browse the repository at this point in the history
Swift package manager support
  • Loading branch information
mkj-is authored Jul 8, 2019
2 parents e1e97ff + 9ab825f commit ce49393
Show file tree
Hide file tree
Showing 28 changed files with 262 additions and 770 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ playground.xcworkspace
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
.build/
.swiftpm
Package.resolved

# CocoaPods
#
Expand Down Expand Up @@ -63,3 +65,7 @@ fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/README.md

# Project, because it can be generated using SPM
*.xcodeproj
5 changes: 3 additions & 2 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ disabled_rules:
- line_length
excluded:
- Pods
- .build
opt_in_rules:
- vertical_whitespace
- empty_count
- switch_case_on_newline
- redundant_nil_coalesing
- redundant_nil_coalescing
- overridden_super_call
- explicit_init
- conditional_returns_on_newline
Expand All @@ -16,7 +17,7 @@ opt_in_rules:
- attributes

# Rule configurations
variable_name:
identifier_name:
excluded:
- id
- to
Expand Down
28 changes: 0 additions & 28 deletions Configs/FuntastyKit.plist

This file was deleted.

24 changes: 0 additions & 24 deletions Configs/FuntastyKitTests.plist

This file was deleted.

6 changes: 3 additions & 3 deletions FuntastyKit.podspec
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Pod::Spec.new do |s|
s.name = "FuntastyKit"
s.version = "1.4.0"
s.version = "1.5.0"
s.summary = "A collection of Swift utilities and protocols used in our projects."
s.description = <<-DESC
MVVM-C architecture, service holder for code injection of services
some regularly used UIKit extensions, protocols for simple initialization from XIB files,
storyboards and for handling keyboard, hairline and keyboard height constraints
DESC
s.homepage = "https://github.com/thefuntasty/FuntastyKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.license = { type: "MIT", file: "LICENSE" }
s.author = { "Matěj K. Jirásek" => "matej.jirasek@thefuntasty.com" }
s.social_media_url = "https://twitter.com/TheFuntasty"
s.platform = :ios, "9.0"
s.swift_version = "5.0"
s.source = { :git => "https://github.com/thefuntasty/FuntastyKit.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.source_files = "Sources/FuntastyKit/**/*"
s.frameworks = "Foundation", "UIKit"
end
Loading

0 comments on commit ce49393

Please sign in to comment.