capistrano-rails 1.6.3 → 1.7.0

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
  SHA256:
3
- metadata.gz: 2568892ab09ce3c89cba741fbd7df938538f15e3d204e0597f85f6aec6edda8e
4
- data.tar.gz: 3baaff06bf1413222dcddde9da693938332f55e62fd85dfb041a4e98c1c03157
3
+ metadata.gz: 88249a7760356e03f576fb7b75d5f2b1d432ad7581abd3bbf6eaad879dda4514
4
+ data.tar.gz: 0051d965f93808796d9e6930ec93ebe83cfe7a2c3d5fb80c5294acc25ed66dcf
5
5
  SHA512:
6
- metadata.gz: 83ea588a4b877f506b559d1f82e225664201c586e0e8cccf7c90a138194746cb02900a3c460455f21f43e065598bec47b6758ee7692ea2ac5d6a70c226733b19
7
- data.tar.gz: 81da9c4505ee2a8681d62b4564941ff568f5ff8a5c72d7321a954d7c63da6a6b60af3c255c61e95319b0e912fd167b57b22fcf112143d1b289d095cf7febc396
6
+ metadata.gz: 6455b23cb5569fd2146935597edcd3a34026ab95025153cdfca86da946996601e720ec4b919b544961d6f03989c2683cb53f2a98ed882cdea57fb98b53a49b7e
7
+ data.tar.gz: ac5990e110ed164965a82db2f8d35ca76bc8d6e55423b3229b96caa9e5490697e76084a67350f18827e61f90d793cce27322fb47caf9ea955c0bca9ab0b57adb
data/README.md CHANGED
@@ -74,7 +74,7 @@ set :assets_roles, [:web, :app]
74
74
  # This should match config.assets.prefix in your rails config/application.rb
75
75
  set :assets_prefix, 'prepackaged-assets'
76
76
 
77
- # Defaults to ["/path/to/release_path/public/#{fetch(:assets_prefix)}/.sprockets-manifest*", "/path/to/release_path/public/#{fetch(:assets_prefix)}/manifest*.*"]
77
+ # Defaults to ["/path/to/release_path/public/#{fetch(:assets_prefix)}/.sprockets-manifest*", "/path/to/release_path/public/#{fetch(:assets_prefix)}/manifest*.*", "/path/to/release_path/public/#{fetch(:assets_prefix)}/.manifest.json"]
78
78
  # This should match config.assets.manifest in your rails config/application.rb
79
79
  set :assets_manifests, ['app/assets/config/manifest.js']
80
80
 
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = "capistrano-rails"
7
- gem.version = '1.6.3'
7
+ gem.version = '1.7.0'
8
8
  gem.authors = ["Tom Clements", "Lee Hambley", "Kir Shatrov"]
9
9
10
10
  gem.description = %q{Rails specific Capistrano tasks}
@@ -136,7 +136,7 @@ namespace :load do
136
136
  set :assets_roles, fetch(:assets_roles, [:web])
137
137
  set :assets_prefix, fetch(:assets_prefix, 'assets')
138
138
  set :assets_manifests, -> {
139
- %w[.sprockets-manifest* manifest*.*].map do |pattern|
139
+ %w[.sprockets-manifest* manifest*.* .manifest.json].map do |pattern|
140
140
  release_path.join("public", fetch(:assets_prefix), pattern)
141
141
  end
142
142
  }
metadata CHANGED
@@ -1,16 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.3
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Clements
8
8
  - Lee Hambley
9
9
  - Kir Shatrov
10
- autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2023-07-04 00:00:00.000000000 Z
12
+ date: 2024-12-30 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: capistrano
@@ -94,7 +93,6 @@ licenses:
94
93
  - MIT
95
94
  metadata:
96
95
  changelog_uri: https://github.com/capistrano/rails/releases
97
- post_install_message:
98
96
  rdoc_options: []
99
97
  require_paths:
100
98
  - lib
@@ -109,8 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
107
  - !ruby/object:Gem::Version
110
108
  version: '0'
111
109
  requirements: []
112
- rubygems_version: 3.4.13
113
- signing_key:
110
+ rubygems_version: 3.6.2
114
111
  specification_version: 4
115
112
  summary: Rails specific Capistrano tasks
116
113
  test_files: []
OSZAR »