1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2026-01-27 02:28:50 +01:00

Update rails and code

This commit is contained in:
2017-11-23 13:52:13 +01:00
parent 8334baff99
commit 95bb01b440
30 changed files with 340 additions and 152 deletions

11
bin/yarn Normal file
View File

@@ -0,0 +1,11 @@
#!/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