albacore 2.0.0.rc.19 → 2.0.0.rc.20

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2dd6c3c5bcb5a1347b929ea6c71b772f47420c64
4
- data.tar.gz: e1186cdedddd11f7356ee98b6705c26c507f3149
3
+ metadata.gz: 2ab62cb5122970f416017ee8d59b6b8734a25185
4
+ data.tar.gz: cef3457b0ca2e9078330eb175c43d7ae050871a9
5
5
  SHA512:
6
- metadata.gz: 90bf3a0884528bee5deba2cb0156d07c71f46570c67e3cb9ee4facd0a5a61633cb4b8e308faa49fa3ff70559725cb2ed29cbf560a3730ffd3a542d53dfa5ffa1
7
- data.tar.gz: 49154665a384a529ab5cde6f68fe41330cef777d0874c15ea7ebaf8cf6e62b4ebda2db918718f10148319e05d4311bc91e9653bd5f7ad5bd49cb5137b8ad7b27
6
+ metadata.gz: a05a96f5d60891dadf48527f911873f88fdef424a57af114987b21c138b66801226c7d96bcd453fbb95e545f5b17c8bf27921ea5b427d6b56f8abeeaa20a8f68
7
+ data.tar.gz: bcd210ec2e9343324eb148facaf0797b97a78691780283a45b7ab15bc01595279032a3a998dcb33287a49713786b23272b5c2837cdb19c5ee34520fb86da4ca3
data/README.md CHANGED
@@ -1,9 +1,7 @@
1
- # Albacore
1
+ # Albacore v2.0
2
2
 
3
3
  [![Build Status](https://secure.travis-ci.org/Albacore/albacore.png?branch=master)](http://travis-ci.org/Albacore/albacore)
4
4
 
5
- Version 2.0 of Albacore.
6
-
7
5
  It is currently being used for
8
6
  numerous builds for us and is free of known bugs. It works on RMI 1.9.3 and RMI
9
7
  2.0.
@@ -319,7 +317,7 @@ This task-type works by checking if it's running on Windows, and then running
319
317
  chocolatey, otherwise running fpm. This means that you have to have either
320
318
  installed, depending on your OS of choice.
321
319
 
322
- ### Known .appspec options
320
+ #### Known .appspec options
323
321
 
324
322
  **project_path** - if you are, say, building a package from a web site (like
325
323
  CSharpWeb is an example of), then you probably don't want to package all of your
@@ -470,6 +468,13 @@ z = Zippy.new(directory_to_zip, output_file) { |f| f.include? 'html' }
470
468
  z.write
471
469
  ```
472
470
 
471
+ ## Albacore v1.0
472
+
473
+ Please browse
474
+ [https://github.com/Albacore/albacore/tree/releases/v1.x](https://github.com/Albacore/albacore/tree/releases/v1.x)
475
+ for all of the README and code for v1.0 (which is API compatible with all pre
476
+ 1.0 releases).
477
+
473
478
  ## Ideas:
474
479
 
475
480
  When building multiple configurations,
@@ -1,3 +1,3 @@
1
1
  module Albacore
2
- VERSION = "2.0.0.rc.19"
2
+ VERSION = "2.0.0.rc.20"
3
3
  end
@@ -1,4 +1,4 @@
1
- Import-Module WebAdministration
1
+ Import-Module WebAdministration
2
2
 
3
3
  Function Install-Site(
4
4
  # Folder where all your websites are located
@@ -9,7 +9,7 @@ Function Install-Site(
9
9
 
10
10
  # Where the source files are -- without any trailing slash or otherwise --
11
11
  # just the name, please.
12
- [string] $SourceDirectory = "source",
12
+ [string] $SourceDirectory = "contents",
13
13
 
14
14
  # Name of site that you're setting up
15
15
  [string] $SiteName
@@ -36,7 +36,7 @@ Function Install-Site(
36
36
  new-item $siteInstallLocation -ItemType directory -Force
37
37
 
38
38
  # Copy site files to site folder
39
- Copy-Item $SourceDirectory -Recurse $siteInstallLocation -Force
39
+ Copy-Item "$SourceDirectory\*" -Recurse $siteInstallLocation -Force
40
40
 
41
41
  # Create application pool
42
42
  New-WebAppPool -Name $siteAppPool -Force
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: albacore
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.rc.19
4
+ version: 2.0.0.rc.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henrik Feldt
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-07-31 00:00:00.000000000 Z
12
+ date: 2014-08-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake