-
Notifications
You must be signed in to change notification settings - Fork 6
/
rakefile.rb
40 lines (30 loc) · 1.03 KB
/
rakefile.rb
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
require 'fuburake'
solution = FubuRake::Solution.new do |sln|
sln.assembly_info = {
:product_name => "FubuTransportation",
:copyright => 'Copyright 2013. All rights reserved.'
}
#sln.ci_steps = ["st:run"]
sln.ripple_enabled = true
sln.fubudocs_enabled = true
sln.options[:nuget_publish_folder] = 'nupkgs'
sln.options[:nuget_publish_url] = 'https://www.myget.org/F/fubumvc-edge/'
end
FubuRake::BottleServices.new({
:dir => "src/DiagnosticsHarness/bin/#{solution.compilemode}",
:name => 'ft-harness',
:local_service => true,
:manual => true
})
FubuRake::MvcApp.new({:directory => 'src/DiagnosticsHarness', :name => 'harness'})
# You may have to change the value of :compilemode below to reflect
# your rake file
FubuRake::Storyteller.new({
:path => 'src/FubuTransportation.Storyteller',
:compilemode => solution.compilemode
})
FubuRake::Storyteller.new({
:path => 'src/FubuTransportation.Serenity.Samples',
:compilemode => solution.compilemode,
:prefix => "samples:st"
})