Changed Firefox to Firefox.app in CONTRIBUTING, for consistency with other examples.

This commit is contained in:
Vítor Galvão 2014-09-11 20:15:06 +01:00
parent bc491ba3c8
commit be96758d83
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class Vagrant < Cask
end
```
And here is one for Firefox; note that it has an unversioned download (the download `url` does not contain the version number, unlike the example above). It also suppresses the checksum with `sha256 :no_check` (necessary since the checksum will change when a new version is available). This combination of `version 'latest'` and `sha256 :no_check` is currently the preferred mechanism when an unversioned download link is available:
And here is one for `Firefox.app`. Note that it has an unversioned download (the download `url` does not contain the version number, unlike the example above). It also suppresses the checksum with `sha256 :no_check` (necessary since the checksum will change when a new version is available). This combination of `version 'latest'` and `sha256 :no_check` is currently the preferred mechanism when an unversioned download link is available:
```ruby
class Firefox < Cask