Skip to content

Commit

Permalink
Version 1.0.0! Support for Ruby 3.2 #62
Browse files Browse the repository at this point in the history
  • Loading branch information
ericboehs authored Sep 18, 2024
2 parents 21c6d62 + 05e39bb commit 43e82ce
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 16 deletions.
1 change: 1 addition & 0 deletions lib/vtk/commands/socks/setup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
require 'tty-prompt'
require 'fileutils'
require 'erb'
require 'ostruct'

module Vtk
module Commands
Expand Down
2 changes: 1 addition & 1 deletion lib/vtk/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Vtk
VERSION = '0.9.5'
VERSION = '1.0.0'
end
2 changes: 1 addition & 1 deletion spec/integration/module/add_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
vtk module add <module name>
Options:
-h, [--help], [--no-help] # Display usage information
-h, [--help], [--no-help], [--skip-help] # Display usage information
Add a new module to vets-api
OUT
Expand Down
4 changes: 2 additions & 2 deletions spec/integration/module/controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
vtk module controller <component name> -m, --module-name=MODULE_NAME
Options:
-h, [--help], [--no-help] # Display usage information
-m, --module-name=MODULE_NAME # Specify the module name
-h, [--help], [--no-help], [--skip-help] # Display usage information
-m, --module-name=MODULE_NAME # Specify the module name
Add new controller to a module in vets-api
OUT
Expand Down
4 changes: 2 additions & 2 deletions spec/integration/module/model_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
vtk module model <component name> -m, --module-name=MODULE_NAME
Options:
-h, [--help], [--no-help] # Display usage information
-m, --module-name=MODULE_NAME # Specify the module name
-h, [--help], [--no-help], [--skip-help] # Display usage information
-m, --module-name=MODULE_NAME # Specify the module name
Add new model to a module in vets-api
OUT
Expand Down
4 changes: 2 additions & 2 deletions spec/integration/module/serializer_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
vtk module serializer <component name> -m, --module-name=MODULE_NAME
Options:
-h, [--help], [--no-help] # Display usage information
-m, --module-name=MODULE_NAME # Specify the module name
-h, [--help], [--no-help], [--skip-help] # Display usage information
-m, --module-name=MODULE_NAME # Specify the module name
Add new serializer to a module in vets-api
OUT
Expand Down
4 changes: 2 additions & 2 deletions spec/integration/module/service_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
vtk module service <component name> -m, --module-name=MODULE_NAME
Options:
-h, [--help], [--no-help] # Display usage information
-m, --module-name=MODULE_NAME # Specify the module name
-h, [--help], [--no-help], [--skip-help] # Display usage information
-m, --module-name=MODULE_NAME # Specify the module name
Add new service class to a module in vets-api
OUT
Expand Down
4 changes: 2 additions & 2 deletions spec/integration/socks/off_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def listener_running?
vtk socks off
Options:
-h, [--help], [--no-help] # Display usage information
-p, [--port=PORT] # Port that SOCKS server is running on
-h, [--help], [--no-help], [--skip-help] # Display usage information
-p, [--port=PORT] # Port that SOCKS server is running on
Disconnects from VA SOCKS
OUT
Expand Down
4 changes: 2 additions & 2 deletions spec/integration/socks/on_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def cleanup_connection
vtk socks on
Options:
-h, [--help], [--no-help] # Display usage information
-p, [--port=PORT] # Port to run SOCKS server on
-h, [--help], [--no-help], [--skip-help] # Display usage information
-p, [--port=PORT] # Port to run SOCKS server on
Connects to VA SOCKS
OUT
Expand Down
4 changes: 2 additions & 2 deletions spec/integration/socks/setup_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
vtk socks setup
Options:
-h, [--help], [--no-help] # Display usage information
-h, [--help], [--no-help], [--skip-help] # Display usage information
[--boot-script-path=BOOT_SCRIPT_PATH] # Path to install boot script (e.g. ~/Library)
[--ssh-key-path=SSH_KEY_PATH] # Path to SSH key (e.g. ~/.ssh/id_rsa_vagov)
[--ssh-config-path=SSH_CONFIG_PATH] # Path to SSH config (e.g. ~/.ssh/config)
-p, [--port=PORT] # Port that SOCKS server is running on
[--skip-test], [--no-skip-test] # Skip testing SOCKS connection
[--skip-test] # Skip testing SOCKS connection
Configures local machine for VA SOCKS access
OUT
Expand Down

0 comments on commit 43e82ce

Please sign in to comment.