Skip to content

Commit

Permalink
Some file reorganization
Browse files Browse the repository at this point in the history
  • Loading branch information
wagenet committed Apr 25, 2012
1 parent b53ea01 commit ba80a4e
Show file tree
Hide file tree
Showing 8 changed files with 2,938 additions and 579 deletions.
2 changes: 1 addition & 1 deletion benchmarks/external/backbone.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<html>
<head>
<script src="../../tests/jquery-1.7.2.js"></script>
<script src="../../lib/jquery-1.7.2.js"></script>

<style>
p {
Expand Down
4 changes: 2 additions & 2 deletions benchmarks/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

<html>
<head>
<script src="../tests/jquery-1.7.2.js"></script>
<script src="../lib/jquery-1.7.2.js"></script>
<script src="benchmark.js"></script>
<script src="runner.js"></script>
</head>
<body>
<div class="results" data-ember-path="../dist/ember.prod.js"></div>
<div class="results" data-ember-path="ember.js"></div>
<div class="results" data-ember-path="../lib/ember.js"></div>
</body>
</html>
4 changes: 2 additions & 2 deletions benchmarks/runner.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*global jQuery Benchmark BenchWarmer:true*/

var embers = {
before: "ember.js",
before: "../lib/ember.js",
after: "../dist/ember.prod.js"
};

Expand All @@ -13,7 +13,7 @@ function makeiframe(emberPath, suitePath, profile, callback) {
iframe.name = name;

write("<title>" + name + "</title>");
write("<script src='../tests/jquery-1.7.2.js'></script>");
write("<script src='../lib/jquery-1.7.2.js'></script>");
write("<script src='" + emberPath + "'></script>");
write("<script src='benchmark.js'></script>");
write("<script src='iframe_runner.js'></script>");
Expand Down
6 changes: 3 additions & 3 deletions benchmarks/setup.markdown
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Files:

* `index.html`: bootstrap file for testing
* `ember-before.js`: the Ember file that represents the "before" in the test
* `../dist/ember.min.js`: the Ember file that represents the "after" in the test
* `../tests/jquery-1.7.2.js`: the latest version of jQuery
* `../lib/ember.js`: the Ember file that represents the "before" in the test
* `../dist/ember.prod.js`: the Ember file that represents the "after" in the test
* `../lib/jquery-1.7.2.js`: the latest version of jQuery
* `benchmark.js`: the benchmark JS runner
* `nano.jar`: the nanosecond timer
* `runner.js`: the bootstrap for the runner
Expand Down
4 changes: 2 additions & 2 deletions benchmarks/simple.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<html>
<head>
<script src="../tests/jquery-1.7.2.js"></script>
<script src="ember.js"></script>
<script src="../lib/jquery-1.7.2.js"></script>
<script src="../lib/ember.js"></script>
</head>
<body>
<script type="text/x-handlebars">
Expand Down
Loading

0 comments on commit ba80a4e

Please sign in to comment.