rake-dotnet 0.0.12 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.markdown +5 -5
  2. data/Rakefile +1 -1
  3. metadata +2 -2
data/README.markdown CHANGED
@@ -1,6 +1,6 @@
1
1
  # rake-dotnet
2
2
 
3
- [Rake on my blog](http://blog.neverrunwithscissors.com/tag/rake)
3
+ [Rake on my blog](http://blog.neverrunwithscissors.com/tag/rake), [Rake-dotnet on my blog](http://blog.neverrunwithscissors.com/tag/rake-dotnet)
4
4
 
5
5
  ## DESCRIPTION:
6
6
 
@@ -8,7 +8,7 @@ rake-dotnet is a library of custom tasks designed to (try to!) make your life as
8
8
 
9
9
  When have you ever heard of a build-script called anything other than a script? msbuild and nant both try to get you to call them projects. I'll say it up front - the idea of using XML to declaratively define the sequence of hoops one gets the computer to jump through to turn source into packaged software never sat right with me. I looked for something better one day, and found rake. I haven't touched msbuild or nant since, and I've been happier ;-)
10
10
 
11
- rake-dotnet is a bunch of things that aim at doing the work of creating a featureful build-script, so you don't have to. RDN likes convention-over-configuration. RDN tries to keep the Rakefile (the part YOU have to get involved with) short, because that means you can get on with the business of making software that YOU care about. RDN is designed to try to waste as little of your time as possible (and I'd like to know whether I succeeded, or failed, please ;-) ).
11
+ Rake-dotnet is a bunch of things that aim at doing the work of creating a featureful build-script, so you don't have to. RDN likes convention-over-configuration. RDN tries to keep the Rakefile (the part YOU have to get involved with) short, because that means you can get on with the business of making software that YOU care about. RDN is designed to try to waste as little of your time as possible (and I'd like to know whether I succeeded, or failed, please ;-) ).
12
12
 
13
13
  ## Features
14
14
 
@@ -29,7 +29,7 @@ rake-dotnet is a bunch of things that aim at doing the work of creating a featur
29
29
 
30
30
  * Relies on a whole bunch of third-party tools and libraries which are too big to distribute within the gem or host myself. So users need to fetch these before they can get up and running. So think of a way to make this more frictionless...
31
31
  * InstallPad?
32
- * Currently, the directories for each tool are created within [{github}/DemoRoot/3rdparty](http://github.com/petemounce/rake-dotnet/tree/master/DemoRoot/3rdparty) and there is a readme.txt next-door with URLs to fetch from.
32
+ * Currently, the directories for each tool are created within [{github}/DemoRoot/3rdparty](http://github.com/petemounce/rake-dotnet/tree/master) and there is a readme.txt next-door with URLs to fetch from.
33
33
 
34
34
  ## Conventions:
35
35
 
@@ -64,7 +64,7 @@ So our source structure looks like:
64
64
  {files}
65
65
  /OtherProduct.sln
66
66
 
67
- Example: [{github}/DemoRoot](http://github.com/petemounce/rake-dotnet/tree/master/DemoRoot)
67
+ Example: [{github}/DemoRoot](http://github.com/petemounce/rake-dotnet/tree/master)
68
68
 
69
69
  ## Roadmap:
70
70
 
@@ -78,7 +78,7 @@ Example: [{github}/DemoRoot](http://github.com/petemounce/rake-dotnet/tree/maste
78
78
  * unit-tests!!
79
79
  * Support clone-detective...?
80
80
  * unit-tests!!!
81
- * Support other source-controls to get build version number - git, mercurial, cvs(?), TFS. Or just read it from an environment variable that assumes we're within a CI build.
81
+ * Support other source-controls to get build version number - mercurial, cvs(?), TFS. Or just read it from an environment variable that assumes we're within a CI build.
82
82
  * unit-tests!!!!
83
83
  * Support changing the conventions to allow users to specify their own source structure
84
84
  * unit-tests
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ require 'hoe'
5
5
  require 'Pathname'
6
6
  require 'rake/clean'
7
7
 
8
- Hoe.new('rake-dotnet', '0.0.12') do |p|
8
+ Hoe.new('rake-dotnet', '0.1.0') do |p|
9
9
  p.author = 'Peter Mounce'
10
10
  p.description = 'Making a .NET build-automation dev\'s life easier, one angle-bracket at a time'
11
11
  p.email = 'pete@neverrunwithscissors.com'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake-dotnet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.12
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter MouncePeter Mounce
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-05-01 00:00:00 +01:00
12
+ date: 2009-05-08 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency