Sha256: 264058109032f030568e6fa7d1a922ffc47ee1e10a0a5b2f7272fe7d8e1f2e20

Contents?: true

Size: 1.56 KB

Versions: 1

Compression:

Stored size: 1.56 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "zymurgy"
    gem.summary = %Q{A beer brewing gem}
    gem.description = %Q{(n) The branch of chemistry that deals with fermentation processes, as in brewing.

Zymurgy is a collection of libraries to help with beer brewing calculations:
        * Gravity points
        * Hop utilisation
        * Boil times and volumes}
    gem.email = "breezy@binningup.com"
    gem.homepage = "http://github.com/breezy/zymurgy"
    gem.authors = ["Mike Breeze"]
    gem.add_development_dependency "rspec", ">= 1.2.8"
    #gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
    # 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

require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.spec_files = FileList['spec/**/*_spec.rb']
  spec.spec_opts = ['--color', '--reverse', '--backtrace']
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 = "zymurgy #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
zymurgy-0.10.0 Rakefile