Sha256: 1992290ac89c04f1ce1fba01bc6b09b18f810801ad2b0e37b31af533c534ac26

Contents?: true

Size: 1.06 KB

Versions: 50

Compression:

Stored size: 1.06 KB

Contents

require "rubygems"
require "rake/gempackagetask"
require "rake/rdoctask"

spec = Gem::Specification.new do |s|
  s.name              = "jruby-prof"
  s.version           = "0.1.0"
  s.summary           = "A Ruby level profiler for JRuby"
  s.author            = "Daniel Lucraft"
  s.email             = "dan@fluentradical.com"
  s.homepage          = "http://danlucraft.com/blog"
  s.has_rdoc          = false
  s.files             = %w(README) + 
                        Dir.glob("{lib/**/*}") + 
                        Dir.glob("{templates/**/*}") + 
                        Dir.glob("{examples/**/*}") + 
                        Dir.glob("{src}/**/*") + 
                        Dir.glob("{test}/**/*")
  s.require_paths     = ["lib"]
end

Rake::GemPackageTask.new(spec) do |pkg|
  pkg.gem_spec = spec
end

# Generate documentation
Rake::RDocTask.new do |rd|
  rd.main = "README"
  rd.rdoc_files.include("README", "lib/**/*.rb")
  rd.rdoc_dir = "rdoc"
end

desc 'Clear out RDoc and generated packages'
task :clean => [:clobber_rdoc, :clobber_package] do
  rm "#{spec.name}.gemspec"
end

Version data entries

50 entries across 50 versions & 2 rubygems

Version Path
redcar-dev-0.12.16dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.15dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.14dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.13dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.12dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.11dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.10dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.9dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.8dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.7dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.6dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.4dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.3dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.1dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-dev-0.12.0dev-java plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-0.11 plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-0.11.0dev plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-0.10 plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-0.9.2 plugins/redcar_debug/vendor/jruby-prof/Rakefile
redcar-0.9.1 plugins/redcar_debug/vendor/jruby-prof/Rakefile