├── .gitignore ├── .hound.yml ├── .swiftlint.yml ├── .travis.yml ├── CHANGELOG.MD ├── DarkSkyKit.podspec ├── DarkSkyKit ├── Configuration.swift ├── Current.swift ├── DarkSkyKit.swift ├── Forecast.swift ├── Models │ ├── ForecastAlert.swift │ ├── ForecastDataPoint.swift │ └── ForecastFlags.swift ├── Router.swift └── TimeMachine.swift ├── Example ├── DarkSkyKitExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── DarkSkyKitExample.xcscheme │ │ └── DarkSkyKitExampleTests.xcscheme ├── DarkSkyKitExample.xcworkspace │ └── contents.xcworkspacedata ├── DarkSkyKitTests │ ├── ConfigurationTests.swift │ ├── ForecastCurrentTests.swift │ ├── ForecastKitTests.swift │ ├── ForecastTimeMachineTests.swift │ ├── Info.plist │ └── jsons │ │ └── forecast.json ├── Podfile ├── Podfile.lock └── SupportingFiles │ └── Info.plist ├── Gemfile ├── Gemfile.lock ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── assets └── darksky-header.png └── fastlane ├── Fastfile └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- 1 | swift: 2 | config_file: .swiftlint.yml 3 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.MD: -------------------------------------------------------------------------------- 1 | ## Changelog 2 | -------------------------------------------------------------------------------- /DarkSkyKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/DarkSkyKit.podspec -------------------------------------------------------------------------------- /DarkSkyKit/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/DarkSkyKit/Configuration.swift -------------------------------------------------------------------------------- /DarkSkyKit/Current.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/DarkSkyKit/Current.swift -------------------------------------------------------------------------------- /DarkSkyKit/DarkSkyKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/DarkSkyKit/DarkSkyKit.swift -------------------------------------------------------------------------------- /DarkSkyKit/Forecast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/DarkSkyKit/Forecast.swift -------------------------------------------------------------------------------- /DarkSkyKit/Models/ForecastAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/DarkSkyKit/Models/ForecastAlert.swift -------------------------------------------------------------------------------- /DarkSkyKit/Models/ForecastDataPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/DarkSkyKit/Models/ForecastDataPoint.swift -------------------------------------------------------------------------------- /DarkSkyKit/Models/ForecastFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/DarkSkyKit/Models/ForecastFlags.swift -------------------------------------------------------------------------------- /DarkSkyKit/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/DarkSkyKit/Router.swift -------------------------------------------------------------------------------- /DarkSkyKit/TimeMachine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/DarkSkyKit/TimeMachine.swift -------------------------------------------------------------------------------- /Example/DarkSkyKitExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/DarkSkyKitExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/DarkSkyKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/DarkSkyKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DarkSkyKitExample.xcodeproj/xcshareddata/xcschemes/DarkSkyKitExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/DarkSkyKitExample.xcodeproj/xcshareddata/xcschemes/DarkSkyKitExample.xcscheme -------------------------------------------------------------------------------- /Example/DarkSkyKitExample.xcodeproj/xcshareddata/xcschemes/DarkSkyKitExampleTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/DarkSkyKitExample.xcodeproj/xcshareddata/xcschemes/DarkSkyKitExampleTests.xcscheme -------------------------------------------------------------------------------- /Example/DarkSkyKitExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/DarkSkyKitExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DarkSkyKitTests/ConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/DarkSkyKitTests/ConfigurationTests.swift -------------------------------------------------------------------------------- /Example/DarkSkyKitTests/ForecastCurrentTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/DarkSkyKitTests/ForecastCurrentTests.swift -------------------------------------------------------------------------------- /Example/DarkSkyKitTests/ForecastKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/DarkSkyKitTests/ForecastKitTests.swift -------------------------------------------------------------------------------- /Example/DarkSkyKitTests/ForecastTimeMachineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/DarkSkyKitTests/ForecastTimeMachineTests.swift -------------------------------------------------------------------------------- /Example/DarkSkyKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/DarkSkyKitTests/Info.plist -------------------------------------------------------------------------------- /Example/DarkSkyKitTests/jsons/forecast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/DarkSkyKitTests/jsons/forecast.json -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/SupportingFiles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Example/SupportingFiles/Info.plist -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/README.md -------------------------------------------------------------------------------- /assets/darksky-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/assets/darksky-header.png -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/DarkSkyKit/HEAD/fastlane/README.md --------------------------------------------------------------------------------