summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2013-06-16 22:28:27 -0600
committermo khan <mo@mokhan.ca>2013-06-16 22:28:27 -0600
commit2b4f7a98a89cb34785e1b7bf939ccb5477d37fcf (patch)
treeffbe23ea0dca2d96f3ab6ca7ed53a6a0e3cae58a
parentbfa3834ee53726c362c4353c3340f927c1f347fc (diff)
remove unused assets
-rw-r--r--app/assets/images/bg-header.pngbin47557 -> 0 bytes
-rwxr-xr-xapp/assets/images/border.pngbin112 -> 0 bytes
-rw-r--r--app/assets/images/chefhat_profile.PNGbin2292 -> 0 bytes
-rw-r--r--app/assets/images/header.pngbin64931 -> 0 bytes
-rw-r--r--app/assets/images/sunset.pngbin136055 -> 0 bytes
-rw-r--r--app/assets/javascripts/jasmine_examples/Player.js22
-rw-r--r--app/assets/javascripts/jasmine_examples/Song.js7
-rw-r--r--app/assets/stylesheets/favorites.css.scss3
-rw-r--r--app/assets/stylesheets/home.css.scss0
-rw-r--r--app/assets/stylesheets/photos.css.scss3
10 files changed, 0 insertions, 35 deletions
diff --git a/app/assets/images/bg-header.png b/app/assets/images/bg-header.png
deleted file mode 100644
index ba162f6c..00000000
--- a/app/assets/images/bg-header.png
+++ /dev/null
Binary files differ
diff --git a/app/assets/images/border.png b/app/assets/images/border.png
deleted file mode 100755
index f463a10d..00000000
--- a/app/assets/images/border.png
+++ /dev/null
Binary files differ
diff --git a/app/assets/images/chefhat_profile.PNG b/app/assets/images/chefhat_profile.PNG
deleted file mode 100644
index debe780e..00000000
--- a/app/assets/images/chefhat_profile.PNG
+++ /dev/null
Binary files differ
diff --git a/app/assets/images/header.png b/app/assets/images/header.png
deleted file mode 100644
index 70b66ac2..00000000
--- a/app/assets/images/header.png
+++ /dev/null
Binary files differ
diff --git a/app/assets/images/sunset.png b/app/assets/images/sunset.png
deleted file mode 100644
index 1c4b792a..00000000
--- a/app/assets/images/sunset.png
+++ /dev/null
Binary files differ
diff --git a/app/assets/javascripts/jasmine_examples/Player.js b/app/assets/javascripts/jasmine_examples/Player.js
deleted file mode 100644
index fcce8268..00000000
--- a/app/assets/javascripts/jasmine_examples/Player.js
+++ /dev/null
@@ -1,22 +0,0 @@
-function Player() {
-}
-Player.prototype.play = function(song) {
- this.currentlyPlayingSong = song;
- this.isPlaying = true;
-};
-
-Player.prototype.pause = function() {
- this.isPlaying = false;
-};
-
-Player.prototype.resume = function() {
- if (this.isPlaying) {
- throw new Error("song is already playing");
- }
-
- this.isPlaying = true;
-};
-
-Player.prototype.makeFavorite = function() {
- this.currentlyPlayingSong.persistFavoriteStatus(true);
-}; \ No newline at end of file
diff --git a/app/assets/javascripts/jasmine_examples/Song.js b/app/assets/javascripts/jasmine_examples/Song.js
deleted file mode 100644
index a8a3f2dd..00000000
--- a/app/assets/javascripts/jasmine_examples/Song.js
+++ /dev/null
@@ -1,7 +0,0 @@
-function Song() {
-}
-
-Song.prototype.persistFavoriteStatus = function(value) {
- // something complicated
- throw new Error("not yet implemented");
-}; \ No newline at end of file
diff --git a/app/assets/stylesheets/favorites.css.scss b/app/assets/stylesheets/favorites.css.scss
deleted file mode 100644
index dacd946d..00000000
--- a/app/assets/stylesheets/favorites.css.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-// Place all the styles related to the Likes controller here.
-// They will automatically be included in application.css.
-// You can use Sass (SCSS) here: http://sass-lang.com/
diff --git a/app/assets/stylesheets/home.css.scss b/app/assets/stylesheets/home.css.scss
deleted file mode 100644
index e69de29b..00000000
--- a/app/assets/stylesheets/home.css.scss
+++ /dev/null
diff --git a/app/assets/stylesheets/photos.css.scss b/app/assets/stylesheets/photos.css.scss
deleted file mode 100644
index 16dc630d..00000000
--- a/app/assets/stylesheets/photos.css.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-// Place all the styles related to the Photos controller here.
-// They will automatically be included in application.css.
-// You can use Sass (SCSS) here: http://sass-lang.com/