Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1A3451031B for ; Fri, 7 Jun 2013 00:30:49 +0000 (UTC) Received: (qmail 32638 invoked by uid 500); 7 Jun 2013 00:30:49 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 32618 invoked by uid 500); 7 Jun 2013 00:30:49 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 32610 invoked by uid 99); 7 Jun 2013 00:30:49 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jun 2013 00:30:49 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id BFB4F813E42; Fri, 7 Jun 2013 00:30:48 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: steven@apache.org To: commits@cordova.apache.org Message-Id: <2b344ae97db844ad81d6aa469d26605c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: docs commit: updated rake file, uses rake task now Date: Fri, 7 Jun 2013 00:30:48 +0000 (UTC) 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 Authored: Thu Jun 6 17:30:21 2013 -0700 Committer: Steven Gill 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']