Add a test for ruby
This commit is contained in:
parent
db4e60aca5
commit
778745b5c2
5 changed files with 31 additions and 0 deletions
2
support/test/ruby/.bundle/config
Normal file
2
support/test/ruby/.bundle/config
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
BUNDLE_PATH: "vendor/bundle"
|
||||
2
support/test/ruby/.gitignore
vendored
Normal file
2
support/test/ruby/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Gemfile.lock
|
||||
vendor/
|
||||
15
support/test/ruby/.vimspector.json
Normal file
15
support/test/ruby/.vimspector.json
Normal 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
11
support/test/ruby/Gemfile
Normal 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"
|
||||
1
support/test/ruby/test.rb
Normal file
1
support/test/ruby/test.rb
Normal file
|
|
@ -0,0 +1 @@
|
|||
print 'hello' 'world'
|
||||
Loading…
Add table
Add a link
Reference in a new issue