├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── Rakefile ├── Readme.md ├── VERSION ├── bin └── wwdcdownloader ├── lib └── wwdcdownloader.rb └── wwdcdownloader.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle/ 2 | vendor/ 3 | wwdc2018-assets/ -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfahrenkrug/WWDC-Downloader/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfahrenkrug/WWDC-Downloader/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfahrenkrug/WWDC-Downloader/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfahrenkrug/WWDC-Downloader/HEAD/Rakefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfahrenkrug/WWDC-Downloader/HEAD/Readme.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 20.18.1 2 | -------------------------------------------------------------------------------- /bin/wwdcdownloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfahrenkrug/WWDC-Downloader/HEAD/bin/wwdcdownloader -------------------------------------------------------------------------------- /lib/wwdcdownloader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfahrenkrug/WWDC-Downloader/HEAD/lib/wwdcdownloader.rb -------------------------------------------------------------------------------- /wwdcdownloader.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfahrenkrug/WWDC-Downloader/HEAD/wwdcdownloader.gemspec --------------------------------------------------------------------------------