Updated Podspec (#88)
* Updated `readme`, `authors`, and `social_media_url` * Reordered fields to match the podspec reference
This commit is contained in:
parent
4704bcff97
commit
01ed3d5759
22
YMFF.podspec
22
YMFF.podspec
|
@ -1,29 +1,25 @@
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
|
|
||||||
# Basic Info
|
# Root
|
||||||
|
|
||||||
s.name = "YMFF"
|
s.name = "YMFF"
|
||||||
s.version = "3.0.0-beta.1"
|
s.version = "3.0.0-beta.1"
|
||||||
|
s.swift_version = "5.3"
|
||||||
|
s.authors = { "Yakov Manshin" => "git@yakovmanshin.com" }
|
||||||
|
s.social_media_url = "https://twitter.com/yakovmanshin"
|
||||||
|
s.license = { :type => "Apache License, version 2.0", :file => "LICENSE" }
|
||||||
|
s.homepage = "https://github.com/yakovmanshin/YMFF"
|
||||||
|
s.readme = "https://github.com/yakovmanshin/YMFF/blob/main/README.md"
|
||||||
|
s.source = { :git => "https://github.com/yakovmanshin/YMFF.git", :tag => "#{s.version}" }
|
||||||
s.summary = "Feature management made easy."
|
s.summary = "Feature management made easy."
|
||||||
|
|
||||||
s.description = <<-DESC
|
s.description = <<-DESC
|
||||||
YMFF is a nice little library that makes management of features
|
YMFF is a nice little library that makes management of features
|
||||||
with feature flags—and management of the feature flags themselves—a bliss.
|
with feature flags—and management of the feature flags themselves—a bliss.
|
||||||
DESC
|
DESC
|
||||||
|
|
||||||
s.homepage = "https://github.com/yakovmanshin/YMFF"
|
|
||||||
s.documentation_url = "https://opensource.ym.dev/YMFF/"
|
s.documentation_url = "https://opensource.ym.dev/YMFF/"
|
||||||
|
|
||||||
s.license = { :type => "Apache License, version 2.0", :file => "LICENSE" }
|
# Platform
|
||||||
|
|
||||||
s.author = { "Yakov Manshin" => "contact@yakovmanshin.com" }
|
|
||||||
s.social_media_url = "https://github.com/yakovmanshin"
|
|
||||||
|
|
||||||
# Sources & Build Settings
|
|
||||||
|
|
||||||
s.source = { :git => "https://github.com/yakovmanshin/YMFF.git", :tag => "#{s.version}" }
|
|
||||||
|
|
||||||
s.swift_version = "5.3"
|
|
||||||
s.osx.deployment_target = "10.13"
|
s.osx.deployment_target = "10.13"
|
||||||
s.ios.deployment_target = "11.0"
|
s.ios.deployment_target = "11.0"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue