Add newlines to end of files

This commit is contained in:
Sheel Choksi and Tim Jarratt
2013-10-25 10:57:43 -07:00
parent 29c5c127e5
commit 797984f173
15 changed files with 15 additions and 15 deletions

View File

@@ -11,4 +11,4 @@ gemspec
gem "jasmine_selenium_runner", :git => 'https://github.com/jasmine/jasmine_selenium_runner.git' gem "jasmine_selenium_runner", :git => 'https://github.com/jasmine/jasmine_selenium_runner.git'
gem "anchorman" gem "anchorman"

View File

@@ -54,4 +54,4 @@ module.exports = {
} }
} }
} }
}; };

View File

@@ -14,4 +14,4 @@ module.exports = {
loopfunc: true loopfunc: true
}, },
all: ['src/**/*.js'] all: ['src/**/*.js']
}; };

View File

@@ -135,4 +135,4 @@ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
[travis_jasmine]: http://travis-ci.org/jasmine [travis_jasmine]: http://travis-ci.org/jasmine
[sauce]: http://saucelabs.com [sauce]: http://saucelabs.com
[node_suite]: https://github.com/pivotal/jasmine/blob/master/spec/node_suite.js [node_suite]: https://github.com/pivotal/jasmine/blob/master/spec/node_suite.js
[intro]: http://pivotal.github.com/jasmine/ [intro]: http://pivotal.github.com/jasmine/

View File

@@ -42,4 +42,4 @@ describe("Any", function() {
expect(any.jasmineToString()).toMatch('<jasmine.any'); expect(any.jasmineToString()).toMatch('<jasmine.any');
}); });
}); });

View File

@@ -61,4 +61,4 @@ describe("ObjectContaining", function() {
expect(containing.jasmineToString()).toMatch("<jasmine.objectContaining"); expect(containing.jasmineToString()).toMatch("<jasmine.objectContaining");
}); });
}); });

View File

@@ -37,4 +37,4 @@ describe("ReportDispatcher", function() {
dispatcher.foo(123, 456); dispatcher.foo(123, 456);
}).not.toThrow(); }).not.toThrow();
}); });
}); });

View File

@@ -15,4 +15,4 @@ describe("j$.HtmlSpecFilter", function() {
expect(specFilter.matches("foo")).toBe(true); expect(specFilter.matches("foo")).toBe(true);
expect(specFilter.matches("bar")).toBe(false); expect(specFilter.matches("bar")).toBe(false);
}); });
}); });

View File

@@ -40,4 +40,4 @@ describe("QueryString", function() {
expect(queryString.getParam("baz")).toBeFalsy(); expect(queryString.getParam("baz")).toBeFalsy();
}); });
}); });
}); });

View File

@@ -59,4 +59,4 @@ describe("ResultsNode", function() {
expect(node.last()).toBe(node.children[node.children.length - 1]); expect(node.last()).toBe(node.children[node.children.length - 1]);
}); });
}); });

View File

@@ -33,4 +33,4 @@ getJasmineRequireObj().Any = function() {
}; };
return Any; return Any;
}; };

View File

@@ -15,4 +15,4 @@ getJasmineRequireObj().Timer = function() {
} }
return Timer; return Timer;
}; };

View File

@@ -16,4 +16,4 @@ jasmineRequire.ResultsNode = function() {
} }
return ResultsNode; return ResultsNode;
}; };

View File

@@ -3,4 +3,4 @@ jasmineRequire.html = function(j$) {
j$.HtmlReporter = jasmineRequire.HtmlReporter(j$); j$.HtmlReporter = jasmineRequire.HtmlReporter(j$);
j$.QueryString = jasmineRequire.QueryString(); j$.QueryString = jasmineRequire.QueryString();
j$.HtmlSpecFilter = jasmineRequire.HtmlSpecFilter(); j$.HtmlSpecFilter = jasmineRequire.HtmlSpecFilter();
}; };

View File

@@ -1,3 +1,3 @@
getJasmineRequireObj().version = function() { getJasmineRequireObj().version = function() {
return "<%= version %>"; return "<%= version %>";
}; };