File: version.rb

package info (click to toggle)
ruby-jekyll-paginate-v2 3.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,988 kB
  • sloc: ruby: 1,085; sh: 7; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
module Jekyll
  module PaginateV2
    VERSION = "3.0.0"
    # When modifying remember to issue a new tag command in git before committing, then push the new tag
    #   git tag -a v3.0.0 -m "Gem v3.0.0"
    #   git push origin --tags
    # Yanking a published Gem
    #   gem yank jekyll-paginate-v2 -v VERSION
    # Building gem
    #   gem build jekyll-paginate-v2.gemspec
  end # module PaginateV2
end # module Jekyll