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

Commit 1d2247c

Browse files
committed
moving git submodules part I
1 parent 528cb7c commit 1d2247c

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

.config/cucumber.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
22
<% common = "--strict --format progress" %>
3-
html: <%= common %> --format html --out=test/cucumber_report.html
3+
html: <%= common %> --format html --out=test/reports/cucumber.html
44
default: <%= common %>

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
*.un~
22
*.swp
33
doc/tags
4-
test/*
4+
test/reports/*

.gitmodules

-3
This file was deleted.

features/support/matchit

-1
This file was deleted.

features/support/vimrc

-3
This file was deleted.

plugin/refactorings/extract_constant.vim

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,5 @@ function! ExtractConstant()
1616
" Find the enclosing class or module
1717
exec "?^\\<class\\|module\\>"
1818
" Define the constant inside the class or module
19-
exec "normal! o" . name . " = "
20-
normal! $p
19+
exec "normal! o" . name . " = \<Esc>p=="
2120
endfunction

test/vimrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
set rtp+=.
2+
set rtp+=features/support/matchit
3+
set rtp+=features/support/vim-ruby
4+
runtime! ruby-refactoring.vim
5+
6+
set expandtab
7+
set sw=2
8+
set sts=2
9+
filetype plugin indent on

0 commit comments

Comments
 (0)