├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── automerge.yml │ ├── lint.yml │ ├── tag_and_release.yml │ └── test.yml ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── .vscode └── settings.json ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── jekyll-last-modified-at.gemspec ├── lib ├── jekyll-last-modified-at.rb └── jekyll-last-modified-at │ ├── determinator.rb │ ├── executor.rb │ ├── git.rb │ ├── hook.rb │ ├── tag.rb │ └── version.rb ├── script ├── bootstrap └── cibuild └── spec ├── dev └── .gitkeep ├── fixtures ├── _config.yml ├── _layouts │ ├── last_modified_at.html │ └── last_modified_at_with_format.html ├── _posts │ ├── 1984-03-06-command.md │ ├── 1984-03-06-last-modified-at-with-format.md │ └── 1984-03-06-last-modified-at.md └── file.txt ├── jekyll-last-modified-at ├── determinator_spec.rb ├── executor_spec.rb └── tag_spec.rb ├── plugins └── last_modified_at_spec.rb └── spec_helper.rb /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/tag_and_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/.github/workflows/tag_and_release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.1 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/Rakefile -------------------------------------------------------------------------------- /jekyll-last-modified-at.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/jekyll-last-modified-at.gemspec -------------------------------------------------------------------------------- /lib/jekyll-last-modified-at.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/lib/jekyll-last-modified-at.rb -------------------------------------------------------------------------------- /lib/jekyll-last-modified-at/determinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/lib/jekyll-last-modified-at/determinator.rb -------------------------------------------------------------------------------- /lib/jekyll-last-modified-at/executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/lib/jekyll-last-modified-at/executor.rb -------------------------------------------------------------------------------- /lib/jekyll-last-modified-at/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/lib/jekyll-last-modified-at/git.rb -------------------------------------------------------------------------------- /lib/jekyll-last-modified-at/hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/lib/jekyll-last-modified-at/hook.rb -------------------------------------------------------------------------------- /lib/jekyll-last-modified-at/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/lib/jekyll-last-modified-at/tag.rb -------------------------------------------------------------------------------- /lib/jekyll-last-modified-at/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/lib/jekyll-last-modified-at/version.rb -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | bundle install 4 | -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | script/bootstrap > /dev/null 2>&1 4 | bundle exec rake spec 5 | -------------------------------------------------------------------------------- /spec/dev/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/_config.yml: -------------------------------------------------------------------------------- 1 | name: Your New Jekyll Site 2 | timezone: UTC 3 | -------------------------------------------------------------------------------- /spec/fixtures/_layouts/last_modified_at.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/spec/fixtures/_layouts/last_modified_at.html -------------------------------------------------------------------------------- /spec/fixtures/_layouts/last_modified_at_with_format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/spec/fixtures/_layouts/last_modified_at_with_format.html -------------------------------------------------------------------------------- /spec/fixtures/_posts/1984-03-06-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/spec/fixtures/_posts/1984-03-06-command.md -------------------------------------------------------------------------------- /spec/fixtures/_posts/1984-03-06-last-modified-at-with-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/spec/fixtures/_posts/1984-03-06-last-modified-at-with-format.md -------------------------------------------------------------------------------- /spec/fixtures/_posts/1984-03-06-last-modified-at.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/spec/fixtures/_posts/1984-03-06-last-modified-at.md -------------------------------------------------------------------------------- /spec/fixtures/file.txt: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | A page: 5 | 6 | {% last_modified_at %} 7 | -------------------------------------------------------------------------------- /spec/jekyll-last-modified-at/determinator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/spec/jekyll-last-modified-at/determinator_spec.rb -------------------------------------------------------------------------------- /spec/jekyll-last-modified-at/executor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/spec/jekyll-last-modified-at/executor_spec.rb -------------------------------------------------------------------------------- /spec/jekyll-last-modified-at/tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/spec/jekyll-last-modified-at/tag_spec.rb -------------------------------------------------------------------------------- /spec/plugins/last_modified_at_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/spec/plugins/last_modified_at_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-last-modified-at/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------