[DRE-commits] [ruby-neovim] branch master updated (6afb1e7 -> 79c9ec3)

Jason Pleau jpleau-guest at moszumanska.debian.org
Thu Jul 20 23:22:26 UTC 2017


This is an automated email from the git hooks/post-receive script.

jpleau-guest pushed a change to branch master
in repository ruby-neovim.

      from  6afb1e7   set distribution to unstable for ruby-neovim_0.3.1-1
      adds  362763d   New upstream version 0.5.0
       new  7a61d15   Updated version 0.5.0 from 'upstream/0.5.0'
       new  eab70b6   new changelog entry
       new  b68c7d5   refresh patches, update changelog
      adds  6ea8cc3   New upstream version 0.5.1
       new  5d53bf2   Updated version 0.5.1 from 'upstream/0.5.1'
       new  79c9ec3   update current version in changelog

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   1 +
 .gitmodules                                        |   3 +
 .rspec                                             |   1 +
 .travis.yml                                        |  14 +-
 CHANGELOG.md                                       |  24 ++
 README.md                                          |   8 +-
 Rakefile                                           |  23 +-
 debian/changelog                                   |  10 +
 debian/patches/disable_failing_test_schroot.patch  |  29 --
 debian/patches/fix_current_window_test.patch       |  29 --
 debian/patches/remove_coveralls_pry_bundler.patch  |   1 +
 debian/patches/series                              |   2 -
 lib/neovim.rb                                      |  13 +-
 lib/neovim/buffer.rb                               | 244 +++++++--------
 lib/neovim/client.rb                               | 215 ++++++-------
 lib/neovim/current.rb                              |  38 +--
 lib/neovim/executable.rb                           |  33 ++
 lib/neovim/host.rb                                 |   1 +
 lib/neovim/line_range.rb                           | 121 ++++---
 lib/neovim/plugin.rb                               |   8 +-
 lib/neovim/plugin/dsl.rb                           |  34 +-
 lib/neovim/remote_object.rb                        |  16 +-
 lib/neovim/ruby_provider.rb                        |  89 +++---
 lib/neovim/ruby_provider/buffer_ext.rb             |   6 +-
 lib/neovim/ruby_provider/vim.rb                    |  16 +-
 lib/neovim/ruby_provider/window_ext.rb             |   6 +-
 lib/neovim/session.rb                              |   8 +-
 lib/neovim/session/api.rb                          |  72 +++--
 lib/neovim/session/event_loop.rb                   |   4 +-
 lib/neovim/tabpage.rb                              |  43 ++-
 lib/neovim/version.rb                              |   2 +-
 lib/neovim/window.rb                               | 123 +++++---
 script/dump_api                                    |  10 +
 script/generate_docs                               |  71 +++--
 spec/acceptance/neovim-ruby-host_spec.rb           |  69 ----
 spec/acceptance/ruby_provider_spec.rb              | 148 ---------
 spec/helper.rb                                     |  71 ++---
 spec/integration/rplugin_autocmd_spec.vim          |  18 ++
 spec/integration/rplugin_command_spec.vim          |  97 ++++++
 spec/integration/rplugin_function_spec.vim         |  26 ++
 spec/integration/ruby_buffer_spec.rb               | 151 +++++++++
 spec/integration/ruby_spec.vim                     |  74 +++++
 spec/integration/ruby_vim_spec.rb                  |  27 ++
 spec/integration/ruby_window_spec.rb               |  56 ++++
 spec/integration/rubydo_spec.vim                   |  75 +++++
 spec/integration/rubyfile/call_foo.rb              |   1 +
 spec/integration/rubyfile/curbuf_ivar_get.rb       |   1 +
 spec/integration/rubyfile/curbuf_ivar_set.rb       |   1 +
 spec/integration/rubyfile/define_foo.rb            |   3 +
 spec/integration/rubyfile/raise_standard_error.rb  |   1 +
 spec/integration/rubyfile/raise_syntax_error.rb    |   1 +
 spec/integration/rubyfile/set_pwd_after.rb         |   1 +
 spec/integration/rubyfile/set_pwd_before.rb        |   1 +
 spec/integration/rubyfile_spec.vim                 |  93 ++++++
 spec/integration/runtime/init.vim                  |   9 +
 spec/integration/runtime/rplugin.vim               |  35 +++
 spec/integration/runtime/rplugin/ruby/autocmds.rb  |   9 +
 spec/integration/runtime/rplugin/ruby/commands.rb  |  59 ++++
 spec/integration/runtime/rplugin/ruby/functions.rb |  17 +
 .../runtime/vader.vim/autoload/vader.vim           | 348 +++++++++++++++++++++
 .../runtime/vader.vim/autoload/vader/assert.vim    | 116 +++++++
 .../runtime/vader.vim/autoload/vader/helper.vim    |  43 +++
 .../runtime/vader.vim/autoload/vader/parser.vim    | 179 +++++++++++
 .../runtime/vader.vim/autoload/vader/syntax.vim    |  73 +++++
 .../runtime/vader.vim/autoload/vader/window.vim    | 205 ++++++++++++
 .../integration/runtime/vader.vim/plugin/vader.vim |  37 +++
 spec/integration_spec.rb                           | 119 +++++++
 spec/neovim/buffer_spec.rb                         | 167 ----------
 spec/neovim/client_spec.rb                         |  45 +--
 spec/neovim/current_spec.rb                        |  14 +-
 spec/neovim/executable_spec.rb                     |  32 ++
 spec/neovim/host_spec.rb                           |  22 +-
 spec/neovim/line_range_spec.rb                     | 189 ++++++-----
 spec/neovim/plugin_spec.rb                         |  34 +-
 spec/neovim/remote_object_spec.rb                  |   8 +-
 spec/neovim/ruby_provider/buffer_ext_spec.rb       |   6 +-
 spec/neovim/ruby_provider/vim_spec.rb              |  38 +++
 spec/neovim/ruby_provider/window_ext_spec.rb       |   2 +-
 spec/neovim/session/api_spec.rb                    |  75 ++---
 spec/neovim/session/event_loop_spec.rb             |   2 +-
 spec/neovim/session_spec.rb                        |  30 +-
 spec/neovim/window_spec.rb                         |  91 ------
 spec/neovim_spec.rb                                |   6 +
 spec/support.rb                                    |  45 +++
 84 files changed, 2959 insertions(+), 1329 deletions(-)
 create mode 100644 .gitmodules
 create mode 100644 .rspec
 delete mode 100644 debian/patches/disable_failing_test_schroot.patch
 delete mode 100644 debian/patches/fix_current_window_test.patch
 create mode 100644 lib/neovim/executable.rb
 create mode 100755 script/dump_api
 delete mode 100644 spec/acceptance/neovim-ruby-host_spec.rb
 delete mode 100644 spec/acceptance/ruby_provider_spec.rb
 create mode 100644 spec/integration/rplugin_autocmd_spec.vim
 create mode 100644 spec/integration/rplugin_command_spec.vim
 create mode 100644 spec/integration/rplugin_function_spec.vim
 create mode 100644 spec/integration/ruby_buffer_spec.rb
 create mode 100644 spec/integration/ruby_spec.vim
 create mode 100644 spec/integration/ruby_vim_spec.rb
 create mode 100644 spec/integration/ruby_window_spec.rb
 create mode 100644 spec/integration/rubydo_spec.vim
 create mode 100644 spec/integration/rubyfile/call_foo.rb
 create mode 100644 spec/integration/rubyfile/curbuf_ivar_get.rb
 create mode 100644 spec/integration/rubyfile/curbuf_ivar_set.rb
 create mode 100644 spec/integration/rubyfile/define_foo.rb
 create mode 100644 spec/integration/rubyfile/raise_standard_error.rb
 create mode 100644 spec/integration/rubyfile/raise_syntax_error.rb
 create mode 100644 spec/integration/rubyfile/set_pwd_after.rb
 create mode 100644 spec/integration/rubyfile/set_pwd_before.rb
 create mode 100644 spec/integration/rubyfile_spec.vim
 create mode 100644 spec/integration/runtime/init.vim
 create mode 100644 spec/integration/runtime/rplugin.vim
 create mode 100644 spec/integration/runtime/rplugin/ruby/autocmds.rb
 create mode 100644 spec/integration/runtime/rplugin/ruby/commands.rb
 create mode 100644 spec/integration/runtime/rplugin/ruby/functions.rb
 create mode 100644 spec/integration/runtime/vader.vim/autoload/vader.vim
 create mode 100644 spec/integration/runtime/vader.vim/autoload/vader/assert.vim
 create mode 100644 spec/integration/runtime/vader.vim/autoload/vader/helper.vim
 create mode 100644 spec/integration/runtime/vader.vim/autoload/vader/parser.vim
 create mode 100644 spec/integration/runtime/vader.vim/autoload/vader/syntax.vim
 create mode 100644 spec/integration/runtime/vader.vim/autoload/vader/window.vim
 create mode 100644 spec/integration/runtime/vader.vim/plugin/vader.vim
 create mode 100644 spec/integration_spec.rb
 create mode 100644 spec/neovim/executable_spec.rb
 delete mode 100644 spec/neovim/window_spec.rb
 create mode 100644 spec/support.rb

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-neovim.git



More information about the Pkg-ruby-extras-commits mailing list