Sha256: 3fd3e1b80a482507b5e610d60dcc8c5f6213141c0756607c05b4ceb4c002501a
Contents?: true
Size: 334 Bytes
Versions: 23
Compression:
Stored size: 334 Bytes
Contents
#Hooks Xcake allows you to run actions for certain events using Hooks. At the moment there is only one hook supported "after_save" which is called after a project is saved to disk. Here is an example where we run CocoaPods once a project has been generated: ```ruby Project.new do |c| after_save do `pod install` end end ```
Version data entries
23 entries across 23 versions & 1 rubygems