Skip to content
This repository was archived by the owner on Mar 27, 2023. It is now read-only.

Commit 335c88f

Browse files
committed
moving git modules part II
1 parent 1d2247c commit 335c88f

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

.gitmodules

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "test/vim-ruby"]
2+
path = test/vim-ruby
3+
url = https://github.com/vim-ruby/vim-ruby
4+
[submodule "test/matchit"]
5+
path = test/matchit
6+
url = https://github.com/vim-scripts/matchit.zip

Guardfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ guard 'cucumber', cli: '--profile html', notification: false do
1313
end
1414

1515
guard 'livereload' do
16-
watch(%r{test/.+\.(css|js|html)})
16+
watch(%r{test/reports/.+\.(css|js|html)})
1717
end

features/support/shared_methods.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
RETURN_KEY = "\n"
44

55
def result_of_executing_the_commands
6-
vimrc = { vimrc: File.expand_path("features/support/vimrc") }
6+
vimrc = { vimrc: File.expand_path("test/vimrc") }
77
runner_args = { input_file: @input, commands: commands }
88
RobotVim::Runner.new(vimrc).run(runner_args).body
99
end

test/matchit

Submodule matchit added at ced6c40

test/vim-ruby

Submodule vim-ruby added at 5e429a5

test/vimrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set rtp+=.
2-
set rtp+=features/support/matchit
3-
set rtp+=features/support/vim-ruby
2+
set rtp+=test/matchit
3+
set rtp+=test/vim-ruby
44
runtime! ruby-refactoring.vim
55

66
set expandtab

0 commit comments

Comments
 (0)