s3_website 1.8.1 → 1.8.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0f2558d64c0387b37e6436eadbfe960a0cfa4cdd
4
- data.tar.gz: f074176ea38641121ec52d0b7568fe5ec4d2c6f2
3
+ metadata.gz: 42a545379161c7267e94d88d44653f3f80d07b50
4
+ data.tar.gz: 5e426809c3fca74b91ebac4ff31bb2ea32cbb516
5
5
  SHA512:
6
- metadata.gz: 9a15b0fdc7414416fa2de2b54d0d898de4e38d666674dd8743e0d3b47229f5d96836448490fa1ad200c54ddc0a4303acb0b7aaa9b81442098a3015836b9c7d9c
7
- data.tar.gz: fff2361a6d43a61c208fd05f841d1381ad8fe6435d11834dc89aca4daec83116178feae1a1746eb4a6e6d756392913b8dbda46d24d4fbfed0d779ddf2c882170
6
+ metadata.gz: 877b0650078a1b3b50a54f51e7a7c83accc5639f362780b4942187f491221e623a5954783429cb4f691c365ca51167f121a9a00416719332a8c401bf5e919608
7
+ data.tar.gz: 6a4a3508b51befc22468b1cb05f4eef7f58ec4f7d31137ffe953c0d41fa6edb15d03bd102963a7556cc024d18807fc7a13c064443a756f333d66396f0697acea
data/README.md CHANGED
@@ -15,7 +15,7 @@
15
15
 
16
16
  ## Install
17
17
 
18
- gem install s3_website
18
+ gem install s3_website -v '~> 1'
19
19
 
20
20
  `s3_website` requires Ruby. Here is documentation on installing Ruby:
21
21
  <http://www.ruby-lang.org/en/downloads/>.
data/changelog.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This project uses [Semantic Versioning](http://semver.org).
4
4
 
5
+ ## 1.8.2
6
+
7
+ * do not match files like denver.html with a bad regex
8
+
5
9
  ## 1.8.1
6
10
 
7
11
  * Do not push the *.env* file
@@ -5,7 +5,7 @@ require 'zopfli'
5
5
  module S3Website
6
6
  class Upload
7
7
  attr_reader :config, :file, :path, :full_path, :s3
8
- BLACKLISTED_FILES = ['s3_website.yml', '.env']
8
+ BLACKLISTED_FILES = %r{/?s3_website.yml$}, %r{/?\.env$}
9
9
 
10
10
  def initialize(path, s3, config, site_dir)
11
11
  raise "May not upload #{path}, because it's blacklisted" if Upload.is_blacklisted(path, config)
data/s3_website.gemspec CHANGED
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "s3_website"
6
- s.version = "1.8.1"
6
+ s.version = "1.8.2"
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ["Lauri Lehmijoki"]
9
9
  s.email = ["lauri.lehmijoki@iki.fi"]
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: 1.8.1
4
+ version: 1.8.2
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-05-26 00:00:00.000000000 Z
11
+ date: 2015-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk