Skip to content

Commit 450b9ac

Browse files
committed
(maint) Document removal of Puppet 4
This commit documents: * Dropping Puppet 4 support * Removing experimental warning for the debug server
1 parent 6e28bcc commit 450b9ac

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@
66

77
A ruby based implementation of a [Language Server](https://github.com/Microsoft/language-server-protocol) and [Debug Server](TODO) for the Puppet Language.
88

9-
**Note** - This project is experimental until 1.0 is released
9+
## Requirments
10+
11+
* Puppet 5 or above
12+
13+
* Ruby 2.4 or above
14+
15+
**Note** that Puppet 4 (Ruby 2.1) is not supported
1016

1117
## Setting up editor services for development
1218

lib/puppet-debugserver/puppet_debug_session.rb

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,6 @@ def run_puppet
132132
cmd_args << '--noop' if @session_options['noop'] == true
133133
cmd_args.push(*@session_options['args']) unless @session_options['args'].nil?
134134

135-
# Send experimental warning
136-
send_output_event(
137-
'category' => 'console',
138-
'output' => "**************************************************\n* The Puppet debugger is an experimental feature *\n* Debug Server v#{PuppetEditorServices.version} *\n**************************************************\n\n"
139-
)
140-
141135
send_output_event(
142136
'category' => 'console',
143137
'output' => 'puppet ' + cmd_args.join(' ') + "\n"

0 commit comments

Comments
 (0)