summaryrefslogtreecommitdiffhomepage
path: root/bin/yarn
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2020-12-02 19:26:28 -0500
committerrealtradam <[email protected]>2020-12-02 19:26:28 -0500
commitd13b636bd654244f894943c2968a7386e8379605 (patch)
tree410809bae61eac943e1af19ecfd2c2f31143c796 /bin/yarn
downloadrails-tree-style-activerecord-d13b636bd654244f894943c2968a7386e8379605.tar.gz
rails-tree-style-activerecord-d13b636bd654244f894943c2968a7386e8379605.zip
initial
Diffstat (limited to 'bin/yarn')
-rwxr-xr-xbin/yarn11
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/yarn b/bin/yarn
new file mode 100755
index 0000000..460dd56
--- /dev/null
+++ b/bin/yarn
@@ -0,0 +1,11 @@
+#!/usr/bin/env ruby
+APP_ROOT = File.expand_path('..', __dir__)
+Dir.chdir(APP_ROOT) do
+ begin
+ exec "yarnpkg", *ARGV
+ 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