Sha256: c3cb39e4c4ebd49f55e922293d193ed604dea71bb94a5fa27fe800b2c3faa5e5

Contents?: true

Size: 1.29 KB

Versions: 2

Compression:

Stored size: 1.29 KB

Contents

require 'rubygems'
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

begin
    require 'jeweler'
    Jeweler::Tasks.new do |gem|
        gem.name = "martin"
        gem.summary = %Q{A Sinatra style DSL for creating command line applications}
        gem.description = %Q{An ode to the Rat Pack (Dean Martin) with a Sinatra style DSL for creating command line interfaces to your applications}
        gem.email = "c00lryguy@gmail.com"
        gem.homepage = "http://github.com/c00lryguy/martin"
        gem.authors = ["Ryan Lewis"]
        gem.add_development_dependency "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

Rake::TestTask.new(:test) do |test|
    test.libs << 'lib' << 'test'
    test.pattern = 'test/**/test_*.rb'
end

task :test => :check_dependencies

task :default => :test

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

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
martin-0.1.3 Rakefile
martin-0.1.2 Rakefile