Files
rails/activeresource/lib/active_resource/version.rb
David Heinemeier Hansson df41c7cb61 Include Active Resource instead of Action Web Service [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6550 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2007-04-23 18:55:54 +00:00

10 lines
145 B
Ruby

module ActiveResource
module VERSION #:nodoc:
MAJOR = 0
MINOR = 9
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end
end