rake-funnel 0.0.1.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +7 -0
- data/.rspec +2 -0
- data/.travis.yml +21 -0
- data/Gemfile +29 -0
- data/Guardfile +24 -0
- data/README.md +29 -0
- data/Rakefile +77 -0
- data/build.cmd +30 -0
- data/bundle.cmd +26 -0
- data/config/.gitignore +1 -0
- data/config/.local.yaml.example +9 -0
- data/config/default.yaml +5 -0
- data/config/dev.yaml +0 -0
- data/config/production.yaml +3 -0
- data/lib/rake/funnel/ambiguous_file_error.rb +29 -0
- data/lib/rake/funnel/execution_error.rb +26 -0
- data/lib/rake/funnel/extensions/camel_case.rb +19 -0
- data/lib/rake/funnel/extensions/common_path.rb +52 -0
- data/lib/rake/funnel/extensions/disable_colors.rb +27 -0
- data/lib/rake/funnel/extensions/rexml.rb +23 -0
- data/lib/rake/funnel/extensions/shell.rb +56 -0
- data/lib/rake/funnel/framework.rb +15 -0
- data/lib/rake/funnel/integration/progress_report.rb +70 -0
- data/lib/rake/funnel/integration/sync_output.rb +8 -0
- data/lib/rake/funnel/integration/teamcity/nunit_plugin.rb +59 -0
- data/lib/rake/funnel/integration/teamcity/progress_report.rb +33 -0
- data/lib/rake/funnel/integration/teamcity/service_messages.rb +40 -0
- data/lib/rake/funnel/integration/teamcity/teamcity.rb +15 -0
- data/lib/rake/funnel/integration/teamcity.rb +5 -0
- data/lib/rake/funnel/support/finder.rb +51 -0
- data/lib/rake/funnel/support/mapper.rb +81 -0
- data/lib/rake/funnel/support/mapper_styles/default.rb +31 -0
- data/lib/rake/funnel/support/mapper_styles/msbuild.rb +33 -0
- data/lib/rake/funnel/support/mapper_styles/msdeploy.rb +47 -0
- data/lib/rake/funnel/support/mapper_styles/nunit.rb +33 -0
- data/lib/rake/funnel/support/mono.rb +17 -0
- data/lib/rake/funnel/support/patch.rb +37 -0
- data/lib/rake/funnel/support/template_engine.rb +26 -0
- data/lib/rake/funnel/support/which.rb +15 -0
- data/lib/rake/funnel/tasks/bin_path.rb +34 -0
- data/lib/rake/funnel/tasks/copy.rb +54 -0
- data/lib/rake/funnel/tasks/environments.rb +74 -0
- data/lib/rake/funnel/tasks/environments_support/loader.rb +37 -0
- data/lib/rake/funnel/tasks/msbuild.rb +52 -0
- data/lib/rake/funnel/tasks/msbuild_support/build_tool.rb +28 -0
- data/lib/rake/funnel/tasks/msdeploy.rb +58 -0
- data/lib/rake/funnel/tasks/msdeploy_support/registry_patch.rb +84 -0
- data/lib/rake/funnel/tasks/nunit.rb +46 -0
- data/lib/rake/funnel/tasks/paket.rb +39 -0
- data/lib/rake/funnel/tasks/quick_template.rb +45 -0
- data/lib/rake/funnel/tasks/side_by_side_specs.rb +33 -0
- data/lib/rake/funnel/tasks/side_by_side_specs_support/remover.rb +62 -0
- data/lib/rake/funnel/tasks/timing.rb +100 -0
- data/lib/rake/funnel/tasks/timing_support/report.rb +89 -0
- data/lib/rake/funnel/tasks/timing_support/statistics.rb +26 -0
- data/lib/rake/funnel/tasks/zip.rb +66 -0
- data/lib/rake/funnel/version.rb +5 -0
- data/lib/rake/funnel.rb +7 -0
- data/rake-funnel.gemspec +28 -0
- data/spec/rake/funnel/execution_error_spec.rb +67 -0
- data/spec/rake/funnel/extensions/camel_case_spec.rb +17 -0
- data/spec/rake/funnel/extensions/common_path_spec.rb +56 -0
- data/spec/rake/funnel/extensions/disable_colors_spec.rb +33 -0
- data/spec/rake/funnel/extensions/rexml_spec.rb +20 -0
- data/spec/rake/funnel/extensions/shell_spec.rb +237 -0
- data/spec/rake/funnel/integration/progress_report_spec.rb +149 -0
- data/spec/rake/funnel/integration/sync_output_spec.rb +16 -0
- data/spec/rake/funnel/integration/teamcity/nunit_plugin_spec.rb +112 -0
- data/spec/rake/funnel/integration/teamcity/progress_report_spec.rb +174 -0
- data/spec/rake/funnel/integration/teamcity/service_messages_spec.rb +136 -0
- data/spec/rake/funnel/integration/teamcity/teamcity_spec.rb +34 -0
- data/spec/rake/funnel/support/finder_spec.rb +210 -0
- data/spec/rake/funnel/support/mapper_spec.rb +87 -0
- data/spec/rake/funnel/support/mapper_styles/msdeploy_spec.rb +222 -0
- data/spec/rake/funnel/support/mapper_styles/nunit_spec.rb +25 -0
- data/spec/rake/funnel/support/mapper_styles/styles_spec.rb +214 -0
- data/spec/rake/funnel/support/mono_spec.rb +57 -0
- data/spec/rake/funnel/support/patch_spec.rb +108 -0
- data/spec/rake/funnel/support/template_engine_spec.rb +65 -0
- data/spec/rake/funnel/support/which_spec.rb +65 -0
- data/spec/rake/funnel/tasks/bin_path_spec.rb +40 -0
- data/spec/rake/funnel/tasks/copy_spec.rb +101 -0
- data/spec/rake/funnel/tasks/environments_spec.rb +237 -0
- data/spec/rake/funnel/tasks/environments_support/loader_spec.rb +114 -0
- data/spec/rake/funnel/tasks/msbuild_spec.rb +91 -0
- data/spec/rake/funnel/tasks/msbuild_support/build_tool_spec.rb +21 -0
- data/spec/rake/funnel/tasks/msdeploy_spec.rb +243 -0
- data/spec/rake/funnel/tasks/msdeploy_support/registry_patch_spec.rb +139 -0
- data/spec/rake/funnel/tasks/nunit_spec.rb +76 -0
- data/spec/rake/funnel/tasks/paket_spec.rb +184 -0
- data/spec/rake/funnel/tasks/quick_template_spec.rb +89 -0
- data/spec/rake/funnel/tasks/side_by_side_specs_spec.rb +58 -0
- data/spec/rake/funnel/tasks/side_by_side_specs_support/example/FooCode.cs +0 -0
- data/spec/rake/funnel/tasks/side_by_side_specs_support/example/FooSpecs.cs +0 -0
- data/spec/rake/funnel/tasks/side_by_side_specs_support/example/Sample.csproj +28 -0
- data/spec/rake/funnel/tasks/side_by_side_specs_support/example/Specs.cs +0 -0
- data/spec/rake/funnel/tasks/side_by_side_specs_support/example/subdir/BarCode.cs +0 -0
- data/spec/rake/funnel/tasks/side_by_side_specs_support/example/subdir/BarSpecs.cs +0 -0
- data/spec/rake/funnel/tasks/side_by_side_specs_support/remover_spec.rb +116 -0
- data/spec/rake/funnel/tasks/timing_spec.rb +133 -0
- data/spec/rake/funnel/tasks/timing_support/report_spec.rb +129 -0
- data/spec/rake/funnel/tasks/zip_spec.rb +119 -0
- data/spec/spec_helper.rb +32 -0
- data/tools/MSDeploy/Microsoft.Web.Delegation.dll +0 -0
- data/tools/MSDeploy/Microsoft.Web.Deployment.Tracing.dll +0 -0
- data/tools/MSDeploy/Microsoft.Web.Deployment.dll +0 -0
- data/tools/MSDeploy/en/msdeploy.resources.dll +0 -0
- data/tools/MSDeploy/msdeploy.exe +0 -0
- data/tools/MSDeploy/msdeploy.exe.config +6 -0
- metadata +253 -0
@@ -0,0 +1,129 @@
|
|
1
|
+
include Rake
|
2
|
+
include Rake::Funnel::Tasks::TimingSupport
|
3
|
+
|
4
|
+
describe Rake::Funnel::Tasks::TimingSupport::Report do
|
5
|
+
|
6
|
+
include DSL
|
7
|
+
|
8
|
+
subject { described_class.new(stats, opts) }
|
9
|
+
|
10
|
+
let(:opts) { {} }
|
11
|
+
|
12
|
+
before {
|
13
|
+
allow($stdout).to receive(:puts)
|
14
|
+
allow($stderr).to receive(:puts)
|
15
|
+
subject.render
|
16
|
+
}
|
17
|
+
|
18
|
+
shared_examples_for :report do
|
19
|
+
it 'should separator lines' do
|
20
|
+
expect($stdout).to have_received(:puts)
|
21
|
+
.with(Regexp.new('-' * described_class::HEADER_WIDTH)).exactly(4).times
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'should print the header' do
|
25
|
+
expect($stdout).to have_received(:puts).with('Build time report')
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'should print the total time' do
|
29
|
+
expect($stdout).to have_received(:puts).with(/^Total\s+00:00:00/)
|
30
|
+
end
|
31
|
+
|
32
|
+
it 'should print the build status' do
|
33
|
+
expect($stdout).to have_received(:puts).with(/Status\s+OK/)
|
34
|
+
end
|
35
|
+
|
36
|
+
context 'when rake succeeded' do
|
37
|
+
let(:opts) { { failed: false } }
|
38
|
+
|
39
|
+
it 'should print the successful build status' do
|
40
|
+
expect($stdout).to have_received(:puts).with(/Status\s+OK/)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
context 'when rake failed' do
|
45
|
+
let(:opts) { { failed: true } }
|
46
|
+
|
47
|
+
it 'should print the failed build status' do
|
48
|
+
expect($stderr).to have_received(:puts).with(/Status\s+Failed/)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'empty report' do
|
54
|
+
let(:stats) { Statistics.new }
|
55
|
+
|
56
|
+
it_should_behave_like :report
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'report for 2 tasks' do
|
60
|
+
let(:stats) {
|
61
|
+
s = Statistics.new
|
62
|
+
s.benchmark(task :foo) { }
|
63
|
+
s.benchmark(task :bar) { }
|
64
|
+
s
|
65
|
+
}
|
66
|
+
|
67
|
+
it_should_behave_like :report
|
68
|
+
|
69
|
+
it 'should print each task' do
|
70
|
+
expect($stdout).to have_received(:puts).with(/^foo/)
|
71
|
+
expect($stdout).to have_received(:puts).with(/^bar/)
|
72
|
+
end
|
73
|
+
|
74
|
+
it "should print each task's time" do
|
75
|
+
expect($stdout).to have_received(:puts).with(/00:00:00/).exactly(3).times
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
describe 'formatting' do
|
80
|
+
let(:stats) {
|
81
|
+
s = Statistics.new
|
82
|
+
s.benchmark(task task_name) { }
|
83
|
+
s
|
84
|
+
}
|
85
|
+
|
86
|
+
let(:header_space) {
|
87
|
+
diff = task_name.to_s.length - subject.columns[0].header.length
|
88
|
+
diff = 0 if diff < 0
|
89
|
+
diff + described_class::SPACE
|
90
|
+
}
|
91
|
+
|
92
|
+
let(:header_underline) {
|
93
|
+
[subject.columns[0].header.length, task_name.to_s.length].max
|
94
|
+
}
|
95
|
+
|
96
|
+
let(:value_space) {
|
97
|
+
diff = subject.columns.first.header.length - task_name.to_s.length
|
98
|
+
diff = 0 if diff < 0
|
99
|
+
diff + described_class::SPACE
|
100
|
+
}
|
101
|
+
|
102
|
+
shared_examples_for :padding do
|
103
|
+
it 'should pad headers' do
|
104
|
+
expect($stdout).to have_received(:puts)
|
105
|
+
.with(Regexp.new("^#{subject.columns[0].header}\\s{#{header_space}}#{subject.columns[1].header}"))
|
106
|
+
end
|
107
|
+
|
108
|
+
it 'should pad header underlines' do
|
109
|
+
expect($stdout).to have_received(:puts).with(Regexp.new("^-{#{header_underline}}\\s+"))
|
110
|
+
end
|
111
|
+
|
112
|
+
it 'should pad the task names' do
|
113
|
+
expect($stdout).to have_received(:puts).with(Regexp.new("^#{task_name}\\s{#{value_space}}\\d"))
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
context 'task names are shorter than headers' do
|
118
|
+
let(:task_name) { :a }
|
119
|
+
|
120
|
+
it_should_behave_like :padding
|
121
|
+
end
|
122
|
+
|
123
|
+
context 'task names are longer than headers' do
|
124
|
+
let(:task_name) { :aaaaaaaaaaaa }
|
125
|
+
|
126
|
+
it_should_behave_like :padding
|
127
|
+
end
|
128
|
+
end
|
129
|
+
end
|
@@ -0,0 +1,119 @@
|
|
1
|
+
require 'tmpdir'
|
2
|
+
|
3
|
+
include Rake
|
4
|
+
include Rake::Funnel::Support
|
5
|
+
|
6
|
+
describe Rake::Funnel::Tasks::Zip do
|
7
|
+
before {
|
8
|
+
CLEAN.clear
|
9
|
+
Task.clear
|
10
|
+
}
|
11
|
+
|
12
|
+
describe 'defaults' do
|
13
|
+
its(:name) { should == :package }
|
14
|
+
its(:source) { should eq([]) }
|
15
|
+
its(:target) { should be_nil }
|
16
|
+
its(:zip_root) { should be_nil }
|
17
|
+
|
18
|
+
it 'should not add the target file to the files to be cleaned' do
|
19
|
+
expect(CLEAN).to be_empty
|
20
|
+
end
|
21
|
+
|
22
|
+
describe 'overriding defaults' do
|
23
|
+
subject {
|
24
|
+
described_class.new do |t|
|
25
|
+
t.target = 'something.zip'
|
26
|
+
end
|
27
|
+
}
|
28
|
+
|
29
|
+
it 'should add the target file to the files to be cleaned' do
|
30
|
+
expect(CLEAN).to include(subject.target)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
describe 'execution' do
|
36
|
+
let(:source) { %w(bin/1 bin/2 bin/3/4) }
|
37
|
+
let(:target) { 'some path/file.zip' }
|
38
|
+
let(:zip_root) { nil }
|
39
|
+
|
40
|
+
subject! {
|
41
|
+
described_class.new do |t|
|
42
|
+
t.source = source
|
43
|
+
t.target = target
|
44
|
+
t.zip_root = zip_root
|
45
|
+
end
|
46
|
+
}
|
47
|
+
|
48
|
+
context 'failure' do
|
49
|
+
context 'target not defined' do
|
50
|
+
let(:target) { nil }
|
51
|
+
|
52
|
+
it 'should fail' do
|
53
|
+
expect(lambda { Task[subject.name].invoke }).to raise_error(/Target not defined/)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
context 'success' do
|
59
|
+
let(:finder) { double(Finder).as_null_object }
|
60
|
+
let(:zip) { double(::Zip::File).as_null_object }
|
61
|
+
|
62
|
+
before {
|
63
|
+
allow(finder).to receive(:all_or_default).and_return(source)
|
64
|
+
allow(Finder).to receive(:new).and_return(finder)
|
65
|
+
allow(RakeFileUtils).to receive(:mkdir_p)
|
66
|
+
allow(Rake).to receive(:rake_output_message)
|
67
|
+
allow(::Zip::File).to receive(:open).with(target, ::Zip::File::CREATE).and_yield(zip)
|
68
|
+
}
|
69
|
+
|
70
|
+
before {
|
71
|
+
Task[subject.name].invoke
|
72
|
+
}
|
73
|
+
|
74
|
+
it 'should create the target directory' do
|
75
|
+
expect(RakeFileUtils).to have_received(:mkdir_p).with(File.dirname(target))
|
76
|
+
end
|
77
|
+
|
78
|
+
it 'should allow unicode names' do
|
79
|
+
expect(::Zip.unicode_names).to eq(true)
|
80
|
+
end
|
81
|
+
|
82
|
+
it 'should use best compression' do
|
83
|
+
expect(::Zip.default_compression).to eq(Zlib::BEST_COMPRESSION)
|
84
|
+
end
|
85
|
+
|
86
|
+
it 'should report the created zip file' do
|
87
|
+
expect(Rake).to have_received(:rake_output_message).with("Created #{target}")
|
88
|
+
end
|
89
|
+
|
90
|
+
[nil, '', 'some path/inside the zip file'].each do |root|
|
91
|
+
context "with '#{root || 'nil'}' zip root" do
|
92
|
+
let(:zip_root) { root }
|
93
|
+
|
94
|
+
def build_args
|
95
|
+
common_path = finder.all_or_default.common_path
|
96
|
+
|
97
|
+
finder.all_or_default.map do |file|
|
98
|
+
zip_path = file.sub(%r|^#{Regexp.escape(common_path)}/|, '')
|
99
|
+
zip_path = File.join(zip_root, zip_path) unless zip_root.nil? || zip_root.empty?
|
100
|
+
|
101
|
+
[
|
102
|
+
zip_path,
|
103
|
+
file
|
104
|
+
]
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
it 'should put files below a common path in the zip root' do
|
109
|
+
files = build_args
|
110
|
+
|
111
|
+
files.each do |file_args|
|
112
|
+
expect(zip).to have_received(:add).with(*file_args)
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'simplecov'
|
2
|
+
require 'coveralls'
|
3
|
+
require 'codeclimate-test-reporter'
|
4
|
+
|
5
|
+
SimpleCov.start do
|
6
|
+
if Coveralls.will_run?
|
7
|
+
external_services = [
|
8
|
+
Coveralls::SimpleCov::Formatter,
|
9
|
+
CodeClimate::TestReporter::Formatter
|
10
|
+
]
|
11
|
+
end
|
12
|
+
|
13
|
+
formatter SimpleCov::Formatter::MultiFormatter[
|
14
|
+
SimpleCov::Formatter::HTMLFormatter,
|
15
|
+
*external_services
|
16
|
+
]
|
17
|
+
|
18
|
+
coverage_dir('build/coverage')
|
19
|
+
end
|
20
|
+
|
21
|
+
require 'rspec/its'
|
22
|
+
require 'rspec/collection_matchers'
|
23
|
+
require 'rake/funnel'
|
24
|
+
|
25
|
+
# When invoked via the rspec rake task, output needs to by synced.
|
26
|
+
Rake::Funnel::Integration::SyncOutput.new
|
27
|
+
|
28
|
+
RSpec.configure do |config|
|
29
|
+
config.expect_with :rspec do |c|
|
30
|
+
c.syntax = :expect
|
31
|
+
end
|
32
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,253 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rake-funnel
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1.pre
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Alexander Groß
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-03-08 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rubyzip
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: smart_colored
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: configatron
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '4.5'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '4.5'
|
69
|
+
description: A standardized build pipeline
|
70
|
+
email:
|
71
|
+
- agross@therightstuff.de
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- .gitignore
|
77
|
+
- .rspec
|
78
|
+
- .travis.yml
|
79
|
+
- Gemfile
|
80
|
+
- Guardfile
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- build.cmd
|
84
|
+
- bundle.cmd
|
85
|
+
- config/.gitignore
|
86
|
+
- config/.local.yaml.example
|
87
|
+
- config/default.yaml
|
88
|
+
- config/dev.yaml
|
89
|
+
- config/production.yaml
|
90
|
+
- lib/rake/funnel.rb
|
91
|
+
- lib/rake/funnel/ambiguous_file_error.rb
|
92
|
+
- lib/rake/funnel/execution_error.rb
|
93
|
+
- lib/rake/funnel/extensions/camel_case.rb
|
94
|
+
- lib/rake/funnel/extensions/common_path.rb
|
95
|
+
- lib/rake/funnel/extensions/disable_colors.rb
|
96
|
+
- lib/rake/funnel/extensions/rexml.rb
|
97
|
+
- lib/rake/funnel/extensions/shell.rb
|
98
|
+
- lib/rake/funnel/framework.rb
|
99
|
+
- lib/rake/funnel/integration/progress_report.rb
|
100
|
+
- lib/rake/funnel/integration/sync_output.rb
|
101
|
+
- lib/rake/funnel/integration/teamcity.rb
|
102
|
+
- lib/rake/funnel/integration/teamcity/nunit_plugin.rb
|
103
|
+
- lib/rake/funnel/integration/teamcity/progress_report.rb
|
104
|
+
- lib/rake/funnel/integration/teamcity/service_messages.rb
|
105
|
+
- lib/rake/funnel/integration/teamcity/teamcity.rb
|
106
|
+
- lib/rake/funnel/support/finder.rb
|
107
|
+
- lib/rake/funnel/support/mapper.rb
|
108
|
+
- lib/rake/funnel/support/mapper_styles/default.rb
|
109
|
+
- lib/rake/funnel/support/mapper_styles/msbuild.rb
|
110
|
+
- lib/rake/funnel/support/mapper_styles/msdeploy.rb
|
111
|
+
- lib/rake/funnel/support/mapper_styles/nunit.rb
|
112
|
+
- lib/rake/funnel/support/mono.rb
|
113
|
+
- lib/rake/funnel/support/patch.rb
|
114
|
+
- lib/rake/funnel/support/template_engine.rb
|
115
|
+
- lib/rake/funnel/support/which.rb
|
116
|
+
- lib/rake/funnel/tasks/bin_path.rb
|
117
|
+
- lib/rake/funnel/tasks/copy.rb
|
118
|
+
- lib/rake/funnel/tasks/environments.rb
|
119
|
+
- lib/rake/funnel/tasks/environments_support/loader.rb
|
120
|
+
- lib/rake/funnel/tasks/msbuild.rb
|
121
|
+
- lib/rake/funnel/tasks/msbuild_support/build_tool.rb
|
122
|
+
- lib/rake/funnel/tasks/msdeploy.rb
|
123
|
+
- lib/rake/funnel/tasks/msdeploy_support/registry_patch.rb
|
124
|
+
- lib/rake/funnel/tasks/nunit.rb
|
125
|
+
- lib/rake/funnel/tasks/paket.rb
|
126
|
+
- lib/rake/funnel/tasks/quick_template.rb
|
127
|
+
- lib/rake/funnel/tasks/side_by_side_specs.rb
|
128
|
+
- lib/rake/funnel/tasks/side_by_side_specs_support/remover.rb
|
129
|
+
- lib/rake/funnel/tasks/timing.rb
|
130
|
+
- lib/rake/funnel/tasks/timing_support/report.rb
|
131
|
+
- lib/rake/funnel/tasks/timing_support/statistics.rb
|
132
|
+
- lib/rake/funnel/tasks/zip.rb
|
133
|
+
- lib/rake/funnel/version.rb
|
134
|
+
- rake-funnel.gemspec
|
135
|
+
- spec/rake/funnel/execution_error_spec.rb
|
136
|
+
- spec/rake/funnel/extensions/camel_case_spec.rb
|
137
|
+
- spec/rake/funnel/extensions/common_path_spec.rb
|
138
|
+
- spec/rake/funnel/extensions/disable_colors_spec.rb
|
139
|
+
- spec/rake/funnel/extensions/rexml_spec.rb
|
140
|
+
- spec/rake/funnel/extensions/shell_spec.rb
|
141
|
+
- spec/rake/funnel/integration/progress_report_spec.rb
|
142
|
+
- spec/rake/funnel/integration/sync_output_spec.rb
|
143
|
+
- spec/rake/funnel/integration/teamcity/nunit_plugin_spec.rb
|
144
|
+
- spec/rake/funnel/integration/teamcity/progress_report_spec.rb
|
145
|
+
- spec/rake/funnel/integration/teamcity/service_messages_spec.rb
|
146
|
+
- spec/rake/funnel/integration/teamcity/teamcity_spec.rb
|
147
|
+
- spec/rake/funnel/support/finder_spec.rb
|
148
|
+
- spec/rake/funnel/support/mapper_spec.rb
|
149
|
+
- spec/rake/funnel/support/mapper_styles/msdeploy_spec.rb
|
150
|
+
- spec/rake/funnel/support/mapper_styles/nunit_spec.rb
|
151
|
+
- spec/rake/funnel/support/mapper_styles/styles_spec.rb
|
152
|
+
- spec/rake/funnel/support/mono_spec.rb
|
153
|
+
- spec/rake/funnel/support/patch_spec.rb
|
154
|
+
- spec/rake/funnel/support/template_engine_spec.rb
|
155
|
+
- spec/rake/funnel/support/which_spec.rb
|
156
|
+
- spec/rake/funnel/tasks/bin_path_spec.rb
|
157
|
+
- spec/rake/funnel/tasks/copy_spec.rb
|
158
|
+
- spec/rake/funnel/tasks/environments_spec.rb
|
159
|
+
- spec/rake/funnel/tasks/environments_support/loader_spec.rb
|
160
|
+
- spec/rake/funnel/tasks/msbuild_spec.rb
|
161
|
+
- spec/rake/funnel/tasks/msbuild_support/build_tool_spec.rb
|
162
|
+
- spec/rake/funnel/tasks/msdeploy_spec.rb
|
163
|
+
- spec/rake/funnel/tasks/msdeploy_support/registry_patch_spec.rb
|
164
|
+
- spec/rake/funnel/tasks/nunit_spec.rb
|
165
|
+
- spec/rake/funnel/tasks/paket_spec.rb
|
166
|
+
- spec/rake/funnel/tasks/quick_template_spec.rb
|
167
|
+
- spec/rake/funnel/tasks/side_by_side_specs_spec.rb
|
168
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/example/FooCode.cs
|
169
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/example/FooSpecs.cs
|
170
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/example/Sample.csproj
|
171
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/example/Specs.cs
|
172
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/example/subdir/BarCode.cs
|
173
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/example/subdir/BarSpecs.cs
|
174
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/remover_spec.rb
|
175
|
+
- spec/rake/funnel/tasks/timing_spec.rb
|
176
|
+
- spec/rake/funnel/tasks/timing_support/report_spec.rb
|
177
|
+
- spec/rake/funnel/tasks/zip_spec.rb
|
178
|
+
- spec/spec_helper.rb
|
179
|
+
- tools/MSDeploy/Microsoft.Web.Delegation.dll
|
180
|
+
- tools/MSDeploy/Microsoft.Web.Deployment.Tracing.dll
|
181
|
+
- tools/MSDeploy/Microsoft.Web.Deployment.dll
|
182
|
+
- tools/MSDeploy/en/msdeploy.resources.dll
|
183
|
+
- tools/MSDeploy/msdeploy.exe
|
184
|
+
- tools/MSDeploy/msdeploy.exe.config
|
185
|
+
homepage: http://grossweber.com
|
186
|
+
licenses:
|
187
|
+
- BSD
|
188
|
+
metadata: {}
|
189
|
+
post_install_message:
|
190
|
+
rdoc_options: []
|
191
|
+
require_paths:
|
192
|
+
- lib
|
193
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
194
|
+
requirements:
|
195
|
+
- - '>='
|
196
|
+
- !ruby/object:Gem::Version
|
197
|
+
version: 2.0.0
|
198
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
199
|
+
requirements:
|
200
|
+
- - '>'
|
201
|
+
- !ruby/object:Gem::Version
|
202
|
+
version: 1.3.1
|
203
|
+
requirements: []
|
204
|
+
rubyforge_project:
|
205
|
+
rubygems_version: 2.0.14
|
206
|
+
signing_key:
|
207
|
+
specification_version: 4
|
208
|
+
summary: The build pipeline
|
209
|
+
test_files:
|
210
|
+
- spec/rake/funnel/execution_error_spec.rb
|
211
|
+
- spec/rake/funnel/extensions/camel_case_spec.rb
|
212
|
+
- spec/rake/funnel/extensions/common_path_spec.rb
|
213
|
+
- spec/rake/funnel/extensions/disable_colors_spec.rb
|
214
|
+
- spec/rake/funnel/extensions/rexml_spec.rb
|
215
|
+
- spec/rake/funnel/extensions/shell_spec.rb
|
216
|
+
- spec/rake/funnel/integration/progress_report_spec.rb
|
217
|
+
- spec/rake/funnel/integration/sync_output_spec.rb
|
218
|
+
- spec/rake/funnel/integration/teamcity/nunit_plugin_spec.rb
|
219
|
+
- spec/rake/funnel/integration/teamcity/progress_report_spec.rb
|
220
|
+
- spec/rake/funnel/integration/teamcity/service_messages_spec.rb
|
221
|
+
- spec/rake/funnel/integration/teamcity/teamcity_spec.rb
|
222
|
+
- spec/rake/funnel/support/finder_spec.rb
|
223
|
+
- spec/rake/funnel/support/mapper_spec.rb
|
224
|
+
- spec/rake/funnel/support/mapper_styles/msdeploy_spec.rb
|
225
|
+
- spec/rake/funnel/support/mapper_styles/nunit_spec.rb
|
226
|
+
- spec/rake/funnel/support/mapper_styles/styles_spec.rb
|
227
|
+
- spec/rake/funnel/support/mono_spec.rb
|
228
|
+
- spec/rake/funnel/support/patch_spec.rb
|
229
|
+
- spec/rake/funnel/support/template_engine_spec.rb
|
230
|
+
- spec/rake/funnel/support/which_spec.rb
|
231
|
+
- spec/rake/funnel/tasks/bin_path_spec.rb
|
232
|
+
- spec/rake/funnel/tasks/copy_spec.rb
|
233
|
+
- spec/rake/funnel/tasks/environments_spec.rb
|
234
|
+
- spec/rake/funnel/tasks/environments_support/loader_spec.rb
|
235
|
+
- spec/rake/funnel/tasks/msbuild_spec.rb
|
236
|
+
- spec/rake/funnel/tasks/msbuild_support/build_tool_spec.rb
|
237
|
+
- spec/rake/funnel/tasks/msdeploy_spec.rb
|
238
|
+
- spec/rake/funnel/tasks/msdeploy_support/registry_patch_spec.rb
|
239
|
+
- spec/rake/funnel/tasks/nunit_spec.rb
|
240
|
+
- spec/rake/funnel/tasks/paket_spec.rb
|
241
|
+
- spec/rake/funnel/tasks/quick_template_spec.rb
|
242
|
+
- spec/rake/funnel/tasks/side_by_side_specs_spec.rb
|
243
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/example/FooCode.cs
|
244
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/example/FooSpecs.cs
|
245
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/example/Sample.csproj
|
246
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/example/Specs.cs
|
247
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/example/subdir/BarCode.cs
|
248
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/example/subdir/BarSpecs.cs
|
249
|
+
- spec/rake/funnel/tasks/side_by_side_specs_support/remover_spec.rb
|
250
|
+
- spec/rake/funnel/tasks/timing_spec.rb
|
251
|
+
- spec/rake/funnel/tasks/timing_support/report_spec.rb
|
252
|
+
- spec/rake/funnel/tasks/zip_spec.rb
|
253
|
+
- spec/spec_helper.rb
|