mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-06-30 06:12:15 -06:00
The HTTP URL is already getting redirected to HTTPS. Using the HTTPS URL directly makes it more secure and saves a HTTP round-trip.
11 lines
390 B
Ruby
11 lines
390 B
Ruby
cask :v1 => 'nodebox' do
|
|
version '3.0.43'
|
|
sha256 '3c0f93ad72d0bb1fba3a517515b38a7a6bd24cffe0d5560395b3fbaebdc72444'
|
|
|
|
url "https://secure.nodebox.net/downloads/NodeBox-#{version}.zip"
|
|
name 'NodeBox'
|
|
homepage 'https://www.nodebox.net/node/'
|
|
license :unknown # todo: change license and remove this comment; ':unknown' is a machine-generated placeholder
|
|
|
|
app 'NodeBox.app'
|
|
end
|