s3_website 2.3.0 → 2.3.1

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: fd0667791c419c8754d9ba740fc56e9438ae927b
4
- data.tar.gz: a796f3d0a85cadaa9cc00edfae933e4baeeb1420
3
+ metadata.gz: d95afa1639efb9bbe1fc15486b146f42788a8146
4
+ data.tar.gz: 4c257d8a83e28029d63b566ff03ea9a280423698
5
5
  SHA512:
6
- metadata.gz: f40001a4bf797894f04698253abc3e56e4c581e52ac0c7947fb103d3b2cb2cbf4d8dd246160a088723fdef8ea1c4b1836cba1dcd6ad5758d79d1878683a91404
7
- data.tar.gz: 5786070315d3b805e9ebbe58aa3816aa5e31fab00f33ae31a814602c6751e6e4027331614cf083982d738b0251997a2a8f10e00b8d93068bfa28901c622964b9
6
+ metadata.gz: 80562c01d0a390e0538d65ac64686c8e01131da2b1d3a144eb5eb96459837f336652d5007889ae6783f84d8fc8aa3c6b9bfc410611a1dcfc59e4572df73cb1f6
7
+ data.tar.gz: b1ed8d37b875262f75041b57d27dbb2ad2702dc8b54724b728032857b29dda84091f9ebab2deb1846a197d7cf9df8c886176df2af9b2a4415f564a1f8a795cb2
data/README.md CHANGED
@@ -402,6 +402,7 @@ Contributors (in alphabetical order)
402
402
  * Cory Kaufman-Schofield
403
403
  * Chris Kelly
404
404
  * Chris Moos
405
+ * Christian Grobmeier
405
406
  * Christopher Petersen
406
407
  * David Michael Barr
407
408
  * David Raffensperger
@@ -413,6 +414,7 @@ Contributors (in alphabetical order)
413
414
  * László Bácsi
414
415
  * Mason Turner
415
416
  * Michael Bleigh
417
+ * maxberger
416
418
  * Philip I. Thomas
417
419
  * Philippe Creux
418
420
  * Piotr Janik
@@ -10,7 +10,7 @@ s3_secret: 2s+x92
10
10
  s3_bucket: your.domain.net
11
11
  ````
12
12
 
13
- ## Minimal with EC2 AIM roles
13
+ ## Minimal with EC2 IAM roles
14
14
 
15
15
  ````yaml
16
16
  s3_bucket: your.domain.net
data/changelog.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This project uses [Semantic Versioning](http://semver.org).
4
4
 
5
+ ## 2.3.1
6
+
7
+ * Add Windows support
8
+
5
9
  ## 2.3.0
6
10
 
7
11
  * The command `s3_website cfg apply` now supports `--headless` and
@@ -1,3 +1,3 @@
1
1
  module S3Website
2
- VERSION = '2.3.0'
2
+ VERSION = '2.3.1'
3
3
  end
data/release CHANGED
@@ -6,6 +6,7 @@ require_relative 'lib/s3_website/version'
6
6
  version = S3Website::VERSION
7
7
  unless ENV['S3_WEBSITE_RELEASE_KEY']
8
8
  puts "Set the S3_WEBSITE_RELEASE_KEY environmental variable. It should be your personal GitHub access token."
9
+ puts "Go to https://github.com/settings/applications#personal-access-tokens."
9
10
  exit 1
10
11
  end
11
12
 
@@ -1 +1 @@
1
- bb08df26c35cb2af4a7fcff756c70ec4
1
+ 15aaf120b5c2233ae3302f570baccd4a
@@ -15,7 +15,7 @@ import s3.website.model.Config.UnsafeYaml
15
15
  import scala.util.Success
16
16
 
17
17
  case class Site(rootDirectory: File, config: Config) {
18
- def resolveS3Key(file: File) = file.getAbsolutePath.replace(rootDirectory.getAbsolutePath, "").replaceFirst("^/", "")
18
+ def resolveS3Key(file: File) = file.getAbsolutePath.replace(rootDirectory.getAbsolutePath, "").replace(File.separator,"/").replaceFirst("^/", "")
19
19
 
20
20
  def resolveFile(s3File: S3File): File = resolveFile(s3File.s3Key)
21
21
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: s3_website
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lauri Lehmijoki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-08 00:00:00.000000000 Z
11
+ date: 2014-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor