Sha256: dd25160099287bb42c8cc872fdffd076363da14b166c1a66a12d751a38448a6b

Contents?: true

Size: 324 Bytes

Versions: 6

Compression:

Stored size: 324 Bytes

Contents

#!/usr/bin/env ruby.exe
VENDOR_PATH = File.expand_path('..', __dir__)
Dir.chdir(VENDOR_PATH) do
  begin
    exec "yarnpkg #{ARGV.join(" ")}"
  rescue Errno::ENOENT
    $stderr.puts "Yarn executable was not detected in the system."
    $stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install"
    exit 1
  end
end

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
Depreciation-0.1.3 bin/yarn
sandboxy-2.0.0 examples/rails_example/bin/yarn
omniauth-slooob-1.0.0 examples/rails_example/bin/yarn
sandboxy-1.1.1 examples/rails_example/bin/yarn
sandboxy-1.1.0 examples/rails_example/bin/yarn
sandboxy-1.0.0 examples/rails_example/bin/yarn