albacore 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +36 -30
- data/VERSION +1 -1
- data/install_dependencies.rb +1 -14
- data/lib/albacore/exec.rb +1 -7
- data/lib/albacore/ncoverconsole.rb +9 -7
- data/lib/albacore/support/attrmethods.rb +10 -2
- data/lib/albacore/support/runcommand.rb +3 -3
- data/spec/attrmethods_spec.rb +100 -0
- data/spec/createtask_spec.rb +53 -1
- data/spec/exec_spec.rb +6 -0
- data/spec/msbuild_spec.rb +0 -1
- data/spec/ncoverconsole_spec.rb +28 -1
- data/spec/support/spec_helper.rb +2 -0
- data/spec/support/yamlconfig/msbuild.yml +3 -1
- metadata +78 -37
data/README.markdown
CHANGED
@@ -1,77 +1,83 @@
|
|
1
|
-
# Welcome to the
|
1
|
+
# Welcome to the albacore project.
|
2
2
|
|
3
|
-
|
3
|
+
albacore is a professional quality suite of Rake tasks to help automate the process of building a .NET based system.
|
4
4
|
|
5
|
-
## How To Install
|
5
|
+
## How To Install albacore From Gemcutter Gems:
|
6
6
|
|
7
|
-
If you would like to install the current, stable release of
|
7
|
+
If you would like to install the current, stable release of albacore, you can do so easily through the standard RubyGems.org server. Follow these simple instructions and you will be good to go.
|
8
8
|
|
9
|
-
**Step 1:**
|
9
|
+
**Step 1:** Install the albacore gem
|
10
10
|
|
11
|
-
> gem
|
11
|
+
> gem install albacore
|
12
12
|
|
13
|
-
|
13
|
+
That's it! You're now equiped with everything you need to get up and running with albacore!
|
14
14
|
|
15
|
-
|
15
|
+
## How To Manually Build And Install The albacore Gem
|
16
16
|
|
17
|
-
|
17
|
+
If you would like to install the latest source code for albacore, and get all the new features and functionality (possibly in an unstable form), you can manually build and install the albacore gem. Follow these simple instructions and you will be good to go.
|
18
|
+
|
19
|
+
**Step 1:** Clone albacore
|
18
20
|
|
19
|
-
|
21
|
+
Use your Github account to fork albacore, or clone it directly from my public clone URL.
|
20
22
|
|
21
|
-
|
23
|
+
> git clone git://github.com/derickbailey/albacore.git albacore
|
22
24
|
|
23
|
-
|
25
|
+
**Step 2:** Install Required Dependencies
|
24
26
|
|
25
|
-
|
27
|
+
In your local clone of albacore, run the "install_dependencies.rb" script:
|
26
28
|
|
27
|
-
|
29
|
+
> ruby install_dependencies.rb
|
28
30
|
|
29
|
-
|
31
|
+
This will install all of the gem dependencies that you need, to build the albacore gem.
|
30
32
|
|
31
|
-
**Step
|
33
|
+
**Step 3:** Build the gem
|
32
34
|
|
33
|
-
In your local clone of
|
35
|
+
In your local clone of albacore, use the jeweler rake tasks to build the latest version of the albacore code into a gem.
|
34
36
|
|
35
37
|
> rake jeweler:gemspec
|
36
38
|
>
|
37
39
|
> rake jeweler:build
|
38
40
|
|
39
|
-
this will produce an 'albacore-#.#.#.gem' file in the 'pkg' folder, where '#.#.#' is the version number. For example 'albacore-0.
|
41
|
+
this will produce an 'albacore-#.#.#.gem' file in the 'pkg' folder, where '#.#.#' is the version number. For example 'albacore-0.1.2.gem'.
|
40
42
|
|
41
|
-
**Step
|
43
|
+
**Step 4:** Install the gem
|
42
44
|
|
43
45
|
After building the gem, you can install it from your local file system.
|
44
46
|
|
45
47
|
> gem install -l pkg/albacore-#.#.#.gem
|
46
48
|
|
47
|
-
where '#.#.#' is the version number of the gem. For example 'albacore-0.
|
49
|
+
where '#.#.#' is the version number of the gem. For example 'albacore-0.1.2.gem'
|
50
|
+
|
51
|
+
## How To Use albacore
|
52
|
+
|
53
|
+
On systems do not have the "RUBYOPT" environment variable set to automatically include rubygems, you will also need to add
|
48
54
|
|
49
|
-
|
55
|
+
require 'rubygems'
|
50
56
|
|
51
|
-
|
57
|
+
to the top of your rakefile. Then, you can add
|
52
58
|
|
53
59
|
require 'albacore'
|
54
60
|
|
55
|
-
|
61
|
+
to your rakefile. This will allow you to use the tasks that albacore includes.
|
56
62
|
|
57
63
|
desc "Run a sample build using the MSBuildTask"
|
58
|
-
|
59
|
-
msb.properties
|
60
|
-
msb.targets
|
64
|
+
msbuild do |msb|
|
65
|
+
msb.properties :configuration => :Debug
|
66
|
+
msb.targets :Clean, :Build
|
61
67
|
msb.solution = "spec/support/TestSolution/TestSolution.sln"
|
62
68
|
end
|
63
69
|
|
64
|
-
Beyond the simple example, check out the [
|
70
|
+
Beyond the simple example, check out the [albacore Wiki](http://wiki.github.com/derickbailey/albacore) for detailed instructions on how to use the built in tasks and their options.
|
65
71
|
|
66
72
|
## How To Contribute, Collaborate, Communicate
|
67
73
|
|
68
|
-
If you'd like to get involved with the
|
74
|
+
If you'd like to get involved with the albacore framework, we have a discussion group over at google: **[AlbacoreDev](http://groups.google.com/group/albacoredev)**
|
69
75
|
|
70
|
-
Anyone can fork the main repository and submit patches, as well. And lastly, the [wiki](http://wiki.github.com/derickbailey/
|
76
|
+
Anyone can fork the main repository and submit patches, as well. And lastly, the [wiki](http://wiki.github.com/derickbailey/albacore) and [issues list](http://github.com/derickbailey/albacore/issues) are also open for additions, edits, and discussion.
|
71
77
|
|
72
78
|
## Contributors
|
73
79
|
|
74
|
-
Many thanks for contributions to
|
80
|
+
Many thanks for contributions to albacore are due (in alphabetical order):
|
75
81
|
|
76
82
|
* [Andreone](http://github.com/Andreone): Significant Wiki contributions, questions and contributions on the google group
|
77
83
|
* [Ben Hall](http://github.com/benhall): Primary contributor. SSH, SFTP, ZipDirectory, Rename, YAML auto config, Wiki pages, and many other great additions
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.3
|
data/install_dependencies.rb
CHANGED
@@ -3,7 +3,7 @@ require 'rubygems/gem_runner'
|
|
3
3
|
require 'rubygems/exceptions'
|
4
4
|
|
5
5
|
#http://gist.github.com/236148
|
6
|
-
required_version = Gem::Requirement.new "> 1.8.
|
6
|
+
required_version = Gem::Requirement.new "> 1.8.5"
|
7
7
|
|
8
8
|
unless required_version.satisfied_by? Gem.ruby_version then
|
9
9
|
abort "Expected Ruby Version #{required_version}, was #{Gem.ruby_version}"
|
@@ -22,20 +22,7 @@ def install(lib)
|
|
22
22
|
end
|
23
23
|
end
|
24
24
|
|
25
|
-
def add_source(url)
|
26
|
-
begin
|
27
|
-
if Gem.sources.include?(url)
|
28
|
-
puts "Found #{url} gem source = skipping"
|
29
|
-
else
|
30
|
-
puts "Adding #{url} gem source."
|
31
|
-
Gem::GemRunner.new.run ['sources', '-a', url]
|
32
|
-
end
|
33
|
-
rescue Gem::SystemExitException => e
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
25
|
puts "Installing required dependencies"
|
38
|
-
add_source 'http://gemcutter.org'
|
39
26
|
install 'rake'
|
40
27
|
install 'net-ssh'
|
41
28
|
install 'net-sftp'
|
data/lib/albacore/exec.rb
CHANGED
@@ -4,15 +4,9 @@ class Exec
|
|
4
4
|
include RunCommand
|
5
5
|
include YAMLConfig
|
6
6
|
include Logging
|
7
|
-
|
8
|
-
def initialize
|
9
|
-
@path_to_command=''
|
10
|
-
@parameters = []
|
11
|
-
super()
|
12
|
-
end
|
13
7
|
|
14
8
|
def execute
|
15
|
-
result = run_command "Exec"
|
9
|
+
result = run_command "Exec"
|
16
10
|
|
17
11
|
failure_message = 'Exec Failed. See Build Log For Detail'
|
18
12
|
fail_with_message failure_message if !result
|
@@ -6,14 +6,15 @@ class NCoverConsole
|
|
6
6
|
include YAMLConfig
|
7
7
|
|
8
8
|
attr_accessor :testrunner, :working_directory
|
9
|
-
attr_array :cover_assemblies, :
|
9
|
+
attr_array :cover_assemblies, :exclude_assemblies, :coverage, :exclude_attributes
|
10
10
|
attr_hash :output
|
11
11
|
|
12
12
|
def initialize
|
13
13
|
@register_dll = true
|
14
14
|
@output = {}
|
15
15
|
@cover_assemblies = []
|
16
|
-
@
|
16
|
+
@exclude_assemblies = []
|
17
|
+
@exclude_attributes = []
|
17
18
|
@coverage = []
|
18
19
|
super()
|
19
20
|
end
|
@@ -33,8 +34,9 @@ class NCoverConsole
|
|
33
34
|
command_parameters << "//reg" if @register_dll
|
34
35
|
command_parameters << build_output_options(@output) unless @output.nil?
|
35
36
|
command_parameters << @working_directory unless @working_directory.nil?
|
36
|
-
command_parameters <<
|
37
|
-
command_parameters <<
|
37
|
+
command_parameters << build_parameter_list("assemblies", @cover_assemblies) unless @cover_assemblies.empty?
|
38
|
+
command_parameters << build_parameter_list("exclude-assemblies", @exclude_assemblies) unless @exclude_assemblies.empty?
|
39
|
+
command_parameters << build_parameter_list("exclude-attributes", @exclude_attributes) unless @exclude_attributes.empty?
|
38
40
|
command_parameters << build_coverage_list(@coverage) unless @coverage.empty?
|
39
41
|
command_parameters << @testrunner.get_command_line
|
40
42
|
|
@@ -60,9 +62,9 @@ class NCoverConsole
|
|
60
62
|
options.join(" ")
|
61
63
|
end
|
62
64
|
|
63
|
-
def
|
64
|
-
|
65
|
-
"//#{param_name} #{
|
65
|
+
def build_parameter_list(param_name, list)
|
66
|
+
list = list.map{|asm| "\"#{asm}\""}.join(';')
|
67
|
+
"//#{param_name} #{list}"
|
66
68
|
end
|
67
69
|
|
68
70
|
def build_coverage_list(coverage)
|
@@ -3,7 +3,11 @@ module AttrMethods
|
|
3
3
|
def attr_array(*names)
|
4
4
|
names.each do |n|
|
5
5
|
self.send :define_method, n do |*value|
|
6
|
-
|
6
|
+
if value.nil? || value.empty?
|
7
|
+
return instance_variable_get "@#{n}"
|
8
|
+
else
|
9
|
+
instance_variable_set "@#{n}", value
|
10
|
+
end
|
7
11
|
end
|
8
12
|
self.send :define_method, "#{n}=" do |value|
|
9
13
|
instance_variable_set "@#{n}", value
|
@@ -14,7 +18,11 @@ module AttrMethods
|
|
14
18
|
def attr_hash(*names)
|
15
19
|
names.each do |n|
|
16
20
|
self.send :define_method, n do |value|
|
17
|
-
|
21
|
+
if value.nil? || value.empty?
|
22
|
+
instance_variable_get "@#{n}"
|
23
|
+
else
|
24
|
+
instance_variable_set "@#{n}", value
|
25
|
+
end
|
18
26
|
end
|
19
27
|
self.send :define_method, "#{n}=" do |value|
|
20
28
|
instance_variable_set "@#{n}", value
|
@@ -14,14 +14,14 @@ module RunCommand
|
|
14
14
|
super()
|
15
15
|
end
|
16
16
|
|
17
|
-
def run_command(command_name="Command Line", command_parameters=
|
17
|
+
def run_command(command_name="Command Line", command_parameters=nil)
|
18
18
|
if @require_valid_command
|
19
19
|
return false unless valid_command_exists
|
20
20
|
end
|
21
21
|
|
22
|
-
|
22
|
+
@parameters = @parameters.push(command_parameters) unless command_parameters.nil?
|
23
23
|
|
24
|
-
command = "\"#{@path_to_command}\" #{
|
24
|
+
command = "\"#{@path_to_command}\" #{@parameters.join(' ')}"
|
25
25
|
@logger.debug "Executing #{command_name}: #{command}"
|
26
26
|
|
27
27
|
set_working_directory
|
@@ -0,0 +1,100 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'support', 'spec_helper')
|
2
|
+
require 'albacore/support/attrmethods'
|
3
|
+
|
4
|
+
describe "when setting an array attribute value without the equal sign" do
|
5
|
+
before :each do
|
6
|
+
class Test_Class
|
7
|
+
extend AttrMethods
|
8
|
+
attr_array :test
|
9
|
+
end
|
10
|
+
|
11
|
+
@test = Test_Class.new
|
12
|
+
@test.test 1, 2, 3, 4
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should set the array to the specified values" do
|
16
|
+
@test.test.length.should be(4)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
describe "when setting an array attribute with a params list, using the equal sign" do
|
21
|
+
before :each do
|
22
|
+
class Test_Class
|
23
|
+
extend AttrMethods
|
24
|
+
attr_array :test
|
25
|
+
end
|
26
|
+
|
27
|
+
@test = Test_Class.new
|
28
|
+
@test.test = 1, 2, 3, 4
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should set the array to the specified values" do
|
32
|
+
@test.test.length.should be(4)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe "when setting an array attribute to an array variable using the equal sign" do
|
37
|
+
before :each do
|
38
|
+
class TestClass
|
39
|
+
extend AttrMethods
|
40
|
+
attr_array :test
|
41
|
+
end
|
42
|
+
|
43
|
+
test_values = [1, 2, 3, 4, 5]
|
44
|
+
@test = TestClass.new
|
45
|
+
@test.test = test_values
|
46
|
+
end
|
47
|
+
|
48
|
+
it "should set the array to the values contained in the variable" do
|
49
|
+
@test.test.length.should be(5)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe "when setting a hash attribute value without the equal sign" do
|
54
|
+
before :each do
|
55
|
+
class Test_Class
|
56
|
+
extend AttrMethods
|
57
|
+
attr_hash :test
|
58
|
+
end
|
59
|
+
|
60
|
+
@test = Test_Class.new
|
61
|
+
@test.test "a" => "b", "c" => "d"
|
62
|
+
end
|
63
|
+
|
64
|
+
it "should set the hash to the specified values" do
|
65
|
+
@test.test.length.should be(2)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
describe "when setting a hash attribute with a params list, using the equal sign" do
|
70
|
+
before :each do
|
71
|
+
class Test_Class
|
72
|
+
extend AttrMethods
|
73
|
+
attr_hash :test
|
74
|
+
end
|
75
|
+
|
76
|
+
@test = Test_Class.new
|
77
|
+
@test.test = {"a" => "b", "c" => "d"}
|
78
|
+
end
|
79
|
+
|
80
|
+
it "should set the hash to the specified values" do
|
81
|
+
@test.test.length.should be(2)
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
describe "when setting a hash attribute to an array variable using the equal sign" do
|
86
|
+
before :each do
|
87
|
+
class TestClass
|
88
|
+
extend AttrMethods
|
89
|
+
attr_hash :test
|
90
|
+
end
|
91
|
+
|
92
|
+
test_values = {"a" => "b", "c" => "d", "e" => "f"}
|
93
|
+
@test = TestClass.new
|
94
|
+
@test.test = test_values
|
95
|
+
end
|
96
|
+
|
97
|
+
it "should set the hash to the values contained in the variable" do
|
98
|
+
@test.test.length.should be(3)
|
99
|
+
end
|
100
|
+
end
|
data/spec/createtask_spec.rb
CHANGED
@@ -67,4 +67,56 @@ describe "when task args are used" do
|
|
67
67
|
it "should provide the task args" do
|
68
68
|
@args.arg1.should == "test"
|
69
69
|
end
|
70
|
-
end
|
70
|
+
end
|
71
|
+
|
72
|
+
describe "when calling a task method without providing a task name" do
|
73
|
+
before :all do
|
74
|
+
create_task :task_without_name, SampleObject.new
|
75
|
+
|
76
|
+
task_without_name do |t|
|
77
|
+
@task_without_name_called = true
|
78
|
+
end
|
79
|
+
|
80
|
+
Rake::Task[:task_without_name].invoke
|
81
|
+
end
|
82
|
+
|
83
|
+
it "should create the the task by the task method's name" do
|
84
|
+
@task_without_name_called = true
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe "when calling a task method without providing a task parameter" do
|
89
|
+
before :all do
|
90
|
+
create_task :task_without_param, SampleObject.new
|
91
|
+
|
92
|
+
task_without_param do
|
93
|
+
@task_without_param_called = true
|
94
|
+
end
|
95
|
+
|
96
|
+
Rake::Task[:task_without_param].invoke
|
97
|
+
end
|
98
|
+
|
99
|
+
it "should execute the task with no parameter provided" do
|
100
|
+
@task_without_param_called = true
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
describe "when calling a task without a task definition block" do
|
105
|
+
|
106
|
+
before :all do
|
107
|
+
create_task :task_without_body, SampleObject.new
|
108
|
+
|
109
|
+
task_without_body
|
110
|
+
|
111
|
+
begin
|
112
|
+
Rake::Task[:task_without_body].invoke
|
113
|
+
@failed = false
|
114
|
+
rescue
|
115
|
+
@failed = true
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
it "should execute the task" do
|
120
|
+
@failed.should be_false
|
121
|
+
end
|
122
|
+
end
|
data/spec/exec_spec.rb
CHANGED
@@ -18,7 +18,13 @@ describe Exec, "when executing a command with parameters" do
|
|
18
18
|
@cmd.system_command.should include("\"#{@@nunit}\" --help")
|
19
19
|
end
|
20
20
|
|
21
|
+
it "should specify the parameters only once" do
|
22
|
+
@cmd.system_command.scan(/--help/).length.should be(1)
|
23
|
+
end
|
24
|
+
|
21
25
|
it "should not fail" do
|
22
26
|
$task_failed.should be_false
|
23
27
|
end
|
24
28
|
end
|
29
|
+
|
30
|
+
|
data/spec/msbuild_spec.rb
CHANGED
data/spec/ncoverconsole_spec.rb
CHANGED
@@ -71,7 +71,7 @@ describe NCoverConsole, "when specifying assemblies to ignore" do
|
|
71
71
|
@ncc.path_to_command = @testdata.ncoverpath
|
72
72
|
@ncc.output :xml => @testdata.xml_coverage_output
|
73
73
|
@ncc.working_directory = @testdata.working_directory
|
74
|
-
@ncc.
|
74
|
+
@ncc.exclude_assemblies "TestSolution.*"
|
75
75
|
|
76
76
|
nunit = NUnitTestRunner.new(@testdata.nunitpath)
|
77
77
|
nunit.assemblies @testdata.test_assembly
|
@@ -86,6 +86,33 @@ describe NCoverConsole, "when specifying assemblies to ignore" do
|
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
89
|
+
describe NCoverConsole, "when specifying attributes to exclude" do
|
90
|
+
before :all do
|
91
|
+
@testdata = NCoverConsoleTestData.new
|
92
|
+
File.delete(@testdata.xml_coverage_output) if File.exist?(@testdata.xml_coverage_output)
|
93
|
+
|
94
|
+
@ncc = NCoverConsole.new()
|
95
|
+
|
96
|
+
@ncc.extend(SystemPatch)
|
97
|
+
@ncc.log_level = :verbose
|
98
|
+
@ncc.path_to_command = @testdata.ncoverpath
|
99
|
+
@ncc.output :xml => @testdata.xml_coverage_output
|
100
|
+
@ncc.working_directory = @testdata.working_directory
|
101
|
+
@ncc.exclude_attributes "excludeme", "excludeme_too"
|
102
|
+
|
103
|
+
nunit = NUnitTestRunner.new(@testdata.nunitpath)
|
104
|
+
nunit.assemblies @testdata.test_assembly
|
105
|
+
nunit.options '/noshadow'
|
106
|
+
|
107
|
+
@ncc.testrunner = nunit
|
108
|
+
@ncc.run
|
109
|
+
end
|
110
|
+
|
111
|
+
it "should not provide coverage for the excluded attributes" do
|
112
|
+
@ncc.system_command.should include("//exclude-attributes \"excludeme\";\"excludeme_too\"")
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
89
116
|
describe NCoverConsole, "when running with the defaults" do
|
90
117
|
before :all do
|
91
118
|
@testdata = NCoverConsoleTestData.new
|
data/spec/support/spec_helper.rb
CHANGED
@@ -5,6 +5,8 @@ $: << File.join(@root_dir, "spec")
|
|
5
5
|
$: << File.join(@root_dir, "spec/patches")
|
6
6
|
$: << File.join(@root_dir, "spec/support")
|
7
7
|
|
8
|
+
require 'rubygems'
|
9
|
+
require 'spec'
|
8
10
|
require 'rake/tasklib'
|
9
11
|
require 'lib/rake/support/albacoretask.rb'
|
10
12
|
require 'lib/rake/support/createtask.rb'
|
metadata
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: albacore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 3
|
9
|
+
version: 0.1.3
|
5
10
|
platform: ruby
|
6
11
|
authors:
|
7
12
|
- Derick Bailey
|
@@ -10,89 +15,121 @@ autorequire:
|
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
17
|
|
13
|
-
date: 2010-
|
18
|
+
date: 2010-04-29 00:00:00 -05:00
|
14
19
|
default_executable:
|
15
20
|
dependencies:
|
16
21
|
- !ruby/object:Gem::Dependency
|
17
22
|
name: rake
|
18
|
-
|
19
|
-
|
20
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
21
25
|
requirements:
|
22
26
|
- - ">="
|
23
27
|
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 0
|
30
|
+
- 8
|
31
|
+
- 7
|
24
32
|
version: 0.8.7
|
25
|
-
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
26
35
|
- !ruby/object:Gem::Dependency
|
27
36
|
name: net-ssh
|
28
|
-
|
29
|
-
|
30
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
prerelease: false
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
31
39
|
requirements:
|
32
40
|
- - ">="
|
33
41
|
- !ruby/object:Gem::Version
|
42
|
+
segments:
|
43
|
+
- 2
|
44
|
+
- 0
|
45
|
+
- 15
|
34
46
|
version: 2.0.15
|
35
|
-
|
47
|
+
type: :runtime
|
48
|
+
version_requirements: *id002
|
36
49
|
- !ruby/object:Gem::Dependency
|
37
50
|
name: net-sftp
|
38
|
-
|
39
|
-
|
40
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
prerelease: false
|
52
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
41
53
|
requirements:
|
42
54
|
- - ">="
|
43
55
|
- !ruby/object:Gem::Version
|
56
|
+
segments:
|
57
|
+
- 2
|
58
|
+
- 0
|
59
|
+
- 2
|
44
60
|
version: 2.0.2
|
45
|
-
|
61
|
+
type: :runtime
|
62
|
+
version_requirements: *id003
|
46
63
|
- !ruby/object:Gem::Dependency
|
47
64
|
name: rubyzip
|
48
|
-
|
49
|
-
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
prerelease: false
|
66
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
51
67
|
requirements:
|
52
68
|
- - ">="
|
53
69
|
- !ruby/object:Gem::Version
|
70
|
+
segments:
|
71
|
+
- 0
|
72
|
+
- 9
|
73
|
+
- 1
|
54
74
|
version: 0.9.1
|
55
|
-
|
75
|
+
type: :runtime
|
76
|
+
version_requirements: *id004
|
56
77
|
- !ruby/object:Gem::Dependency
|
57
78
|
name: rspec
|
58
|
-
|
59
|
-
|
60
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
prerelease: false
|
80
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
61
81
|
requirements:
|
62
82
|
- - ">="
|
63
83
|
- !ruby/object:Gem::Version
|
84
|
+
segments:
|
85
|
+
- 1
|
86
|
+
- 2
|
87
|
+
- 8
|
64
88
|
version: 1.2.8
|
65
|
-
|
89
|
+
type: :development
|
90
|
+
version_requirements: *id005
|
66
91
|
- !ruby/object:Gem::Dependency
|
67
92
|
name: jeweler
|
68
|
-
|
69
|
-
|
70
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
prerelease: false
|
94
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
71
95
|
requirements:
|
72
96
|
- - ">="
|
73
97
|
- !ruby/object:Gem::Version
|
98
|
+
segments:
|
99
|
+
- 1
|
100
|
+
- 2
|
101
|
+
- 1
|
74
102
|
version: 1.2.1
|
75
|
-
|
103
|
+
type: :development
|
104
|
+
version_requirements: *id006
|
76
105
|
- !ruby/object:Gem::Dependency
|
77
106
|
name: derickbailey-notamock
|
78
|
-
|
79
|
-
|
80
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
prerelease: false
|
108
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
81
109
|
requirements:
|
82
110
|
- - ">="
|
83
111
|
- !ruby/object:Gem::Version
|
112
|
+
segments:
|
113
|
+
- 0
|
114
|
+
- 0
|
115
|
+
- 1
|
84
116
|
version: 0.0.1
|
85
|
-
|
117
|
+
type: :development
|
118
|
+
version_requirements: *id007
|
86
119
|
- !ruby/object:Gem::Dependency
|
87
120
|
name: jekyll
|
88
|
-
|
89
|
-
|
90
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
prerelease: false
|
122
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
91
123
|
requirements:
|
92
124
|
- - ">="
|
93
125
|
- !ruby/object:Gem::Version
|
126
|
+
segments:
|
127
|
+
- 0
|
128
|
+
- 5
|
129
|
+
- 4
|
94
130
|
version: 0.5.4
|
95
|
-
|
131
|
+
type: :development
|
132
|
+
version_requirements: *id008
|
96
133
|
description: Easily build your .NET solutions with Ruby and Rake, using this suite of Rake tasks.
|
97
134
|
email: derickbailey@gmail.com
|
98
135
|
executables: []
|
@@ -174,6 +211,7 @@ files:
|
|
174
211
|
- rakefile.rb
|
175
212
|
- spec/assemblyinfo_spec.rb
|
176
213
|
- spec/assemblyinfotask_spec.rb
|
214
|
+
- spec/attrmethods_spec.rb
|
177
215
|
- spec/createtask_spec.rb
|
178
216
|
- spec/docu_spec.rb
|
179
217
|
- spec/docutask_spec.rb
|
@@ -286,24 +324,27 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
286
324
|
requirements:
|
287
325
|
- - ">="
|
288
326
|
- !ruby/object:Gem::Version
|
327
|
+
segments:
|
328
|
+
- 0
|
289
329
|
version: "0"
|
290
|
-
version:
|
291
330
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
292
331
|
requirements:
|
293
332
|
- - ">="
|
294
333
|
- !ruby/object:Gem::Version
|
334
|
+
segments:
|
335
|
+
- 0
|
295
336
|
version: "0"
|
296
|
-
version:
|
297
337
|
requirements: []
|
298
338
|
|
299
339
|
rubyforge_project:
|
300
|
-
rubygems_version: 1.3.
|
340
|
+
rubygems_version: 1.3.6
|
301
341
|
signing_key:
|
302
342
|
specification_version: 3
|
303
343
|
summary: Dolphin-Safe Rake Tasks For .NET Systems
|
304
344
|
test_files:
|
305
345
|
- spec/assemblyinfotask_spec.rb
|
306
346
|
- spec/assemblyinfo_spec.rb
|
347
|
+
- spec/attrmethods_spec.rb
|
307
348
|
- spec/createtask_spec.rb
|
308
349
|
- spec/docutask_spec.rb
|
309
350
|
- spec/docu_spec.rb
|