/cocoapods-compact-spec

A CocoaPods plugin that helps define pod specs with minimal code

Primary LanguageRubyMIT LicenseMIT

cocoapods-compact-spec

Test License Gem

A CocoaPods plugin to help define podspecs with minimal code.

Motivation

When declaring podspecs, developers have to specify quite a lot of info. This comes with a great maintenance cost working with development pods. For example, if one wish to increase the deployment target of the project, he/she might have to modify accross development podspecs.

This CocoaPods plugin offer a compact declaration of a spec. Something like this would suffice:

Pod::Spec.new do |s|
  s.name = "ABC"
end

Installation

Via Bundler:

# In Gemfile
gem "cocoapods-compact-spec"

Via RubyGems:

$ gem install cocoapods-compact-spec

Usage

TBU