capistrano-rails 1.6.3 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/capistrano-rails.gemspec +1 -1
- data/lib/capistrano/tasks/assets.rake +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88249a7760356e03f576fb7b75d5f2b1d432ad7581abd3bbf6eaad879dda4514
|
4
|
+
data.tar.gz: 0051d965f93808796d9e6930ec93ebe83cfe7a2c3d5fb80c5294acc25ed66dcf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
|
data/capistrano-rails.gemspec
CHANGED
@@ -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.
|
7
|
+
gem.version = '1.7.0'
|
8
8
|
gem.authors = ["Tom Clements", "Lee Hambley", "Kir Shatrov"]
|
9
9
|
gem.email = ["seenmyfate@gmail.com", "lee.hambley@gmail.com", "shatrov@me.com"]
|
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.
|
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:
|
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.
|
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: []
|