Sha256: 552f2b43963cc02c4097a50e536ce207de28476e4c7ce47c9b8ff053e48f0ad4

Contents?: true

Size: 670 Bytes

Versions: 20

Compression:

Stored size: 670 Bytes

Contents

require "bundler/gem_tasks"
require 'yard'

# Load tasks, that will be available for Rails user
Dir[File.join(File.dirname(__FILE__), './lib/tasks/*.rake')].each { |file| load file }

# Load tasks for gem development
Dir[File.join(File.dirname(__FILE__), 'tasks/*.rake')].each { |file| load file }

YARD::Rake::YardocTask.new do |t|
  t.options = ['--title', "Netzke Core #{Netzke::Core::VERSION}"]
end

namespace :yard do
  desc "Publish docs to api.netzke.org"
  task publish: :yard do
    dir = 'www/api.netzke.org/core'
    puts "Publishing to fl:#{dir}..."
    `ssh fl "mkdir -p #{dir}"`
    `scp -r doc/* fl:#{dir}`
  end
end

desc 'rake test'
task default: :test

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
netzke-core-6.5.0.0 Rakefile
netzke-core-6.5.0.0.rc2 Rakefile
netzke-core-6.5.0.0.rc1 Rakefile
netzke-core-1.0.1.0 Rakefile
netzke-core-1.0.0.0 Rakefile
netzke-core-1.0.0.0.pre4 Rakefile
netzke-core-1.0.0.0.pre3 Rakefile
netzke-core-1.0.0.0.pre2 Rakefile
netzke-core-1.0.0.0.pre Rakefile
netzke-core-0.12.3 Rakefile
netzke-core-0.12.2 Rakefile
netzke-core-0.12.1 Rakefile
netzke-core-0.12.0 Rakefile
netzke-core-0.12.0.rc1 Rakefile
netzke-core-0.12.0.beta Rakefile
netzke-core-0.11.0 Rakefile
netzke-core-0.10.1 Rakefile
netzke-core-0.10.0 Rakefile
netzke-core-0.9.0 Rakefile
netzke-core-0.10.0.rc2 Rakefile