Sha256: 9f6ca2385b94374947952cc8ecbca47ce820bb25f5527758423ac393ded0ecb8

Contents?: true

Size: 489 Bytes

Versions: 2

Compression:

Stored size: 489 Bytes

Contents

module Danger::Apkstats
  module ExecutableCommand
    require "open3"
    
    # @return [String, String] ([ size, old_size, changed_by ].join(' '), err message)
    def compare_with(apk_filepath, other_apk_filepath)
        unsupported!
    end

    def filesize(apk_filepath)
        unsupported!
    end

    def downloadsize(apk_filepath)
        unsupported!
    end

    private

    def unsupported!
        raise "#{__method__} is not supported by #{self.class}"
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
danger-apkstats-0.0.2 lib/apkstats/command/executable_command.rb
danger-apkstats-0.0.1 lib/apkstats/command/executable_command.rb