forked from hybridgroup/taskmapper-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
31 lines (27 loc) · 947 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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