summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2013-07-26 22:52:24 -0600
committermo khan <mo@mokhan.ca>2013-07-26 22:52:24 -0600
commitccd7281925ec804aa23a0ecca98c4a40d424b690 (patch)
treee9294d1ef7002679cfd904b0f43d1bc0a29bbed0 /lib
parent12cbd6e4ee6fd6ce836c35578bf9c34173fca086 (diff)
remove old jasmine tasks
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/ci.rake1
-rw-r--r--lib/tasks/js.rake10
2 files changed, 0 insertions, 11 deletions
diff --git a/lib/tasks/ci.rake b/lib/tasks/ci.rake
index dc9e63fd..a65f7ed1 100644
--- a/lib/tasks/ci.rake
+++ b/lib/tasks/ci.rake
@@ -1,4 +1,3 @@
-#task :ci => ['db:migrate', 'db:test:prepare', 'spec', 'jasmine:ci']
task :ci => ['db:migrate', 'db:test:prepare', 'spec', 'teaspoon']
namespace :ci do
diff --git a/lib/tasks/js.rake b/lib/tasks/js.rake
deleted file mode 100644
index ca085440..00000000
--- a/lib/tasks/js.rake
+++ /dev/null
@@ -1,10 +0,0 @@
-namespace :js do
- task :jasmine, [ :display ] => :environment do |t, args|
- ENV['DISPLAY'] = args[:display] if args[:display]
- sh("bundle exec rake jasmine:ci")
- end
-
- task :default, [ :display ] => :environment do |t, args|
- Rake::Task['js:jasmine'].invoke(args[:display])
- end
-end