Skip to content

Commit 2f24fec

Browse files
committed
[MODEL] Add newlines at the end of files that are missing it
1 parent ebda04f commit 2f24fec

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

elasticsearch-model/Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ gemspec
66
group :development, :testing do
77
gem 'rspec'
88
gem 'pry-nav'
9-
end
9+
end

elasticsearch-model/spec/elasticsearch/model/response/pagination/kaminari_spec.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ def self.document_type; 'bar'; end
2828
Elasticsearch::Model::Response::Response.new(model, search, response_document).tap do |resp|
2929
allow(resp).to receive(:client).and_return(client)
3030
end
31-
3231
end
3332

3433
let(:client) do
@@ -408,4 +407,4 @@ def self.document_type; 'bar'; end
408407

409408
it_behaves_like 'a search request that can be paginated'
410409
end
411-
end
410+
end

elasticsearch-model/spec/elasticsearch/model/response/pagination/will_paginate_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,4 +260,4 @@ class WillPaginateResponse < Elasticsearch::Model::Response::Response
260260

261261
it_behaves_like 'a search request that can be paginated'
262262
end
263-
end
263+
end

elasticsearch-model/spec/elasticsearch/model/response/result_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,4 @@
111111
expect(result.as_json(except: 'foo')).to eq({'_source'=>{'bar'=>{'bam'=>'baz'}}})
112112
end
113113
end
114-
end
114+
end

0 commit comments

Comments
 (0)