Sha256: cbbc8d038927820c87b049f87e89d1491dd3e449e307c770b1f5a50dbceb5e19

Contents?: true

Size: 1.45 KB

Versions: 6

Compression:

Stored size: 1.45 KB

Contents

require "rake"
require "rake/testtask"
require "rake/rdoctask"
require "jeweler"


desc "Default: run tests."
task :default => [:test]


desc "Test the plugin."
Rake::TestTask.new(:test) do |t|
  t.libs    << "lib"
  t.pattern  = "test/**/*_test.rb"
  t.verbose  = true
end


desc "Generate documentation for the plugin."
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = "rdoc"
  rdoc.title    = "michael_hintbuble"
  rdoc.options << "--line-numbers --inline-source"
  rdoc.rdoc_files.include("README")
  rdoc.rdoc_files.include("lib/**/*.rb")
end


begin
  Jeweler::Tasks.new do |gemspec|
    gemspec.authors           = ["Coroutine", "Tim Lowrimore", "John Dugan"]
    gemspec.description       = "Michael HintBuble allows you to generate hint bubbles and tooltips in Rails applications using the same syntax used for rendering templates."
    gemspec.email             = "gems@coroutine.com"
    gemspec.homepage          = "http://github.com/coroutine/michael_hintbuble"
    gemspec.name              = "michael_hintbuble"
    gemspec.summary           = "Dead simple, beautiful hint bubbles for Rails."
    
    gemspec.add_dependency("actionpack", ">=2.3.4")
    gemspec.add_development_dependency("activesupport", ">=2.3.4")
    
    gemspec.files.include("generators/**/*", "lib/**/*")
    gemspec.files.include("test/**/*")
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end


Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
michael_hintbuble-1.0.5 Rakefile
michael_hintbuble-1.0.4 Rakefile
michael_hintbuble-1.0.3 Rakefile
michael_hintbuble-1.0.2 Rakefile
michael_hintbuble-1.0.1 Rakefile
michael_hintbuble-1.0.0 Rakefile