The extension API version of ruby. This includes the static vs
non-static distinction as extensions cannot be shared between the two.
# File lib/rubygems.rb, line 403
def self.extension_api_version # :nodoc:
if 'no' == RbConfig::CONFIG['ENABLE_SHARED'] then
"#{ruby_api_version}-static"
else
ruby_api_version
end
end