├── .gitignore ├── .rspec ├── .rubocop.yml ├── .tool-versions ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── jekyll-purgecss.gemspec ├── lib ├── jekyll-purgecss.rb ├── jekyll-purgecss │ └── version.rb └── jekyll │ └── hooks │ └── purgecss.rb └── spec ├── jekyll └── purgecss_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 2.6.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/bin/setup -------------------------------------------------------------------------------- /jekyll-purgecss.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/jekyll-purgecss.gemspec -------------------------------------------------------------------------------- /lib/jekyll-purgecss.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/lib/jekyll-purgecss.rb -------------------------------------------------------------------------------- /lib/jekyll-purgecss/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/lib/jekyll-purgecss/version.rb -------------------------------------------------------------------------------- /lib/jekyll/hooks/purgecss.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/lib/jekyll/hooks/purgecss.rb -------------------------------------------------------------------------------- /spec/jekyll/purgecss_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/spec/jekyll/purgecss_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhanberg/jekyll-purgecss/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------