├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── cocoapods_links.gemspec ├── lib ├── cocoapods_links.rb ├── cocoapods_plugin.rb └── pod │ ├── command │ ├── link.rb │ ├── list.rb │ └── unlink.rb │ ├── links.rb │ ├── lockfile.rb │ └── pod.rb └── spec ├── command ├── link_spec.rb ├── list_spec.rb └── unlink_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/Rakefile -------------------------------------------------------------------------------- /cocoapods_links.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/cocoapods_links.gemspec -------------------------------------------------------------------------------- /lib/cocoapods_links.rb: -------------------------------------------------------------------------------- 1 | module CocoapodsLinks 2 | VERSION = '0.3.0' 3 | end 4 | -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/lib/cocoapods_plugin.rb -------------------------------------------------------------------------------- /lib/pod/command/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/lib/pod/command/link.rb -------------------------------------------------------------------------------- /lib/pod/command/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/lib/pod/command/list.rb -------------------------------------------------------------------------------- /lib/pod/command/unlink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/lib/pod/command/unlink.rb -------------------------------------------------------------------------------- /lib/pod/links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/lib/pod/links.rb -------------------------------------------------------------------------------- /lib/pod/lockfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/lib/pod/lockfile.rb -------------------------------------------------------------------------------- /lib/pod/pod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/lib/pod/pod.rb -------------------------------------------------------------------------------- /spec/command/link_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/spec/command/link_spec.rb -------------------------------------------------------------------------------- /spec/command/list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/spec/command/list_spec.rb -------------------------------------------------------------------------------- /spec/command/unlink_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/spec/command/unlink_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowens/cocoapods-links/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------