forkcms_deploy 4.1.0 → 4.2.0

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
  SHA1:
3
- metadata.gz: 64dd86f192a91ff02b0fbc338bf3d2809a950bdd
4
- data.tar.gz: d06b9122114ec4d428eebe021d7891a5b937e284
3
+ metadata.gz: d87d8d3fc92cf0c8a0a4e6fa5b1b2b31b998a0d0
4
+ data.tar.gz: 9b797dc4042bba52d27591c3d58149453d88f03b
5
5
  SHA512:
6
- metadata.gz: ad8085847fa6be799bf71bb02941677c99b592030f8c35c77c4588bd8dbbca53d707b2f0d7aa099b3aee36e1faf8d3af11b2653a0148ac4c66c03dec23e6dd5d
7
- data.tar.gz: d03fd18835cc7d5c31f9e0e1b5fd1dd0bb262e7eaf269a7fdc8047250d0a0fd5c6e060c66fd119473150040451a03d3f328f8759d95ebabdf018ab337c5c7cff
6
+ metadata.gz: 64a26d63f5e2b51672f89335ba218b4c95bfe99c6ce60c6a3b71edb654371dbe7dccb325b75570ff77269e1d0804c99a805bff109293a840b03048f01f04b168
7
+ data.tar.gz: 33aa0299bfaf7e99ab94779d648892d54cc9331525d15e30a9079ed456a617e241ad014e5155afdbd020aacfffc8c5d2759bb4737e109113b88e4dc1a311b475
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.1.0
1
+ 4.2.0
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: forkcms_deploy 4.1.0 ruby lib
5
+ # stub: forkcms_deploy 4.2.0 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "forkcms_deploy"
9
- s.version = "4.1.0"
9
+ s.version = "4.2.0"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["Tijs Verkoyen", "Jan De Poorter", "Sam Tubbax", "Wouter Sioen"]
14
- s.date = "2016-08-25"
14
+ s.date = "2016-08-26"
15
15
  s.description = "Deployment for ForkCMS with Capistrano"
16
16
  s.email = "info@sumocoders.be"
17
17
  s.extra_rdoc_files = [
@@ -253,7 +253,9 @@ configuration.load do
253
253
  desc "Clears the opcode cache"
254
254
  task :clear do
255
255
  run "touch #{document_root}/php-opcache-reset.php"
256
- run "echo '<?php opcache_reset();' > #{document_root}/php-opcache-reset.php"
256
+ # clearstatcache(true) will clear the file stats cache and the realpath cache
257
+ # opache_reset will clear the opcache if this is available
258
+ run "echo \"<?php clearstatcache(true); if (function_exists('opache_reset')) { opcache_reset(); }\" > #{document_root}/php-opcache-reset.php"
257
259
  run %{ curl #{url}/php-opcache-reset.php }
258
260
  run "rm #{document_root}/php-opcache-reset.php"
259
261
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forkcms_deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.0
4
+ version: 4.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tijs Verkoyen
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2016-08-25 00:00:00.000000000 Z
14
+ date: 2016-08-26 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: capistrano