Skip to content
This repository has been archived by the owner on Apr 28, 2022. It is now read-only.

Update README to point to new home. Resolve 3 issues #18

Merged
merged 8 commits into from
Feb 3, 2014
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
**This plugin is no-longer being actively maintained by the Guardian**
**This plugin is no-longer being actively maintained by the Guardian. Please see visit its [new home](https://github.com/barnesjd/sbt-jasmine-plugin)**


----------------------------------------------------------------
Expand Down
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ organization := "com.gu"

version := "0.8-SNAPSHOT"

libraryDependencies += "org.mozilla" % "rhino" % "1.7R3"
libraryDependencies += "org.mozilla" % "rhino" % "1.7R4"

// don't bother publishing javadoc
publishArtifact in (Compile, packageDoc) := false

scalaVersion := "2.9.2"

scalacOptions ++= Seq("-unchecked", "-deprecation")

publishTo <<= (version) { version: String =>
val publishType = if (version.endsWith("SNAPSHOT")) "snapshots" else "releases"
Some(
Expand Down
1 change: 1 addition & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sbt.version=0.12.4
9 changes: 9 additions & 0 deletions src/main/resources/envjs/env.rhino.1.2.js
Original file line number Diff line number Diff line change
Expand Up @@ -8115,6 +8115,15 @@ __extend__(HTMLAnchorElement.prototype, {
set name(val) {
this.setAttribute("name",val);
},
get pathname() {
var uri = Envjs.urlsplit(this.href);
return uri.path;
},
set pathname(val) {
var uri = Envjs.urlsplit(this.href);
uri.path = val
this.href(uri.urlunsplit(uri));
},
get rel() {
return this.getAttribute("rel")||'';
},
Expand Down
288 changes: 0 additions & 288 deletions src/main/resources/jasmine-jquery/jasmine-jquery-1.2.0.js

This file was deleted.

Loading