├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── README.md ├── Rakefile ├── bin └── cocoacache ├── cocoacache.gemspec ├── codecov.yml ├── lib ├── cocoacache.rb └── cocoacache │ ├── command.rb │ ├── core.rb │ └── version.rb └── test ├── fixtures ├── OriginSpecs.zip └── Podfile.lock ├── helper.rb ├── test_command.rb └── test_core.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | coverage/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/cocoacache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/bin/cocoacache -------------------------------------------------------------------------------- /cocoacache.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/cocoacache.gemspec -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/codecov.yml -------------------------------------------------------------------------------- /lib/cocoacache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/lib/cocoacache.rb -------------------------------------------------------------------------------- /lib/cocoacache/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/lib/cocoacache/command.rb -------------------------------------------------------------------------------- /lib/cocoacache/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/lib/cocoacache/core.rb -------------------------------------------------------------------------------- /lib/cocoacache/version.rb: -------------------------------------------------------------------------------- 1 | module CocoaCache 2 | VERSION = "0.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /test/fixtures/OriginSpecs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/test/fixtures/OriginSpecs.zip -------------------------------------------------------------------------------- /test/fixtures/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/test/fixtures/Podfile.lock -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/test_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/test/test_command.rb -------------------------------------------------------------------------------- /test/test_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StyleShare/CocoaCache/HEAD/test/test_core.rb --------------------------------------------------------------------------------