├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE.txt ├── README.md ├── README_images └── alamofire.png ├── Rakefile ├── bin ├── carthage-play └── playground ├── cocoapods-playgrounds.gemspec ├── lib ├── cocoapods-playgrounds.rb ├── cocoapods-playgrounds │ ├── command │ │ └── playgrounds.rb │ ├── gem_version.rb │ └── generate │ │ ├── playground.rb │ │ ├── workspace.rb │ │ └── workspace │ │ ├── carthage.rb │ │ └── cocoapods.rb └── cocoapods_plugin.rb └── spec ├── command └── playgrounds_spec.rb ├── generate_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pkg 3 | .idea/ 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/README.md -------------------------------------------------------------------------------- /README_images/alamofire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/README_images/alamofire.png -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/carthage-play: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/bin/carthage-play -------------------------------------------------------------------------------- /bin/playground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/bin/playground -------------------------------------------------------------------------------- /cocoapods-playgrounds.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/cocoapods-playgrounds.gemspec -------------------------------------------------------------------------------- /lib/cocoapods-playgrounds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/lib/cocoapods-playgrounds.rb -------------------------------------------------------------------------------- /lib/cocoapods-playgrounds/command/playgrounds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/lib/cocoapods-playgrounds/command/playgrounds.rb -------------------------------------------------------------------------------- /lib/cocoapods-playgrounds/gem_version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module CocoapodsPlaygrounds 4 | VERSION = '1.2.2' 5 | end 6 | -------------------------------------------------------------------------------- /lib/cocoapods-playgrounds/generate/playground.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/lib/cocoapods-playgrounds/generate/playground.rb -------------------------------------------------------------------------------- /lib/cocoapods-playgrounds/generate/workspace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/lib/cocoapods-playgrounds/generate/workspace.rb -------------------------------------------------------------------------------- /lib/cocoapods-playgrounds/generate/workspace/carthage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/lib/cocoapods-playgrounds/generate/workspace/carthage.rb -------------------------------------------------------------------------------- /lib/cocoapods-playgrounds/generate/workspace/cocoapods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/lib/cocoapods-playgrounds/generate/workspace/cocoapods.rb -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/lib/cocoapods_plugin.rb -------------------------------------------------------------------------------- /spec/command/playgrounds_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/spec/command/playgrounds_spec.rb -------------------------------------------------------------------------------- /spec/generate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/spec/generate_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmallteapot/cocoapods-playgrounds/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------