Skip to content

Commit

Permalink
Add cocoapods support
Browse files Browse the repository at this point in the history
  • Loading branch information
psharanda committed Jul 11, 2024
1 parent 0fa444f commit 4ad9e61
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions FixFlex.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Pod::Spec.new do |s|
s.name = "FixFlex"
s.version = "1.2.3"
s.summary = "Declarative Auto Layout code that is easy to write, read, and modify"
s.description = <<-DESC
`FixFlex` is a simple yet powerful Auto Layout library built on top of the NSLayoutAnchor API, a swifty and type-safe reimagination of Visual Format Language
DESC
s.homepage = "https://github.com/psharanda/FixFlex"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Pavel Sharanda" => "[email protected]" }
s.social_media_url = "https://twitter.com/psharanda"
s.swift_version = '5.1'
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.13"
s.tvos.deployment_target = "12.0"
s.source = { :git => "https://github.com/psharanda/FixFlex.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*.swift"
end

0 comments on commit 4ad9e61

Please sign in to comment.