You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2013/06/07 02:30:48 UTC

docs commit: updated rake file, uses rake task now

Updated Branches:
  refs/heads/updatedRake [created] 3b154942d


updated rake file, uses rake task now


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/3b154942
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/3b154942
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/3b154942

Branch: refs/heads/updatedRake
Commit: 3b154942d6a6d59c00d5600bf8a03d1bbbd3e0bf
Parents: 90fc11d
Author: Steven Gill <st...@gmail.com>
Authored: Thu Jun 6 17:30:21 2013 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Thu Jun 6 17:30:21 2013 -0700

----------------------------------------------------------------------
 Rakefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3b154942/Rakefile
----------------------------------------------------------------------
diff --git a/Rakefile b/Rakefile
index cbdc649..b49d73d 100644
--- a/Rakefile
+++ b/Rakefile
@@ -17,13 +17,13 @@
 
 require 'rubygems'
 require 'rake'
-require 'spec/rake/spectask'
+require 'rspec/core/rake_task'
 require 'fileutils'
 
 task :default => :spec
 
 desc "Run specs"
-Spec::Rake::SpecTask.new('spec') do |t|
+RSpec::Core::RakeTask.new('spec') do |t|
   t.spec_opts  = %w(-fs --color)
   t.warning    = true
   t.spec_files = FileList['spec/**/*.rb']