跳至内容 跳至搜索
方法
A

实例私有方法

after_bundle(&block)

注册在 bundle binstubs 运行后执行的回调。

after_bundle do
  git add: '.'
end
# File railties/lib/rails/generators/rails/app/app_generator.rb, line 595
def after_bundle(&block) # :doc:
  @after_bundle_callbacks << block
end