Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Insert missing line breaks at end-of-file
  • Loading branch information
biril committed Sep 19, 2014
1 parent 9e3a12d commit 495e965
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .jshintrc
Expand Up @@ -12,4 +12,4 @@
"smarttabs":true,
"noarg":true,
"expr":true
}
}
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,3 +1,3 @@
language: node_js
node_js:
- "0.10"
- "0.10"
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -4,4 +4,4 @@ test:
lint:
jshint --show-non-errors backbone-faux-server.js test/testrunner.js test/test-*.js

.PHONY: test lint
.PHONY: test lint
2 changes: 1 addition & 1 deletion examples/books-AMD/README.md
Expand Up @@ -12,4 +12,4 @@ Running

In the example folder, `bower install` to get all dependencies. You can serve the application using
your own web server or use Grunt's connect plugin: `npm install` to get dev-dependencies and then
`grunt connect:server:keepalive` to run a local connect server listening on `localhost:3333`.
`grunt connect:server:keepalive` to run a local connect server listening on `localhost:3333`.
2 changes: 1 addition & 1 deletion examples/books-AMD/app/models.js
Expand Up @@ -19,4 +19,4 @@ define(["underscore", "backbone"], function (_, Backbone) {
Book: Book,
Books: Books
};
});
});
2 changes: 1 addition & 1 deletion examples/books-AMD/main.js
Expand Up @@ -28,4 +28,4 @@ requirejs.config({
requirejs(["faux-server", "app"], function (fauxServer, app) {
fauxServer.run();
app.run();
});
});
2 changes: 1 addition & 1 deletion examples/books/README.md
Expand Up @@ -12,4 +12,4 @@ Running

In the example folder, `bower install` to get all dependencies. You can serve the application using
your own web server or use Grunt's connect plugin: `npm install` to get dev-dependencies and then
`grunt connect:server:keepalive` to run a local connect server listening on `localhost:3333`.
`grunt connect:server:keepalive` to run a local connect server listening on `localhost:3333`.
2 changes: 1 addition & 1 deletion test/index.html
Expand Up @@ -24,4 +24,4 @@ <h2 id="qunit-banner"></h2>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion test/test-chain.js
Expand Up @@ -49,4 +49,4 @@
strictEqual(fauxServer[methods[i]]("dummy"), fauxServer, methods[i] + " returns faux-server");
}
});
}());
}());
2 changes: 1 addition & 1 deletion test/test-eventscallbacks.js
Expand Up @@ -412,4 +412,4 @@
}
});
});
}());
}());
2 changes: 1 addition & 1 deletion test/test-handlers.js
Expand Up @@ -500,4 +500,4 @@
stop();
book.fetch();
});
}());
}());
3 changes: 1 addition & 2 deletions test/test-routes.js
Expand Up @@ -224,5 +224,4 @@
throws(function () { fauxServer.patch(); }, "patch throws");
throws(function () { fauxServer.del(); }, "del throws");
});

}());
}());
2 changes: 1 addition & 1 deletion test/test-transportcustom.js
Expand Up @@ -165,4 +165,4 @@
setTransportFactoryAndExpect("308", "true when deleting a Model");
book.destroy();
});
}());
}());
2 changes: 1 addition & 1 deletion test/test-transportpromise.js
Expand Up @@ -189,4 +189,4 @@

stop();
});
}());
}());
2 changes: 1 addition & 1 deletion test/test-urlexpmatch.js
Expand Up @@ -272,4 +272,4 @@
ok(!matchingRoute, tests[i].urlExp + " does not match " + tests[i].url);
}
});
}());
}());
2 changes: 1 addition & 1 deletion test/testrunner.js
Expand Up @@ -33,4 +33,4 @@ qunit.run({
return;
}
process.exit(stats.failed > 0 ? 1 : 0);
});
});

0 comments on commit 495e965

Please sign in to comment.