lib/twitter/version.rb in twitter-5.1.1 vs lib/twitter/version.rb in twitter-5.2.0

- old
+ new

@@ -1,18 +1,15 @@ module Twitter class Version MAJOR = 5 - MINOR = 1 - PATCH = 1 + MINOR = 2 + PATCH = 0 PRE = nil class << self - # @return [String] def to_s [MAJOR, MINOR, PATCH, PRE].compact.join('.') end - end - end end