views:

27

answers:

1

Up to Rails 2.3.8, there is a constant:

RAILS_GEM_VERSION   "2.3.8"

but Rails 3.0.0 doesn't have it. Is there other ways?

+3  A: 

Use Rails.version.

Most environment information that you might need from Rails should be accessible from that class.

The documentation.

ba