Sha256: f02e633ce013c047c05b9b677801e3b51dfc9a2a8ddd751ec30d51ca5929c287

Contents?: true

Size: 360 Bytes

Versions: 21

Compression:

Stored size: 360 Bytes

Contents

require "thor"

module Codelation
  class Cli < Thor
    SEQUEL_PRO_APP_DOWNLOAD_URL = "http://codelation-cli.s3.amazonaws.com/sequel-pro-1.0.2.zip"

  private

    # Install Sequel Pro.app
    def install_sequel_pro
      zip_file_path = download_file(SEQUEL_PRO_APP_DOWNLOAD_URL)
      extract_app_from_zip("Sequel Pro.app", zip_file_path)
    end
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
codelation-cli-0.0.2 lib/codelation/development/sequel_pro.rb