Sha256: 2a2fb688caa20a79a79da9a3e6e739e8e83a1c6a3fa5100b4ab481842a4d5ea4
Contents?: true
Size: 992 Bytes
Versions: 1
Compression:
Stored size: 992 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'cocoapods_packager.rb' Gem::Specification.new do |spec| spec.name = 'cocoapods-packager-next' spec.version = Pod::Packager::VERSION spec.authors = ['Kyle Fuller', 'Boris Bügling', 'Chenguang Wang'] spec.summary = 'A new version of cocoapods-packager, fix many adaptation issues with the new version of Xcode, CocoaPods plugin which allows you to generate a framework or static library from a podspec.' spec.homepage = 'https://github.com/wwwcg/cocoapods-packager-next' spec.license = 'MIT' spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_dependency "cocoapods", '>= 1.7.3', '< 2.0' spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cocoapods-packager-next-2.0.0 | cocoapods-packager-next.gemspec |