Merge pull request #242 from ChrisTM/master

Fix swapped template values in build_standalone_runner.rb.
This commit is contained in:
Davis W. Frank
2012-09-02 22:58:08 -07:00

View File

@@ -49,11 +49,11 @@ class JasmineDev < Thor
end
def example_source_tags
script_tags_for ['spec/SpecHelper.js', 'spec/PlayerSpec.js']
script_tags_for ['src/Player.js', 'src/Song.js']
end
def example_spec_tags
script_tags_for ['src/Player.js', 'src/Song.js']
script_tags_for ['spec/SpecHelper.js', 'spec/PlayerSpec.js']
end
end
end
end