Sha256: 7476b226870e4ba71ec9712f62fa74ff20668bb8377dd52ec03b830ad67e06f1

Contents?: true

Size: 1.14 KB

Versions: 52

Compression:

Stored size: 1.14 KB

Contents

# -*- ruby -*-

$LOAD_PATH << 'lib'

require 'rubygems'
require 'hoe'

Hoe.add_include_dirs("../../minitest/dev/lib")

Hoe.plugin :seattlerb

Hoe.spec "ZenTest" do
  developer 'Ryan Davis', 'ryand-ruby@zenspider.com'
  developer 'Eric Hodel', 'drbrain@segment7.net'

  license "MIT"
end

desc "run autotest on itself"
task :autotest do
  ruby "-Ilib -w ./bin/autotest"
end

desc "update example_dot_autotest.rb with all possible constants"
task :update do
  system "p4 edit example_dot_autotest.rb"
  File.open "example_dot_autotest.rb", "w" do |f|
    f.puts "# -*- ruby -*-"
    f.puts
    Dir.chdir "lib" do
      Dir["autotest/*.rb"].sort.each do |s|
        next if s =~ /rails|discover/
        f.puts "# require '#{s[0..-4]}'"
      end
    end

    f.puts

    Dir["lib/autotest/*.rb"].sort.each do |file|
      file = File.read(file)
      m = file[/module.*/].split(/ /).last rescue nil
      next unless m

      file.grep(/def[^(]+=/).each do |setter|
        setter = setter.sub(/^ *def self\./, '').sub(/\s*=\s*/, ' = ')
        f.puts "# #{m}.#{setter}"
      end
    end
  end
  system "p4 diff -du example_dot_autotest.rb"
end

# vim:syntax=ruby

Version data entries

52 entries across 52 versions & 3 rubygems

Version Path
cloudsmith-api-1.61.3 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.1/Rakefile
cloudsmith-api-1.42.3 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.1/Rakefile
cloudsmith-api-1.33.7 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.1/Rakefile
cloudsmith-api-1.30.0 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.1/Rakefile
ZenTest-4.12.1 Rakefile
cloudsmith-api-0.57.1 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.54.15 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.53.79 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.53.17 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.53.3 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.53.1 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.52.121 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.52.92 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.52.79 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.52.5 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.52.0 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.51.93 vendor/bundle/ruby/2.3.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.51.38 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.51.37 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile
cloudsmith-api-0.51.34 vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/Rakefile