Welcome to mirror list, hosted at ThFree Co, Russian Federation.

podspec_json.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03e680e2a8b553c91aea642f6237851dff5e3559 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module BlobViewer
  class PodspecJson < Podspec
    self.file_types = %i[podspec_json]

    def package_name
      @package_name ||= fetch_from_json('name')
    end
  end
end