Sha256: 5e1efdad72faf482278f4861a628fda2caa689ba733cae8156a4b9dd8825cb90

Contents?: true

Size: 311 Bytes

Versions: 16

Compression:

Stored size: 311 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|
  `pod install`
end
```

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
xcake-0.6.5 docs/Hooks.md
xcake-0.6.4 docs/Hooks.md
xcake-0.6.2 docs/Hooks.md
xcake-0.5.3 docs/Hooks.md
xcake-0.5.2 docs/Hooks.md
xcake-0.5.1 docs/Hooks.md
xcake-0.5.0 docs/Hooks.md
xcake-0.4.8 docs/Hooks.md
xcake-0.4.7 docs/Hooks.md
xcake-0.4.6 docs/Hooks.md
xcake-0.4.5 docs/Hooks.md
xcake-0.4.4 docs/Hooks.md
xcake-0.4.3 docs/Hooks.md
xcake-0.4.2 docs/Hooks.md
xcake-0.4.1 docs/Hooks.md
xcake-0.3.1 docs/Hooks.md