s3_asset_deploy 0.1.0 → 0.1.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: 72c4c1220b3051d9189389b3b956d509506380ae4bef112212480e1da9ac75e4
4
- data.tar.gz: b9fbd6e07c1cced6e5a20d1cb72338093eec260a540a434ee3cc60012e680549
3
+ metadata.gz: 5d1f14b5addc89b2dcb33d380636458e467a74397d3733032035d33906b5e78b
4
+ data.tar.gz: 829e2b62c558ea4692fd4447cef95f8e901d309849065c321654de8fbdc959a7
5
5
  SHA512:
6
- metadata.gz: cb3a963f7a47375414e9b51b1b3f525a890924995b380d193151e9a77193a7ddec8f1f50864fc60b37c5c768586fefa76b1335d3e849918572ec4b7be3af866a
7
- data.tar.gz: d240fe42ae5578cf136f1dac4b637165603836f8cdceb7bf8d820cd6808048d78b50b4dbbe235f3e1678aedbe8f36a6b76f1310a5d64f0605622650cca2d01b1
6
+ metadata.gz: c469bd3c5b39c0547ab3d455a601a3a36bf3e27f2b100739781aa11dbdff3355948c3157d0636c750c4f654364625448dce420b96ea4bde045efc339217ebec4
7
+ data.tar.gz: dd0b2291255821f71790a0b78ded052e00ec53fb7e42f5d680fadb758ef6ecd0efa1fda534a1102a3749e65dd0e38d114eba3dd2eca9b46b819a6a4966b1d4b1
data/CHANGELOG.md CHANGED
@@ -1 +1,4 @@
1
1
  # Changelog
2
+
3
+ ## [v0.1.1](https://github.com/Loomly/s3_asset_deploy/compare/v0.1.0...v0.1.1) - 2021-03-22
4
+ - Fix bug in AssetHelper.remove_fingerprint referencing asset_path - [4f370ad](https://github.com/Loomly/s3_asset_deploy/commit/4f370ad9c0c1c274acb9b1d8585b878f47020277)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- s3_asset_deploy (0.1.0)
4
+ s3_asset_deploy (0.1.1)
5
5
  aws-sdk-s3 (~> 1.0)
6
6
  mime-types (~> 3.0)
7
7
 
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # S3AssetDeploy
2
2
 
3
3
  [![CircleCI](https://circleci.com/gh/Loomly/s3_asset_deploy.svg?style=shield)](https://circleci.com/gh/Loomly/s3_asset_deploy)
4
+ [![Gem Version](https://badge.fury.io/rb/s3_asset_deploy.svg)](https://badge.fury.io/rb/s3_asset_deploy)
4
5
 
5
6
  During rolling deploys to our web instances, this is what we use at
6
7
  [Loomly](https://www.loomly.com) to safely deploy our web assets to S3 to be served via Cloudfront.
@@ -7,7 +7,7 @@ class S3AssetDeploy::AssetHelper
7
7
 
8
8
  def self.remove_fingerprint(path)
9
9
  match_data = path.match(FINGERPRINTED_ASSET_REGEX)
10
- return asset_path unless match_data
10
+ return path unless match_data
11
11
  "#{match_data[1]}#{match_data[3]}"
12
12
  end
13
13
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module S3AssetDeploy
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Loomly"]
9
9
  spec.email = ["contact@loomly.com"]
10
10
 
11
- spec.summary = "Safely deploy web app assets to S3 during rolling or multi-step deploys."
12
- spec.homepage = "https://www.loomly.com"
11
+ spec.summary = "Deploy & manage static assets on S3 with rolling deploys & rollbacks in mind."
12
+ spec.homepage = "https://github.com/Loomly/s3_asset_deploy"
13
13
  spec.license = "MIT"
14
14
  spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
15
15
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: s3_asset_deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Loomly
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-02-27 00:00:00.000000000 Z
11
+ date: 2021-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-s3
@@ -154,11 +154,11 @@ files:
154
154
  - lib/s3_asset_deploy/removal_manifest.rb
155
155
  - lib/s3_asset_deploy/version.rb
156
156
  - s3_asset_deploy.gemspec
157
- homepage: https://www.loomly.com
157
+ homepage: https://github.com/Loomly/s3_asset_deploy
158
158
  licenses:
159
159
  - MIT
160
160
  metadata:
161
- homepage_uri: https://www.loomly.com
161
+ homepage_uri: https://github.com/Loomly/s3_asset_deploy
162
162
  source_code_uri: https://github.com/Loomly/s3_asset_deploy
163
163
  changelog_uri: https://github.com/Loomly/s3_asset_deploy/CHANGELOG.md
164
164
  post_install_message:
@@ -179,5 +179,5 @@ requirements: []
179
179
  rubygems_version: 3.0.3
180
180
  signing_key:
181
181
  specification_version: 4
182
- summary: Safely deploy web app assets to S3 during rolling or multi-step deploys.
182
+ summary: Deploy & manage static assets on S3 with rolling deploys & rollbacks in mind.
183
183
  test_files: []