Sha256: ad28525ce677aa831807a1378ae90f080b9033a5c1eb242f5de05e0eecd21f12

Contents?: true

Size: 1.4 KB

Versions: 21

Compression:

Stored size: 1.4 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "bard-rake"
    gem.summary = %Q{Rake tasks for all bard projects.}
    gem.description = %Q{Rake tasks for all bard projects.
* Bootstrap projects
* Database backup}
    gem.email = "micah@botandrose.com"
    gem.homepage = "http://github.com/botandrose/bard-rake"
    gem.authors = ["Micah Geisel"]
    gem.add_development_dependency "rspec", ">= 1.2.9"
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

task :release do
  system "git push"
  system "git push github"
  Rake::Task["gemcutter:release"].invoke
end

require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.spec_files = FileList['spec/**/*_spec.rb']
end

Spec::Rake::SpecTask.new(:rcov) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :spec => :check_dependencies

task :default => :spec

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "bard-rake #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
bard-rake-0.5.0 Rakefile
bard-rake-0.4.3 Rakefile
bard-rake-0.4.2 Rakefile
bard-rake-0.4.1 Rakefile
bard-rake-0.4.0 Rakefile
bard-rake-0.3.4 Rakefile
bard-rake-0.3.3 Rakefile
bard-rake-0.3.2 Rakefile
bard-rake-0.3.1 Rakefile
bard-rake-0.3.0 Rakefile
bard-rake-0.2.1 Rakefile
bard-rake-0.2.0 Rakefile
bard-rake-0.1.8 Rakefile
bard-rake-0.1.7 Rakefile
bard-rake-0.1.6 Rakefile
bard-rake-0.1.5 Rakefile
bard-rake-0.1.4 Rakefile
bard-rake-0.1.3 Rakefile
bard-rake-0.1.2 Rakefile
bard-rake-0.1.1 Rakefile