├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .travis.yml ├── Cheffile ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── attributes └── launchctl.rb ├── metadata.rb ├── recipes └── launchctl.rb ├── soloistrc ├── spec ├── integration │ └── cookbook_spec.rb └── spec_helper.rb └── templates └── default └── bash_it └── custom └── brew-cask-global-appdir.bash /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | --format progress 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | system 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cheffile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/Cheffile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/Rakefile -------------------------------------------------------------------------------- /attributes/launchctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/attributes/launchctl.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/launchctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/recipes/launchctl.rb -------------------------------------------------------------------------------- /soloistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/soloistrc -------------------------------------------------------------------------------- /spec/integration/cookbook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/spec/integration/cookbook_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pivotal-sprout/sprout-homebrew/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /templates/default/bash_it/custom/brew-cask-global-appdir.bash: -------------------------------------------------------------------------------- 1 | export HOMEBREW_CASK_OPTS="--appdir=/Applications" 2 | --------------------------------------------------------------------------------