我对 capistrano 比较陌生。我想知道如何在 capistrano 任务中对变量进行子串化。
虽然这给了我对irb的期望
ruby-1.9.2-p136 :012 > release_path = "12345678910"
=> "12345678910"
ruby-1.9.2-p136 :019 > release_path[-6..-1]
=> "678910"
它在 capistrano 任务中什么也不做
namespace :namespacename do
task :taskname do
release_path = "1234678910"
release_path[-6..-1]
# output is still "12345678910"
puts release_path
end
end
有人如何在 capistrano 任务中的变量上使用 ruby 类/方法?提前致谢。