jekyll_sort_natural
is a Jekyll plugin that sorts hashes using String#casecmp
, the case-insensitive version of String#<=>
.
This plugin contains code modified from tkrotoff.
By default, Enumerable#sort
uses <=>
for comparisons
See Add sort_natural to jekyll/filters.rb.
This plugin overrides sort_natural
provided by Liquid 4.
Installation
Add this line to your Jekyll project's Gemfile, within the jekyll_plugins
group:
group :jekyll_plugins do
gem 'jekyll_sort_natural'
end
And then execute:
$ bundle
Additional Information
More information is available on Mike Slinn’s website.
Development
After checking out the repo, run bin/setup
to install dependencies.
You can also run bin/console
for an interactive prompt that will allow you to experiment.
To build and install this gem onto your local machine, run:
$ bundle exec rake install
jekyll_sort_natural 1.0.0 built to pkg/jekyll_sort_natural-0.1.0.gem.
jekyll_sort_natural (1.0.0) installed.
Examine the newly built gem:
$ gem info jekyll_sort_natural
*** LOCAL GEMS ***
jekyll_sort_natural (1.0.0)
Author: Mike Slinn
Homepage:
https://github.com/mslinn/jekyll_sort_natural
License: MIT
Installed at: /home/mslinn/.gems
Generates Jekyll logger with colored output.
Build and Push to RubyGems
To release a new version,
-
Update the version number in
version.rb
. -
Commit all changes to git; if you don't the next step might fail with an unexplainable error message.
-
Run the following:
$ bundle exec rake release
The above creates a git tag for the version, commits the created tag, and pushes the new
.gem
file to RubyGems.org.
Contributing
- Fork the project
- Create a descriptively named feature branch
- Add your feature
- Submit a pull request
License
The gem is available as open source under the terms of the MIT License.