Sha256: a37f39b757dd94b1208e6b7147dc52e7ce71f8bf844dc61959663caffdbe9446
Contents?: true
Size: 682 Bytes
Versions: 7
Compression:
Stored size: 682 Bytes
Contents
require 'cocoapods' require 'pathname' module Qricker class RickerSpec attr_accessor :name attr_accessor :path def initialize(name, path) @name = name @path = path @specification = nil end def valid? if @specification.nil? return false end return true end def to_s "RickerSpec name:#{@name} path:#{@path}" end def podSpecilication if @specification.nil? specPath = Pathname(@path).join("#{@name}.podspec") @specification = Pod::Specification.from_file(specPath.to_path) end return @specification end end def Qricker.parseRCTL(rctlFile) end end
Version data entries
7 entries across 7 versions & 1 rubygems