You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
458 B
19 lines
458 B
cask 'sequel-pro-nightly' do
|
|
version :latest
|
|
sha256 :no_check
|
|
|
|
url do
|
|
require 'open-uri'
|
|
open('https://sequelpro.com/builds/latest-test-build.xml') do |page|
|
|
page.read[%r{https:\/\/sequelpro.com\/builds\/Sequel-Pro-Build-\w+.zip}]
|
|
end
|
|
end
|
|
name 'Sequel Pro'
|
|
homepage 'https://sequelpro.com/test-builds'
|
|
|
|
depends_on macos: '>= :leopard'
|
|
|
|
app 'Sequel Pro.app'
|
|
|
|
zap delete: '~/Library/Application Support/Sequel Pro/Data'
|
|
end
|
|
|