capistrano 2.15.1 → 2.15.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 +4 -4
- data/CHANGELOG +5 -1
- data/lib/capistrano/recipes/deploy.rb +2 -2
- data/lib/capistrano/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03e47a951dfb7e0a72009c09238c2498cc221a6d
|
4
|
+
data.tar.gz: 46b6357c6f0208a049fe2bc9ba825cab7134c278
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 578d7bfbe16fa80099e19f5c4ea8630048e96f8c49ca4ed3fa2a06fe4398374a2ca67172b36fd399b04c4c11b3c4af134985514bc868eeb4ccc0b7f845adb1db
|
7
|
+
data.tar.gz: e39d17fb1aad9bb1fec483cf952d4de98a426f1e5e5fe44f4c812bcbffd9c18c8dd3efa9a5ca38a4fb58f6400df4d2c08525a1f754ccd3febb2d44802df56617
|
data/CHANGELOG
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
## 2.15.2 / April 24 2013
|
2
|
+
|
3
|
+
* Fixed a bug with asset_paths (String vs. Array). (@joeycarmello)
|
4
|
+
|
1
5
|
## 2.15.1 / April 23 2013
|
2
6
|
|
3
7
|
* Support for Rails 4 (and other) randomised asset manifest names. (@jimryan)
|
@@ -7,7 +11,7 @@
|
|
7
11
|
* New varaible :shared_assets_prefix to allow people to host somewhere other
|
8
12
|
than `/assets/`. Default is `assets`.
|
9
13
|
* Bring back web:enable and web:disable tasks. Sincerely apologies to all affected
|
10
|
-
removing these was one of the most glaring mistakes we've made on this
|
14
|
+
removing these was one of the most glaring mistakes we've made on this project
|
11
15
|
and I feel personally responsible.
|
12
16
|
* Makes :git_shallow_clone work with branches (@cannikin)
|
13
17
|
* Avoid removing required assets (@bosko)
|
@@ -294,8 +294,8 @@ namespace :deploy do
|
|
294
294
|
stamp = Time.now.utc.strftime("%Y%m%d%H%M.%S")
|
295
295
|
asset_paths = fetch(:public_children, %w(images stylesheets javascripts)).
|
296
296
|
map { |p| "#{latest_release}/public/#{p}" }.
|
297
|
-
map { |p| p.shellescape }
|
298
|
-
run("find #{asset_paths} -exec touch -t #{stamp} -- {} ';'; true",
|
297
|
+
map { |p| p.shellescape }
|
298
|
+
run("find #{asset_paths.join(" ")} -exec touch -t #{stamp} -- {} ';'; true",
|
299
299
|
:env => { "TZ" => "UTC" }) if asset_paths.any?
|
300
300
|
end
|
301
301
|
end
|
data/lib/capistrano/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.15.
|
4
|
+
version: 2.15.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamis Buck
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-04-
|
12
|
+
date: 2013-04-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: highline
|