File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
lib/puppet-languageserver/puppetfile Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1717 - PUPPET_GEM_VERSION="~> 4.0"
1818 RUBY_VER=2.1.9
1919 RAKE_TASK="test_languageserver test_languageserver_sidecar test_debugserver"
20+ BUNDLER_VERSION=1.17.3
2021 # Latest 5.x Puppet
2122 - PUPPET_GEM_VERSION="~> 5.0"
2223 RUBY_VER=2.4.1
@@ -45,6 +46,9 @@ install:
4546 rvm use $RUBY_VER;
4647 ruby -v;
4748 gem -v;
49+ if [ "$BUNDLER_VERSION" != "" ]; then
50+ gem install -v $BUNDLER_VERSION bundler --no-rdoc --no-ri;
51+ fi;
4852 bundle -v;
4953 bundle install;
5054 cat Gemfile.lock;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ def self.max_line_length
66 1000
77 end
88
9- def self . validate ( content , _workspace , _max_problems = 100 )
9+ def self . validate ( content , _max_problems = 100 )
1010 result = [ ]
1111 # TODO: Need to implement max_problems
1212 _problems = 0
You can’t perform that action at this time.
0 commit comments