Sha256: 2c7bc0257b78a3699a02b898880963376fff3c729f4fef95571f8aaf5817d12c

Contents?: true

Size: 1.81 KB

Versions: 28

Compression:

Stored size: 1.81 KB

Contents

require 'bundler/gem_tasks'

#
# Prepend DevKit into compilation phase
#
if Gem.win_platform?
  desc 'Activates DevKit'
  task :devkit do
    begin
      require 'devkit'
    rescue LoadError
      abort 'Failed to load DevKit required for compilation'
    end
  end
  task compile: :devkit
end

require 'rake/testtask'
if /java/ === RUBY_PLATFORM
  # require 'rake/javaextensiontask'
  # Rake::JavaExtensionTask.new(:haml) do |ext|
  #   ext.ext_dir = 'ext/java'
  #   ext.lib_dir = 'lib/haml'
  # end

  task :compile do
    # dummy for now
  end
else
  require 'rake/extensiontask'
  Rake::ExtensionTask.new(:haml) do |ext|
    ext.lib_dir = 'lib/haml'
  end
end

Dir['benchmark/*.rake'].each { |b| import(b) }

Rake::TestTask.new do |t|
  t.libs << 'lib' << 'test'
  files = Dir['test/haml/**/*_test.rb']
  t.ruby_opts = %w[-rtest_helper]
  t.test_files = files
  t.verbose = true
end
task test: :compile

desc 'bench task for CI'
task bench: :compile do
  if ENV['SLIM_BENCH'] == '1'
    cmd = %w[bundle exec ruby benchmark/slim/run-benchmarks.rb]
  else
    cmd = ['bin/bench', 'bench', ('-c' if ENV['COMPILE'] == '1'), *ENV['TEMPLATE'].split(',')].compact
  end
  exit system(*cmd)
end

namespace :doc do
  task :sass do
    require 'sass'
    Dir["yard/default/**/*.sass"].each do |sass|
      File.open(sass.gsub(/sass$/, 'css'), 'w') do |f|
        f.write(Sass::Engine.new(File.read(sass)).render)
      end
    end
  end

  desc "List all undocumented methods and classes."
  task :undocumented do
    command = 'yard --list --query '
    command << '"object.docstring.blank? && '
    command << '!(object.type == :method && object.is_alias?)"'
    sh command
  end
end

desc "Generate documentation"
task(:doc => 'doc:sass') {sh "yard"}

desc "Generate documentation incrementally"
task(:redoc) {sh "yard -c"}

task default: %w[compile test]

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
haml-6.1.4-java Rakefile
haml-6.1.4 Rakefile
haml-6.1.3-java Rakefile
haml-6.1.3 Rakefile
haml-6.1.2-java Rakefile
haml-6.1.2 Rakefile
haml-6.1.1-java Rakefile
haml-6.1.1 Rakefile
haml-6.1.0-java Rakefile
haml-6.1.0 Rakefile
haml-6.0.12-java Rakefile
haml-6.0.12 Rakefile
haml-6.0.11-java Rakefile
haml-6.0.11 Rakefile
haml-6.0.10-java Rakefile
haml-6.0.10 Rakefile
haml-6.0.9-java Rakefile
haml-6.0.9 Rakefile
haml-6.0.8-java Rakefile
haml-6.0.8 Rakefile