forked from gulbrand/jira4r
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
57 lines (51 loc) · 1.5 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
require 'rake'
require 'rubygems'
require 'rake/rdoctask'
require 'spec/rake/spectask'
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "jira4r"
s.summary = "Ruby library for controlling JIRA"
s.email = "remi@remitaylor.com"
s.homepage = "http://github.com/remi/jira4r"
s.description = "Ruby library for controlling JIRA"
s.authors = %w( bwalding remi )
s.files = FileList["[A-Z]*", "{lib,spec,examples,rails_generators}/**/*"]
# s.executables = "neato"
# s.add_dependency 'person-project'
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
Spec::Rake::SpecTask.new do |t|
t.spec_files = FileList['spec/**/*_spec.rb']
end
desc "Run all examples with RCov"
Spec::Rake::SpecTask.new('rcov') do |t|
t.spec_files = FileList['spec/**/*_spec.rb']
t.rcov = true
end
Rake::RDocTask.new do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'jira4r'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README.rdoc')
rdoc.rdoc_files.include('lib/**/*.rb')
end
desc 'Confirm that gemspec is $SAFE'
task :safe do
require 'yaml'
require 'rubygems/specification'
data = File.read('jira4r.gemspec')
spec = nil
if data !~ %r{!ruby/object:Gem::Specification}
Thread.new { spec = eval("$SAFE = 3\n#{data}") }.join
else
spec = YAML.load(data)
end
spec.validate
puts spec
puts "OK"
end
task :default => :spec