Sha256: 29e423990bc3e081c2de016cd8269e1a986d18549cce262c1f05b0bb03f1381c

Contents?: true

Size: 947 Bytes

Versions: 12

Compression:

Stored size: 947 Bytes

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "taskmapper-github"
    gem.summary = %Q{The github provider for taskmapper}
    gem.description = %Q{This provides an interface with github through the taskmapper gem.}
    gem.email = "hong.quach@abigfisch.com"
    gem.homepage = "http://github.com/kiafaldorius/taskmapper-github"
    gem.authors = ["HybridGroup"]
    # 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 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :default => :spec

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
taskmapper-github-0.12.1 Rakefile
taskmapper-github-0.12.0 Rakefile
taskmapper-github-0.11.4 Rakefile
taskmapper-github-0.11.3 Rakefile
taskmapper-github-0.11.2 Rakefile
taskmapper-github-0.11.1 Rakefile
taskmapper-github-0.11.0 Rakefile
taskmapper-github-0.10.4 Rakefile
taskmapper-github-0.10.3 Rakefile
taskmapper-github-0.10.2 Rakefile
taskmapper-github-0.10.1 Rakefile
taskmapper-github-0.10.0 Rakefile