├── .gitignore ├── Changelog.md ├── LICENSE ├── MusicTheory.podspec ├── MusicTheory.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Package.swift ├── README.md ├── Sources ├── Chord.swift ├── Info.plist ├── Key.swift ├── Music.swift ├── MusicTheory.h ├── Note.swift └── NoteWithIntervals.swift └── Tests ├── Info.plist └── MusicTheoryTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/LICENSE -------------------------------------------------------------------------------- /MusicTheory.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/MusicTheory.podspec -------------------------------------------------------------------------------- /MusicTheory.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/MusicTheory.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MusicTheory.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/MusicTheory.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Chord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/Sources/Chord.swift -------------------------------------------------------------------------------- /Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/Sources/Info.plist -------------------------------------------------------------------------------- /Sources/Key.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/Sources/Key.swift -------------------------------------------------------------------------------- /Sources/Music.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/Sources/Music.swift -------------------------------------------------------------------------------- /Sources/MusicTheory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/Sources/MusicTheory.h -------------------------------------------------------------------------------- /Sources/Note.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/Sources/Note.swift -------------------------------------------------------------------------------- /Sources/NoteWithIntervals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/Sources/NoteWithIntervals.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/MusicTheoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbreves/MusicTheory/HEAD/Tests/MusicTheoryTests.swift --------------------------------------------------------------------------------