├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── linux-x64-cwebp ├── linux-x86-cwebp ├── osx-cwebp ├── win-x64-cwebp.exe └── win-x86-cwebp.exe ├── jekyll-webp.gemspec └── lib ├── jekyll-webp.rb └── jekyll-webp ├── defaults.rb ├── version.rb ├── webpExec.rb └── webpGenerator.rb /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/linux-x64-cwebp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/bin/linux-x64-cwebp -------------------------------------------------------------------------------- /bin/linux-x86-cwebp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/bin/linux-x86-cwebp -------------------------------------------------------------------------------- /bin/osx-cwebp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/bin/osx-cwebp -------------------------------------------------------------------------------- /bin/win-x64-cwebp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/bin/win-x64-cwebp.exe -------------------------------------------------------------------------------- /bin/win-x86-cwebp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/bin/win-x86-cwebp.exe -------------------------------------------------------------------------------- /jekyll-webp.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/jekyll-webp.gemspec -------------------------------------------------------------------------------- /lib/jekyll-webp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/lib/jekyll-webp.rb -------------------------------------------------------------------------------- /lib/jekyll-webp/defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/lib/jekyll-webp/defaults.rb -------------------------------------------------------------------------------- /lib/jekyll-webp/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/lib/jekyll-webp/version.rb -------------------------------------------------------------------------------- /lib/jekyll-webp/webpExec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/lib/jekyll-webp/webpExec.rb -------------------------------------------------------------------------------- /lib/jekyll-webp/webpGenerator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyll-webp/HEAD/lib/jekyll-webp/webpGenerator.rb --------------------------------------------------------------------------------