Sha256: 95bcf0bd6994797f4f2839abf97dcff25947c1672bc2d48b96175a4fa47ca730

Contents?: true

Size: 868 Bytes

Versions: 10

Compression:

Stored size: 868 Bytes

Contents

Gem.post_uninstall do |uninstaller|
  if uninstaller.spec.name == 'shopify-cli'
    if RUBY_PLATFORM.match(/mingw32/)
      bat_path = File.dirname(RbConfig.ruby)
      bat = "#{bat_path}\\shopify.bat"

      # delete the auto-generated batch script
      File.unlink(bat)
    else
      require 'fileutils'

      symlink = '/usr/local/bin/shopify'

      # delete the symbolic link IFF it exists AND it does not point to a file
      # (i.e., it's been left hanging as a result of the uninstall, as expected)
      #
      # if the file still exists, either the uninstall failed (possible but
      # unlikely) OR
      # there's another installation of the gem in another ruby folder that has
      # overwritten it, so leave the symbolic link alone
      system("sudo rm -f #{symlink}") if File.symlink?(symlink) && !File.exist?(symlink)
    end
  end

  true
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
shopify-cli-1.6.0 lib/rubygems_plugin.rb
shopify-cli-1.5.0 lib/rubygems_plugin.rb
shopify-cli-1.4.1 lib/rubygems_plugin.rb
shopify-cli-1.4.0 lib/rubygems_plugin.rb
shopify-cli-1.3.1 lib/rubygems_plugin.rb
shopify-cli-1.3.0 lib/rubygems_plugin.rb
shopify-cli-1.2.0 lib/rubygems_plugin.rb
shopify-cli-1.1.2 lib/rubygems_plugin.rb
shopify-cli-1.1.1 lib/rubygems_plugin.rb
shopify-cli-1.1.0 lib/rubygems_plugin.rb