-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
36 lines (29 loc) · 818 Bytes
/
Rakefile
File metadata and controls
36 lines (29 loc) · 818 Bytes
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
# -*- ruby -*-
require 'rubygems'
require 'hoe'
# Hoe.plugin :compiler
# Hoe.plugin :cucumberfeatures
Hoe.plugin :doofus
# Hoe.plugin :gem_prelude_sucks
Hoe.plugin :gemspec
Hoe.plugin :git
# Hoe.plugin :inline
# Hoe.plugin :manifest
# Hoe.plugin :newgem
# Hoe.plugin :racc
# Hoe.plugin :rcov
# Hoe.plugin :rubyforge
# Hoe.plugin :rubygems
# Hoe.plugin :website
Hoe.plugin :yard
Hoe.spec 'jirarest2' do
developer('Cyril Bitterich', 'cebit-jirarest@gunnet.de')
extra_deps << ['json', ">= 1.6.0"]
extra_deps << ['highline', ">= 1.1.0"]
extra_dev_deps << ['webmock', ">= 1.7.0"]
# self.yard_title = 'Jirarest2'
# self.yard_markup = :markdown
self.yard_opts = ['--protected'] # any additional YARD options
# self.rubyforge_name = 'jirarest2x' # if different than 'jirarest2'
end
# vim: syntax=ruby