asset_sync 2.14.0 → 2.14.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
  SHA256:
3
- metadata.gz: fb865a74b05c9a16ce39367906e4b4e98e95aa1ee6513cce217c84bea8a832b6
4
- data.tar.gz: 4684411bd7bddcf9daf4e6e9c1ba0b92fbf85cf67f2c9a42825b3c910e151c49
3
+ metadata.gz: 616850e397a96615618ec0b6e09034ac842da21dadab6c376b7c7f0b1560271b
4
+ data.tar.gz: 2de62ca7e856aa6498be415f2c00686f21eeab7965b11254d2c453ba2dc8dcd7
5
5
  SHA512:
6
- metadata.gz: f02951393035ba6db862849187d74f41d49529206d6d8a13b84ccca91b7d7c533fee6f0ea2440ea4b4e35ed72967d2d7489cfb6118c9fb8895e201964f146f64
7
- data.tar.gz: 51e1bd03d2acd5a528fa5960ff5986c29303bb8ec03ce643cb57bce30958fc5d1fab981de815459fc9b16eab176a1717ad1873a9b4f08a7659b94f5ed8b7bd5d
6
+ metadata.gz: 320b3021cadc781f8a82e8f5c1e3fab4d1cd9f1fa2d1e6fb4bdabf093fa4fbc899d969dc3e69173cabf6e92d0e5fb68eac2be36cd19036f2301558951ecdd02c
7
+ data.tar.gz: 482a3cb6cf864c3cfe9c5ecd0c56b153db295153093347612ea1f3c5b1004607a32bb74b3e18397f2ebad0ac31fce7909e91057252f08d3e5bff9d14f14c9bd5
@@ -6,16 +6,20 @@ on:
6
6
  - master
7
7
  paths-ignore:
8
8
  - 'README.md'
9
+ - 'CHANGELOG.md'
9
10
  push:
10
11
  branches:
11
12
  - master
12
13
  paths-ignore:
13
14
  - 'README.md'
15
+ - 'CHANGELOG.md'
14
16
 
15
17
  jobs:
16
18
  unit_tests:
17
19
  name: Unit Tests
18
- if: "contains(github.event.commits[0].message, '[ci skip]') == false"
20
+ # Homemade support for [ci skip] no longer needed
21
+ # https://github.blog/changelog/2021-02-08-github-actions-skip-pull-request-and-push-workflows-with-skip-ci/
22
+ # if: "contains(github.event.commits[0].message, '[ci skip]') == false"
19
23
  strategy:
20
24
  fail-fast: false
21
25
  matrix:
data/CHANGELOG.md CHANGED
@@ -18,7 +18,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
18
18
  - Nothing
19
19
 
20
20
 
21
- ## [2.14.0] - 2020-03-31
21
+ =======
22
+ ## [2.14.1]
23
+
24
+ ### Added
25
+
26
+ - Add support for setting option `log_silently` in YML (not new option)
27
+ (https://github.com/AssetSync/asset_sync/pull/417)
28
+
29
+
30
+ ## [2.14.0] - 2021-03-31
22
31
 
23
32
  ### Added
24
33
 
@@ -1002,7 +1011,8 @@ Changes:
1002
1011
  * Merge branch 'sinatra'
1003
1012
 
1004
1013
 
1005
- [Unreleased]: https://github.com/AssetSync/asset_sync/compare/v2.14.0...HEAD
1014
+ [Unreleased]: https://github.com/AssetSync/asset_sync/compare/v2.14.1...HEAD
1015
+ [2.14.1]: https://github.com/AssetSync/asset_sync/compare/v2.14.0...v2.14.1
1006
1016
  [2.14.0]: https://github.com/AssetSync/asset_sync/compare/v2.13.1...v2.14.0
1007
1017
  [2.13.1]: https://github.com/AssetSync/asset_sync/compare/v2.13.0...v2.13.1
1008
1018
  [2.13.0]: https://github.com/AssetSync/asset_sync/compare/v2.12.1...v2.13.0
data/asset_sync.gemspec CHANGED
@@ -33,6 +33,8 @@ Gem::Specification.new do |s|
33
33
  s.add_development_dependency "uglifier"
34
34
  s.add_development_dependency "appraisal"
35
35
 
36
+ s.add_development_dependency "gem-release"
37
+
36
38
  s.files = `git ls-files`.split("\n")
37
39
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
38
40
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
@@ -232,9 +232,10 @@ module AssetSync
232
232
  self.gzip_compression = yml["gzip_compression"] if yml.has_key?("gzip_compression")
233
233
  self.manifest = yml["manifest"] if yml.has_key?("manifest")
234
234
  self.fail_silently = yml["fail_silently"] if yml.has_key?("fail_silently")
235
+ self.log_silently = yml["log_silently"] if yml.has_key?("log_silently")
235
236
  self.always_upload = yml["always_upload"] if yml.has_key?("always_upload")
236
237
  self.ignored_files = yml["ignored_files"] if yml.has_key?("ignored_files")
237
- self.custom_headers = yml["custom_headers"] if yml.has_key?("custom_headers")
238
+ self.custom_headers = yml["custom_headers"] if yml.has_key?("custom_headers")
238
239
  self.run_on_precompile = yml["run_on_precompile"] if yml.has_key?("run_on_precompile")
239
240
  self.invalidate = yml["invalidate"] if yml.has_key?("invalidate")
240
241
  self.cdn_distribution_id = yml['cdn_distribution_id'] if yml.has_key?("cdn_distribution_id")
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AssetSync
4
- VERSION = "2.14.0"
4
+ VERSION = "2.14.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asset_sync
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.14.0
4
+ version: 2.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Hamilton
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2021-03-31 00:00:00.000000000 Z
14
+ date: 2021-05-14 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: fog-core
@@ -195,6 +195,20 @@ dependencies:
195
195
  - - ">="
196
196
  - !ruby/object:Gem::Version
197
197
  version: '0'
198
+ - !ruby/object:Gem::Dependency
199
+ name: gem-release
200
+ requirement: !ruby/object:Gem::Requirement
201
+ requirements:
202
+ - - ">="
203
+ - !ruby/object:Gem::Version
204
+ version: '0'
205
+ type: :development
206
+ prerelease: false
207
+ version_requirements: !ruby/object:Gem::Requirement
208
+ requirements:
209
+ - - ">="
210
+ - !ruby/object:Gem::Version
211
+ version: '0'
198
212
  description: After you run assets:precompile your compiled assets will be synchronised
199
213
  with your S3 bucket.
200
214
  email:
@@ -273,7 +287,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
273
287
  - !ruby/object:Gem::Version
274
288
  version: '0'
275
289
  requirements: []
276
- rubygems_version: 3.2.15
290
+ rubygems_version: 3.2.17
277
291
  signing_key:
278
292
  specification_version: 4
279
293
  summary: Synchronises Assets in a Rails 3 application and Amazon S3/Cloudfront and