Merge pull request #1141 from elebow/eruby-fix-command-file-redir
erb, erubis: Redirect file into first command.
This commit is contained in:
		
						commit
						a139b387c8
					
				@ -11,7 +11,7 @@ function! ale_linters#eruby#erb#GetCommand(buffer) abort
 | 
				
			|||||||
    " Rails-flavored eRuby does not comply with the standard as understood by
 | 
					    " Rails-flavored eRuby does not comply with the standard as understood by
 | 
				
			||||||
    " ERB, so we'll have to do some substitution. This does not reduce the
 | 
					    " ERB, so we'll have to do some substitution. This does not reduce the
 | 
				
			||||||
    " effectiveness of the linter—the translated code is still evaluated.
 | 
					    " effectiveness of the linter—the translated code is still evaluated.
 | 
				
			||||||
    return 'ruby -r erb -e ' . ale#Escape('puts ERB.new($stdin.read.gsub(%{<%=},%{<%}), nil, %{-}).src') . ' | ruby -c'
 | 
					    return 'ruby -r erb -e ' . ale#Escape('puts ERB.new($stdin.read.gsub(%{<%=},%{<%}), nil, %{-}).src') . '< %t | ruby -c'
 | 
				
			||||||
endfunction
 | 
					endfunction
 | 
				
			||||||
 | 
					
 | 
				
			||||||
call ale#linter#Define('eruby', {
 | 
					call ale#linter#Define('eruby', {
 | 
				
			||||||
 | 
				
			|||||||
@ -11,7 +11,7 @@ function! ale_linters#eruby#erubis#GetCommand(buffer) abort
 | 
				
			|||||||
    " Rails-flavored eRuby does not comply with the standard as understood by
 | 
					    " Rails-flavored eRuby does not comply with the standard as understood by
 | 
				
			||||||
    " Erubis, so we'll have to do some substitution. This does not reduce the
 | 
					    " Erubis, so we'll have to do some substitution. This does not reduce the
 | 
				
			||||||
    " effectiveness of the linter—the translated code is still evaluated.
 | 
					    " effectiveness of the linter—the translated code is still evaluated.
 | 
				
			||||||
    return 'ruby -r erubis -e ' . ale#Escape('puts Erubis::Eruby.new($stdin.read.gsub(%{<%=},%{<%})).src') . ' | ruby -c'
 | 
					    return 'ruby -r erubis -e ' . ale#Escape('puts Erubis::Eruby.new($stdin.read.gsub(%{<%=},%{<%})).src') . '< %t | ruby -c'
 | 
				
			||||||
endfunction
 | 
					endfunction
 | 
				
			||||||
 | 
					
 | 
				
			||||||
call ale#linter#Define('eruby', {
 | 
					call ale#linter#Define('eruby', {
 | 
				
			||||||
 | 
				
			|||||||
@ -17,5 +17,5 @@ Execute(Executable should filter invalid eRuby when inside a Rails project):
 | 
				
			|||||||
  call ale#test#SetFilename('../ruby_fixtures/valid_rails_app/app/views/my_great_view.html.erb')
 | 
					  call ale#test#SetFilename('../ruby_fixtures/valid_rails_app/app/views/my_great_view.html.erb')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  AssertEqual
 | 
					  AssertEqual
 | 
				
			||||||
  \ 'ruby -r erb -e ' . ale#Escape('puts ERB.new($stdin.read.gsub(%{<%=},%{<%}), nil, %{-}).src') . ' | ruby -c',
 | 
					  \ 'ruby -r erb -e ' . ale#Escape('puts ERB.new($stdin.read.gsub(%{<%=},%{<%}), nil, %{-}).src') . '< %t | ruby -c',
 | 
				
			||||||
  \ ale_linters#eruby#erb#GetCommand(bufnr(''))
 | 
					  \ ale_linters#eruby#erb#GetCommand(bufnr(''))
 | 
				
			||||||
 | 
				
			|||||||
@ -17,5 +17,5 @@ Execute(Executable should filter invalid eRuby when inside a Rails project):
 | 
				
			|||||||
  call ale#test#SetFilename('../ruby_fixtures/valid_rails_app/app/views/my_great_view.html.erb')
 | 
					  call ale#test#SetFilename('../ruby_fixtures/valid_rails_app/app/views/my_great_view.html.erb')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  AssertEqual
 | 
					  AssertEqual
 | 
				
			||||||
  \ 'ruby -r erubis -e ' . ale#Escape('puts Erubis::Eruby.new($stdin.read.gsub(%{<%=},%{<%})).src') . ' | ruby -c',
 | 
					  \ 'ruby -r erubis -e ' . ale#Escape('puts Erubis::Eruby.new($stdin.read.gsub(%{<%=},%{<%})).src') . '< %t | ruby -c',
 | 
				
			||||||
  \ ale_linters#eruby#erubis#GetCommand(bufnr(''))
 | 
					  \ ale_linters#eruby#erubis#GetCommand(bufnr(''))
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user