├── .gitignore ├── Code └── Melody.swift ├── LICENSE ├── Makefile ├── Melody.podspec.json ├── README.md └── Tests ├── Expectation.swift ├── MelodySpec.swift ├── albumFixture.json └── fixture.json /.gitignore: -------------------------------------------------------------------------------- 1 | .conche 2 | doc 3 | -------------------------------------------------------------------------------- /Code/Melody.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonichu/Melody/HEAD/Code/Melody.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonichu/Melody/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonichu/Melody/HEAD/Makefile -------------------------------------------------------------------------------- /Melody.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonichu/Melody/HEAD/Melody.podspec.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonichu/Melody/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonichu/Melody/HEAD/Tests/Expectation.swift -------------------------------------------------------------------------------- /Tests/MelodySpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonichu/Melody/HEAD/Tests/MelodySpec.swift -------------------------------------------------------------------------------- /Tests/albumFixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonichu/Melody/HEAD/Tests/albumFixture.json -------------------------------------------------------------------------------- /Tests/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neonichu/Melody/HEAD/Tests/fixture.json --------------------------------------------------------------------------------