capistrano_evrone_recipes 0.1.20 → 0.1.21

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
  SHA1:
3
- metadata.gz: 5dac3b88732ad4cec7431655531270581c8e6faa
4
- data.tar.gz: 03deb6801e1a6792425457f79be3c613bad62c43
3
+ metadata.gz: 5be7810088f8293447b239383797775f7ee7f2c8
4
+ data.tar.gz: b2f7ba4b02917dbd17bb846b9819e64e6a5cd9b1
5
5
  SHA512:
6
- metadata.gz: 107dd37abaed8871783c077114ad1360012a10f659a1cade116d08e20b74e9482d029aa5dbbc4e9f8840e7069286e597de5207c456dfefec19be5ab68409f0c8
7
- data.tar.gz: ea2ce2accefd2f46861188f0082718e9904d5479c340ebc12b3c210ec6a77cd2550564a13594b3b55b2e7e67013906b4bbe47e8c4991d966d98d2d604a55e14c
6
+ metadata.gz: f779677c7edf631d703a947f9a69861be03e17828b3622484627f0f52c652aa145ebc417d1e048f35b10ac09db5a575f66857fee6751c49261a0ce7bc866a151
7
+ data.tar.gz: 3254c8a790c80894fdf3d39dbaaf2ba77dc753ded9ce43a03aa4ca922ebdf1d0901ecb938b2ae6ebe41fd07f18e9759153d6ccc2d1f316d05cc23b1ea54bf96d
@@ -1,50 +1,51 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- capistrano_evrone_recipes (0.1.5)
5
- capistrano (>= 2.13.5)
6
- colored
4
+ capistrano_evrone_recipes (0.1.20)
5
+ capistrano (= 2.15.5)
6
+ foreman
7
7
  foreman_export_runitu
8
- unicorn
9
- whenever
8
+ whenever (~> 0.8.4)
10
9
 
11
10
  GEM
12
11
  remote: http://rubygems.org/
13
12
  specs:
14
- activesupport (3.2.9)
15
- i18n (~> 0.6)
16
- multi_json (~> 1.0)
17
- capistrano (2.13.5)
13
+ activesupport (4.0.0)
14
+ i18n (~> 0.6, >= 0.6.4)
15
+ minitest (~> 4.2)
16
+ multi_json (~> 1.3)
17
+ thread_safe (~> 0.1)
18
+ tzinfo (~> 0.3.37)
19
+ atomic (1.1.14)
20
+ capistrano (2.15.5)
18
21
  highline
19
22
  net-scp (>= 1.0.0)
20
23
  net-sftp (>= 2.0.0)
21
24
  net-ssh (>= 2.0.14)
22
25
  net-ssh-gateway (>= 1.1.0)
23
- chronic (0.8.0)
24
- colored (1.2)
25
- foreman (0.60.2)
26
+ chronic (0.10.2)
27
+ dotenv (0.9.0)
28
+ foreman (0.63.0)
29
+ dotenv (>= 0.7)
26
30
  thor (>= 0.13.6)
27
31
  foreman_export_runitu (0.0.2)
28
32
  foreman
29
- highline (1.6.15)
30
- i18n (0.6.1)
31
- kgio (2.7.4)
32
- multi_json (1.3.7)
33
- net-scp (1.0.4)
34
- net-ssh (>= 1.99.1)
35
- net-sftp (2.0.5)
36
- net-ssh (>= 2.0.9)
37
- net-ssh (2.6.1)
38
- net-ssh-gateway (1.1.0)
39
- net-ssh (>= 1.99.1)
40
- rack (1.4.1)
41
- raindrops (0.10.0)
42
- thor (0.16.0)
43
- unicorn (4.4.0)
44
- kgio (~> 2.6)
45
- rack
46
- raindrops (~> 0.7)
47
- whenever (0.8.0)
33
+ highline (1.6.20)
34
+ i18n (0.6.5)
35
+ minitest (4.7.5)
36
+ multi_json (1.8.2)
37
+ net-scp (1.1.2)
38
+ net-ssh (>= 2.6.5)
39
+ net-sftp (2.1.2)
40
+ net-ssh (>= 2.6.5)
41
+ net-ssh (2.7.0)
42
+ net-ssh-gateway (1.2.0)
43
+ net-ssh (>= 2.6.5)
44
+ thor (0.18.1)
45
+ thread_safe (0.1.3)
46
+ atomic
47
+ tzinfo (0.3.38)
48
+ whenever (0.8.4)
48
49
  activesupport (>= 2.3.4)
49
50
  chronic (>= 0.6.3)
50
51
 
@@ -52,7 +52,7 @@ namespace :runit do
52
52
  c = fetch(:foreman_concurency) ? "-c #{fetch :foreman_concurency}" : ""
53
53
  diff = ENV['FORCE'] ?
54
54
  %{ /bin/false } :
55
- %{ diff -q #{previous_release}/#{runit_procfile} #{latest_release}/#{runit_procfile} > /dev/null }
55
+ %{ test -f #{previous_release}/#{runit_procfile} && diff -q #{previous_release}/#{runit_procfile} #{latest_release}/#{runit_procfile} > /dev/null }
56
56
  cmd = %{
57
57
  #{diff} || (
58
58
  echo -n "----> Export #{runit_procfile}" ;
@@ -3,7 +3,7 @@ module CapistranoEvroneRecipes
3
3
 
4
4
  MAJOR = 0
5
5
  MINOR = 1
6
- PATCH = 20
6
+ PATCH = 21
7
7
 
8
8
  def self.to_s
9
9
  "#{MAJOR}.#{MINOR}.#{PATCH}"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano_evrone_recipes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.20
4
+ version: 0.1.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Galinsky
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-01 00:00:00.000000000 Z
11
+ date: 2014-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
110
110
  version: '0'
111
111
  requirements: []
112
112
  rubyforge_project:
113
- rubygems_version: 2.1.9
113
+ rubygems_version: 2.0.14
114
114
  signing_key:
115
115
  specification_version: 4
116
116
  summary: Capistrano recipes used in evrone company