Sha256: 5a3ca2f7c26074ab61a88d72e6d0fa0a82e78181f967047b904502347284a519

Contents?: true

Size: 1.54 KB

Versions: 5

Compression:

Stored size: 1.54 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "thartm"
    gem.summary = %Q{rtmapi based remember the milk cli.}
    gem.description = %Q{rtmapi fixed version with a simple cli added}
    gem.email = "thamayor@gmail.com"
    gem.homepage = "http://github.com/ghedamat/thartm"
    gem.authors = ["tha"]
    gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
	gem.files =  FileList["[A-Z]*", "{bin,generators,lib,test}/**/*", ]
	gem.add_dependency 'tzinfo'
	gem.add_dependency 'libxml-ruby'
    # 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 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/test_*.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
  end
end

task :test => :check_dependencies

task :default => :test

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

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
thartm-0.0.22 Rakefile
thartm-0.0.21 Rakefile
thartm-0.0.20 Rakefile
thartm-0.0.18 Rakefile
thartm-0.0.16 Rakefile