├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── cocoapods-release.gemspec └── lib ├── cocoapods_plugin.rb ├── pod └── command │ └── release.rb └── version.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparrow-Labs/cocoapods-release/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparrow-Labs/cocoapods-release/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparrow-Labs/cocoapods-release/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparrow-Labs/cocoapods-release/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /cocoapods-release.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparrow-Labs/cocoapods-release/HEAD/cocoapods-release.gemspec -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- 1 | require 'pod/command/release' 2 | -------------------------------------------------------------------------------- /lib/pod/command/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sparrow-Labs/cocoapods-release/HEAD/lib/pod/command/release.rb -------------------------------------------------------------------------------- /lib/version.rb: -------------------------------------------------------------------------------- 1 | module CocoapodRelease 2 | VERSION = "0.3.1" 3 | end 4 | --------------------------------------------------------------------------------