Skip to content

Commit 7ee6155

Browse files
committed
Fix #20 Add MAJOR, MINOR, PATCH to version.rb
1 parent 8ad61e0 commit 7ee6155

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/logger-jquery-rails/version.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ module Rails
99
# "1.2.000" is logger v1.2.0 + gem release 0
1010
# "1.2.001" is logger v1.2.0 + gem release 1
1111
# "1.2.010" is logger v1.2.0 + gem release 10
12-
VERSION = '1.2.005'
12+
MAJOR = 1
13+
MINOR = 2
14+
PATCH = '005'
15+
BUILD = nil
16+
VERSION = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
1317
end
1418
end

0 commit comments

Comments
 (0)