~ubuntu-branches/ubuntu/oneiric/ruby-activesupport-2.3/oneiric-updates

« back to all changes in this revision

Viewing changes to lib/active_support/version.rb

  • Committer: Bazaar Package Importer
  • Author(s): Ondřej Surý
  • Date: 2011-06-01 14:30:04 UTC
  • Revision ID: james.westby@ubuntu.com-20110601143004-wy5jrvj06x72qiqs
Tags: upstream-2.3.11
Import upstream version 2.3.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
module ActiveSupport
 
2
  module VERSION #:nodoc:
 
3
    MAJOR = 2
 
4
    MINOR = 3
 
5
    TINY  = 11
 
6
 
 
7
    STRING = [MAJOR, MINOR, TINY].join('.')
 
8
  end
 
9
end