Skip to content

Commit

Permalink
Update README.md with dSYM generation information
Browse files Browse the repository at this point in the history
  • Loading branch information
Renzo Crisóstomo committed Apr 9, 2018
1 parent a9e071d commit 9aa6ca7
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ Write a simple Podfile like this:
```ruby
platform :osx, '10.10'

plugin 'cocoapods-rome'
plugin 'cocoapods-rome' {
dsym: true,
configuration: 'Release'
}

target 'caesar' do
pod 'Alamofire'
Expand All @@ -37,6 +40,22 @@ and you will end up with dynamic frameworks:
$ tree Rome/
Rome/
└── Alamofire.framework
$ tree dSYM/
dSYM/
├── iphoneos
│   └── Alamofire.framework.dSYM
│   └── Contents
│   ├── Info.plist
│   └── Resources
│   └── DWARF
│   └── Alamofire
└── iphonesimulator
└── Alamofire.framework.dSYM
└── Contents
├── Info.plist
└── Resources
└── DWARF
└── Alamofire
```

## Hooks
Expand Down

0 comments on commit 9aa6ca7

Please sign in to comment.