├── .github └── workflows │ └── ruby.yml ├── .gitignore ├── .rspec ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── jekyll_version_plugin.gemspec ├── lib └── jekyll_version_plugin.rb └── spec ├── integration_test.rb ├── jekyll_version_plugin_tag_spec.rb ├── spec_helper.rb └── support └── jekyll_template.rb /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-version-plugin/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-version-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --warnings 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-version-plugin/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-version-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-version-plugin/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-version-plugin/HEAD/Rakefile -------------------------------------------------------------------------------- /jekyll_version_plugin.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-version-plugin/HEAD/jekyll_version_plugin.gemspec -------------------------------------------------------------------------------- /lib/jekyll_version_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-version-plugin/HEAD/lib/jekyll_version_plugin.rb -------------------------------------------------------------------------------- /spec/integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-version-plugin/HEAD/spec/integration_test.rb -------------------------------------------------------------------------------- /spec/jekyll_version_plugin_tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-version-plugin/HEAD/spec/jekyll_version_plugin_tag_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-version-plugin/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/jekyll_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-murray/jekyll-version-plugin/HEAD/spec/support/jekyll_template.rb --------------------------------------------------------------------------------