module Rails::Info

def framework_version(framework)

def framework_version(framework)
  if Object.const_defined?(framework.classify)
    require "#{framework}/version"
    "#{framework.classify}::VERSION::STRING".constantize
  end
end