diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2019-03-10 18:46:17 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2019-03-10 18:46:17 +0100 |
commit | 1d9a032a66739f900970d9b335b854fe93a4a5f3 (patch) | |
tree | 48f95b1570155c4003807f5c0541c7bbf7a0bf05 | |
parent | 86721731c740d0ea07e6b90e601a80770c3d9f36 (diff) | |
download | vim-polyglot-1d9a032a66739f900970d9b335b854fe93a4a5f3.tar.gz vim-polyglot-1d9a032a66739f900970d9b335b854fe93a4a5f3.zip |
Update timeout and ruby version
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | spec/loading_spec.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 8d6645bd..92020c6c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: ruby rvm: - - 1.9.3 + - 2.6 sudo: false addons: apt: diff --git a/spec/loading_spec.rb b/spec/loading_spec.rb index 14fbd64c..6e1cbaae 100644 --- a/spec/loading_spec.rb +++ b/spec/loading_spec.rb @@ -11,7 +11,7 @@ describe "My Vim plugin" do extensions.each do |ext| it "should parse #{ext} file" do - Timeout::timeout(15) do + Timeout::timeout(20) do write_file "#{ext}", "" vim.edit "#{ext}" vim.insert "sample" |