Sha256: 5f3d655be48d61233bb22fd1d0db6515889ed533e76b118bb83b73690b002eb4

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 KB

Contents

=begin

    This file is part of the Arachni-RPC project and may be subject to
    redistribution and commercial restrictions. Please see the Arachni-RPC
    web site for more information on licensing and terms of use.

=end

require 'rubygems'
require File.expand_path( File.dirname( __FILE__ ) ) + '/lib/arachni/rpc/version'

begin
    require 'rspec'
    require 'rspec/core/rake_task'

    RSpec::Core::RakeTask.new
rescue
end

task default: [ :spec ]

desc "Generate docs"
task :docs do
    outdir = "../arachni-rpc-pages"
    sh "mkdir #{outdir}" if !File.directory?( outdir )

    sh "yardoc --verbose --title \
      \"Arachni-RPC\" \
       lib/* -o #{outdir} \
      - CHANGELOG.md LICENSE.md"


    sh "rm -rf .yard*"
end

desc "Cleaning..."
task :clean do
    sh "rm *.gem || true"
end

desc "Build the arachni-rpc gem."
task :build => [ :clean ] do
    sh "gem build arachni-rpc.gemspec"
end

desc "Build and install the arachni gem."
task :install  => [ :build ] do
    sh "gem install arachni-rpc-#{Arachni::RPC::VERSION}.gem"
end

desc "Push a new version to Gemcutter"
task :publish => [ :build ] do
    sh "gem push arachni-rpc-#{Arachni::RPC::VERSION}.gem"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
arachni-rpc-0.1.2 Rakefile