Merge pull request #2743 from rolandwalker/screen_saver_followups

tiny nits on new Screen Saver artifact
This commit is contained in:
Roland Walker
2014-02-03 10:22:39 -08:00
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ Additional fields you might need for special use-cases:
| `service` | relative path to a service that should be linked into the `~/Library/Services` folder on installation
| `binary` | relative path to a binary that should be linked into the `~/usr/local/bin` folder on installation
| `input_method` | relative path to a input method that should be linked into the `~/Library/Input Methods` folder on installation
| `screen_saver` | relative path to a screensaver that should be linked into the `~/Library/Screen Savers` folder on installation
| `screen_saver` | relative path to a Screen Saver that should be linked into the `~/Library/Screen Savers` folder on installation
| `nested_container` | relative path to an inner container that must be extracted before moving on with the installation; this allows us to support dmg inside tar, zip inside dmg, etc.
| `depends_on_formula` | a list of Homebrew Formulae upon which this Cask depends
| `caveats` | a string or Ruby block providing the user with Cask-specific information at install time (see __Caveats Details__ for more information)
+1 -1
View File
@@ -59,7 +59,7 @@ We don't know up-front precisely what files are going to be in the
dmg/zip/tgz/etc, so it's really helpful to have a place to dump all of them
safely, then iterate through and act on the files we care about. For an `.app` file
this may be symlinking it into `~/Applications` or `/Applications`, for a `.pkg` file
this might be running the installer. For a screensaver it may be symlinking it
this might be running the installer. For a Screen Saver it may be symlinking it
into the appropriate directory for it to show up in System Preferences.
The reason we implement this project on top of Homebrew was based on a belief
+1 -1
View File
@@ -17,7 +17,7 @@ require 'cask/artifact/widget'
require 'cask/artifact/service'
require 'cask/artifact/caskroom_only'
require 'cask/artifact/input_method'
require 'cask/artifact/screensaver'
require 'cask/artifact/screen_saver'
module Cask::Artifact
@@ -1,3 +1,3 @@
class Cask::Artifact::ScreenSaver < Cask::Artifact::Symlinked
end
end