Add a test for ruby

This commit is contained in:
Ben Jackson 2020-09-05 13:44:15 +01:00
commit 778745b5c2
5 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,2 @@
---
BUNDLE_PATH: "vendor/bundle"

2
support/test/ruby/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
Gemfile.lock
vendor/

View file

@ -0,0 +1,15 @@
{
"configurations": {
"launch current file": {
"adapter": "cust_vscode-ruby",
"configuration": {
"request": "launch",
"program": "${file}",
"args": [ "*${args}" ],
"useBundler": true,
"trace": true,
"showDebuggerOutput": true
}
}
}
}

11
support/test/ruby/Gemfile Normal file
View file

@ -0,0 +1,11 @@
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
# gem "rails"
gem "ruby-debug-ide", "~> 0.7.2"
gem "debase", "~> 0.2.4"

View file

@ -0,0 +1 @@
print 'hello' 'world'