Skip to content

Commit

Permalink
Fix #20 Add MAJOR, MINOR, PATCH to version.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
jhx committed Sep 15, 2014
1 parent 7c34f0c commit 9011bff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/github-css-rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
module GithubCss
module Rails
# Refer to Semantic Versioning 2.0.0 (http://semver.org).
VERSION = '1.1.3'
MAJOR = 1
MINOR = 1
PATCH = 3
BUILD = nil
VERSION = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
end
end

0 comments on commit 9011bff

Please sign in to comment.