├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── cocoapods-chillax-swift.gemspec └── lib ├── cocoapods-chillax-swift.rb ├── cocoapods_plugin.rb ├── installer.rb └── plugin.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/cocoapods-chillax-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/cocoapods-chillax-swift/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/cocoapods-chillax-swift/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/cocoapods-chillax-swift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/cocoapods-chillax-swift/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' 2 | -------------------------------------------------------------------------------- /cocoapods-chillax-swift.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/cocoapods-chillax-swift/HEAD/cocoapods-chillax-swift.gemspec -------------------------------------------------------------------------------- /lib/cocoapods-chillax-swift.rb: -------------------------------------------------------------------------------- 1 | module CocoaPodsChillaxSwift 2 | VERSION = "0.2.0" 3 | end 4 | -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- 1 | require_relative 'plugin' 2 | -------------------------------------------------------------------------------- /lib/installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/cocoapods-chillax-swift/HEAD/lib/installer.rb -------------------------------------------------------------------------------- /lib/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/cocoapods-chillax-swift/HEAD/lib/plugin.rb --------------------------------------------------------------------------------