Sha256: bec16bdd99dd9bd1fb37e67d21bea30baf99c5898791a43d821444e8135a45c5

Contents?: true

Size: 1.83 KB

Versions: 119

Compression:

Stored size: 1.83 KB

Contents

module Fastlane
  module Helper
    class PodspecHelper
      attr_accessor :path
      attr_accessor :podspec_content
      attr_accessor :version_regex
      attr_accessor :version_match
      attr_accessor :version_value

      def initialize(path = nil)
        version_var_name = 'version'
        @version_regex = /^(?<begin>[^#]*#{version_var_name}\s*=\s*['"])(?<value>(?<major>[0-9]+)(\.(?<minor>[0-9]+))?(\.(?<patch>[0-9]+))?)(?<end>['"])/i

        return unless (path || '').length > 0
        UI.user_error!("Could not find podspec file at path '#{path}'") unless File.exist?(path)

        @path = File.expand_path(path)
        podspec_content = File.read(path)

        parse(podspec_content)
      end

      def parse(podspec_content)
        @podspec_content = podspec_content
        @version_match = @version_regex.match(@podspec_content)
        UI.user_error!("Could not find version in podspec content '#{@podspec_content}'") if @version_match.nil?
        @version_value = @version_match[:value]
      end

      def bump_version(bump_type)
        major = version_match[:major].to_i
        minor = version_match[:minor].to_i || 0
        patch = version_match[:patch].to_i || 0

        case bump_type
        when 'patch'
          patch += 1
        when 'minor'
          minor += 1
          patch = 0
        when 'major'
          major += 1
          minor = 0
          patch = 0
        end

        @version_value = "#{major}.#{minor}.#{patch}"
      end

      def update_podspec(version = nil)
        new_version = version || @version_value
        updated_podspec_content = @podspec_content.gsub(@version_regex, "#{@version_match[:begin]}#{new_version}#{@version_match[:end]}")

        File.open(@path, "w") { |file| file.puts updated_podspec_content } unless Helper.test?

        updated_podspec_content
      end
    end
  end
end

Version data entries

119 entries across 119 versions & 1 rubygems

Version Path
fastlane-2.5.0 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-2.4.0 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-2.3.1 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-2.3.0 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-2.2.0 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-2.1.3 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-2.1.2 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-2.1.1 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-2.1.0 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-2.0.5 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-2.0.4 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-2.0.3 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-2.0.2 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-2.0.1 fastlane/lib/fastlane/helper/podspec_helper.rb
fastlane-1.111.0 lib/fastlane/helper/podspec_helper.rb
fastlane-1.110.0 lib/fastlane/helper/podspec_helper.rb
fastlane-1.109.0 lib/fastlane/helper/podspec_helper.rb
fastlane-1.108.0 lib/fastlane/helper/podspec_helper.rb
fastlane-1.107.0 lib/fastlane/helper/podspec_helper.rb
fastlane-1.106.2 lib/fastlane/helper/podspec_helper.rb