1
0
Fork 0

Remove binstabs

This commit is contained in:
Alex Kotov 2020-01-16 21:07:16 +05:00
parent f85f23ac73
commit 321111d094
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
7 changed files with 0 additions and 35 deletions

View File

@ -8,7 +8,6 @@ AllCops:
DisplayCopNames: true
Exclude:
- 'bin/**/*'
- 'db/schema.rb'
- 'lib/tasks/cucumber.rake'
- 'lib/templates/**/*'

View File

@ -1,3 +0,0 @@
#!/usr/bin/env ruby
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
load Gem.bin_path('bundler', 'bundle')

View File

@ -1,4 +0,0 @@
#!/usr/bin/env ruby
APP_PATH = File.expand_path('../config/application', __dir__)
require_relative '../config/boot'
require 'rails/commands'

View File

@ -1,4 +0,0 @@
#!/usr/bin/env ruby
require_relative '../config/boot'
require 'rake'
Rake.application.run

View File

@ -1,6 +0,0 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
SCRIPT = File.expand_path(File.join('..', 'script', 'setup'), __dir__).freeze
system SCRIPT, '--initial'

View File

@ -1,6 +0,0 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
SCRIPT = File.expand_path(File.join('..', 'script', 'setup'), __dir__).freeze
system SCRIPT

View File

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