File: version.rb

package info (click to toggle)
ruby-rails-timeago 2.19.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 524 kB
  • sloc: javascript: 2,394; ruby: 376; makefile: 10
file content (17 lines) | stat: -rw-r--r-- 287 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Rails
  module Timeago
    module VERSION
      MAJOR = 2
      MINOR = 19
      PATCH = 0
      STAGE = nil
      STRING = [MAJOR, MINOR, PATCH, STAGE].reject(&:nil?).join('.').freeze

      def self.to_s
        STRING
      end
    end
  end
end