例如,在Fog
gem的代码片段中,例如
require 'rubygems'
require 'fog'
# create a connection to the service
dns = Fog::DNS.new({
:provider => 'Zerigo',
:zerigo_email => ZERIGO_EMAIL,
:zerigo_token => ZERIGO_TOKEN
})
zone = @dns.zones.create(
:domain => 'example.com',
:email => 'admin@example.com'
)
为什么dns
一开始不是实例变量,而是在下一段变成了实例变量?为什么zone
不是实例变量?