Sha256: b7d1c3c15026e003f2ff0d62fd8a448bb7ce174a5cb21f2e15afaf7c6622ef4a

Contents?: true

Size: 866 Bytes

Versions: 10

Compression:

Stored size: 866 Bytes

Contents

require 'cocoapods-tdfire-binary/command/lint'
require 'cocoapods-tdfire-binary/command/package'
require 'cocoapods-tdfire-binary/command/publish'
require 'cocoapods-tdfire-binary/command/pull'
require 'cocoapods-tdfire-binary/command/push'
require 'cocoapods-tdfire-binary/command/assemble'
require 'cocoapods-tdfire-binary/command/lib'

module Pod
	class Command
		class Binary < Command
			self.abstract_command = true
			self.summary = '2Dfire 二进制工具库'
			self.description = <<-DESC
				2Dfire 二进制工具库,提供打包、lint、推送、拉取、发布等命令
      DESC

			FIRE_FLAG = "2dfire"
			# FIRE_FLAG = "private"

      def first_podspec
      	Dir["#{Dir.pwd}/*.podspec"].first
			end

			def fire_sources
				config.sources_manager.all.select do |source|
					source.url.downcase.include? FIRE_FLAG
				end
			end
		end
	end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
cocoapods-tdfire-binary-1.0.10 lib/cocoapods-tdfire-binary/command/binary.rb
cocoapods-tdfire-binary-1.0.9 lib/cocoapods-tdfire-binary/command/binary.rb
cocoapods-tdfire-binary-1.0.8 lib/cocoapods-tdfire-binary/command/binary.rb
cocoapods-tdfire-binary-1.0.7 lib/cocoapods-tdfire-binary/command/binary.rb
cocoapods-tdfire-binary-1.0.6 lib/cocoapods-tdfire-binary/command/binary.rb
cocoapods-tdfire-binary-1.0.5 lib/cocoapods-tdfire-binary/command/binary.rb
cocoapods-tdfire-binary-1.0.4 lib/cocoapods-tdfire-binary/command/binary.rb
cocoapods-tdfire-binary-1.0.3 lib/cocoapods-tdfire-binary/command/binary.rb
cocoapods-tdfire-binary-1.0.2 lib/cocoapods-tdfire-binary/command/binary.rb
cocoapods-tdfire-binary-1.0.0 lib/cocoapods-tdfire-binary/command/binary.rb