README.md in crittercism-0.1.1 vs README.md in crittercism-0.2.0

- old
+ new

@@ -47,21 +47,20 @@ ``` Refer to the [Crittercism docs](http://docs.crittercism.com/ios/ios.html) for information on how to use Crittercism's other features. -### Rake Task +### Uploading dSYM -You will need to upload your app's dSYM to Crittercism for symbolication. +This gem automatically uploads your dSYM file to Crittercism on every build. To +disable dSYM upload on simulator builds, add this configuration to your Rakefile: - $ rake crittercism:upload_dsym + app.crittercism_disable_on_simulator_builds = true -Typically, you will want to upload your dSYM every time you build your app. -You can configure your rake tasks to include this task. +If you want to manually upload your app's dSYM to Crittercism for symbolication, +you can use the following Rake task: -```ruby -task :my_custom_deploy_task => ['archive:distribution', 'crittercism:upload_dsym'] -``` + $ rake crittercism:upload_dsym <!-- ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests.