diff --git a/YMFF.podspec b/YMFF.podspec index c292c99..99a0995 100644 --- a/YMFF.podspec +++ b/YMFF.podspec @@ -1,29 +1,25 @@ Pod::Spec.new do |s| - # Basic Info + # Root s.name = "YMFF" 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.description = <<-DESC YMFF is a nice little library that makes management of features with feature flags—and management of the feature flags themselves—a bliss. DESC - - s.homepage = "https://github.com/yakovmanshin/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.ios.deployment_target = "11.0"