From 091f5e7be3a2a7ee116ab8be51612ed5ae793a16 Mon Sep 17 00:00:00 2001 From: f Date: Mon, 22 Apr 2019 19:07:43 -0300 Subject: [PATCH] why --- Gemfile | 1 + Gemfile.lock | 2 ++ bin/yarn | 11 ----------- 3 files changed, 3 insertions(+), 11 deletions(-) delete mode 100755 bin/yarn diff --git a/Gemfile b/Gemfile index e470e82..0a0406f 100644 --- a/Gemfile +++ b/Gemfile @@ -66,6 +66,7 @@ group :development do gem 'capistrano-passenger' gem 'capistrano-rails' gem 'capistrano-rbenv' + gem 'ed25519' gem 'letter_opener' gem 'rbnacl', '< 5.0' gem 'rubocop' diff --git a/Gemfile.lock b/Gemfile.lock index 0b12527..49fb3de 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -102,6 +102,7 @@ GEM dotenv-rails (2.7.2) dotenv (= 2.7.2) railties (>= 3.2, < 6.1) + ed25519 (1.2.4) em-websocket (0.5.1) eventmachine (>= 0.12.9) http_parser.rb (~> 0.6.0) @@ -347,6 +348,7 @@ DEPENDENCIES carrierwave-i18n commonmarker dotenv-rails + ed25519 email_address exception_notification font-awesome-rails diff --git a/bin/yarn b/bin/yarn deleted file mode 100755 index 80b670d..0000000 --- a/bin/yarn +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env ruby -# frozen_string_literal: true - -VENDOR_PATH = File.expand_path('..', __dir__) -Dir.chdir(VENDOR_PATH) do - exec "yarnpkg #{ARGV.join(' ')}" -rescue Errno::ENOENT - warn 'Yarn executable was not detected in the system.' - warn 'Download Yarn at https://yarnpkg.com/en/docs/install' - exit 1 -end