├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── motion-cocoapods.rb └── motion │ └── project │ ├── cocoapods.rb │ └── version.rb ├── motion-cocoapods-1.11.0.gem ├── motion-cocoapods.gemspec └── spec ├── cocoapods_spec.rb ├── spec_helper.rb └── use_frameworks_spec.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .*.sw? 2 | pkg 3 | tmp 4 | spec/fixtures/RestKitTest/vendor 5 | .idea/ 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/motion-cocoapods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/lib/motion-cocoapods.rb -------------------------------------------------------------------------------- /lib/motion/project/cocoapods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/lib/motion/project/cocoapods.rb -------------------------------------------------------------------------------- /lib/motion/project/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/lib/motion/project/version.rb -------------------------------------------------------------------------------- /motion-cocoapods-1.11.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/motion-cocoapods-1.11.0.gem -------------------------------------------------------------------------------- /motion-cocoapods.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/motion-cocoapods.gemspec -------------------------------------------------------------------------------- /spec/cocoapods_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/spec/cocoapods_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/use_frameworks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymotion-community/motion-cocoapods/HEAD/spec/use_frameworks_spec.rb --------------------------------------------------------------------------------