Skip to content

Commit

Permalink
Bump version to 2.1.3
Browse files Browse the repository at this point in the history
Signed-off-by: David Celis <me@davidcel.is>
  • Loading branch information
davidcelis committed Jan 9, 2014
1 parent eec1161 commit f90419d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ source 'https://rubygems.org/'
gemspec

gem 'sqlite3', :platform => :ruby
gem 'activerecord-jdbcsqlite3-adapter', :platforms=>:jruby
gem 'activerecord-jdbcsqlite3-adapter', :platforms => :jruby
15 changes: 10 additions & 5 deletions lib/recommendable/version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
module Recommendable
MAJOR = 2
MINOR = 1
PATCH = 2
PRE = nil
class Version
MAJOR = 2
MINOR = 1
PATCH = 3

VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join '.'
def self.to_s
[MAJOR, MINOR, PATCH].join('.')
end
end

VERSION = Version.to_s.freeze
end

0 comments on commit f90419d

Please sign in to comment.