forked from git/git-scm.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.rb
35 lines (29 loc) · 772 Bytes
/
version.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true
# t.string :name
# t.string :commit_sha
# t.string :tree_sha
# t.datetime :committed
# t.timestamps
class Version < ApplicationRecord
validates :name, uniqueness: true
has_many :doc_versions, dependent: :delete_all
has_many :docs, through: :doc_versions
has_many :downloads, dependent: :delete_all
before_save :save_version_order
def save_version_order
self.vorder = Version.version_to_num(name)
end
def self.latest_version
Version.order("versions.vorder DESC").limit(1).first
end
def self.version_to_num(version)
version_int = 0.0
mult = 1_000_000
numbers = version.to_s.split(".")
numbers.each do |x|
version_int += x.to_f * mult
mult /= 100.0
end
version_int
end
end