crossroads_capistrano 1.4.45 → 1.4.46

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,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- NTkwODQ3N2IzYjRjNzYyNzNmMGEwMjdjZDQyYjY3MWYwN2VjY2RlZA==
5
- data.tar.gz: !binary |-
6
- ZTczNTI0MWI0MzY3NmViMzkwYjQwM2Q1YTZhZTVlMmRlZWIwYWM4OQ==
2
+ SHA1:
3
+ metadata.gz: 96d75555fe782a83b41b4b8f8bf17be37df51e5d
4
+ data.tar.gz: 2d406b59832d03b272137a8902a6527c0de4aa8c
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- MWQzOGM0NTFiZDQ2MWY5MTc3MDZkZWZkZDBmODUwMDhkMjk3MGQwYzA1ZjU0
10
- N2Q3MDExMDgxYzBmYzhiMDI3NzJiNGZiMWEyMWRkODYwNjNiMjdhNTdlYjEw
11
- NTYxM2VlMWRmNTUxZjQyZjg0Y2I5OTY1NDE4ZGFkMjljOWIxZDE=
12
- data.tar.gz: !binary |-
13
- ZmNkMjczZTg2NTRkNjE1ZTk3MzIxOTYwMDNkOTBkMWYzMzYyZGY2MmJlZmU4
14
- MWJjZDNhNWRjM2I0NmM1MmYyNGRmNDY2ZTc2YzczMTRhMmJkODdiNzdmOWQx
15
- MTczMDljM2YxNDI2OGRiYTEyYzMzNWU4MGZlNWY0NTg0ZDkwNTE=
6
+ metadata.gz: 52b37c630772bb9e6396f9f0db864cfb5d589708413e4fefb5daeabd7070c5a4aa31a2d1fd7d146a7314192d4450d4b8f504b3dfc326f9930c34d0cbbf6c73f2
7
+ data.tar.gz: 7cdffaa04abc8c9507f8d96a88e07f653e340eb282e0d753972476bcd4fe8b02329dd8c46347cf839f849302e7b9edd39faeb0953af030bcc66f41b8349226a5
data/README.textile CHANGED
@@ -9,7 +9,7 @@ h3. Usage
9
9
  Add the following to your project's *Gemfile* :
10
10
 
11
11
  bc. gem 'crossroads_capistrano', :git => 'http://github.com/crossroads/crossroads_capistrano.git'
12
-
12
+
13
13
  Add the following to your project's *config/deploy.rb* :
14
14
 
15
15
  bc. require 'crossroads_capistrano'
@@ -20,6 +20,7 @@ CrossroadsCapistrano.load_recipes :all
20
20
 
21
21
  h3. Changes
22
22
 
23
+ v1.4.46 - better delayed_job restart method
23
24
  v1.4.45 - for passenger.conf: SERVER_NAME is no longer driven using the site_domain_name variable. Use server_name instead.
24
25
  v1.4.44 - Added airbrake recipe and fixed bugs in RVM deployment
25
26
  v1.4.43 - Don't recursively chown all of the shared directory. Can take a long time!
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "crossroads_capistrano"
6
- s.version = "1.4.45"
6
+ s.version = "1.4.46"
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ["Steve Kenworthy", "Ben Tillman", "Nathan Broadbent"]
9
9
  s.email = ["it_dept@crossroads.org.hk"]
@@ -11,7 +11,9 @@ namespace :delayed_job do
11
11
 
12
12
  desc "Restart the delayed_job process"
13
13
  task :restart, :roles => :app do
14
- run "cd #{current_path}; RAILS_ENV=#{rails_env} bundle exec ./script/delayed_job restart"
14
+ # We've found stop|start to be more reliable than restart
15
+ run "cd #{current_path}; RAILS_ENV=#{rails_env} bundle exec ./script/delayed_job stop"
16
+ run "cd #{current_path}; RAILS_ENV=#{rails_env} bundle exec ./script/delayed_job start"
15
17
  end
16
18
 
17
19
  desc "delayed_job status"
@@ -19,4 +21,3 @@ namespace :delayed_job do
19
21
  run "ps aux | grep 'delayed_job'"
20
22
  end
21
23
  end
22
-
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crossroads_capistrano
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.45
4
+ version: 1.4.46
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Kenworthy
@@ -10,62 +10,62 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-01-15 00:00:00.000000000 Z
13
+ date: 2014-01-17 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: capistrano
17
17
  requirement: !ruby/object:Gem::Requirement
18
18
  requirements:
19
- - - ! '>='
19
+ - - '>='
20
20
  - !ruby/object:Gem::Version
21
21
  version: 2.6.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
- - - ! '>='
26
+ - - '>='
27
27
  - !ruby/object:Gem::Version
28
28
  version: 2.6.0
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: capistrano-ext
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
- - - ! '>='
33
+ - - '>='
34
34
  - !ruby/object:Gem::Version
35
35
  version: 1.2.1
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
- - - ! '>='
40
+ - - '>='
41
41
  - !ruby/object:Gem::Version
42
42
  version: 1.2.1
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: capistrano_colors
45
45
  requirement: !ruby/object:Gem::Requirement
46
46
  requirements:
47
- - - ! '>='
47
+ - - '>='
48
48
  - !ruby/object:Gem::Version
49
49
  version: 0.5.4
50
50
  type: :runtime
51
51
  prerelease: false
52
52
  version_requirements: !ruby/object:Gem::Requirement
53
53
  requirements:
54
- - - ! '>='
54
+ - - '>='
55
55
  - !ruby/object:Gem::Version
56
56
  version: 0.5.4
57
57
  - !ruby/object:Gem::Dependency
58
58
  name: rvm-capistrano
59
59
  requirement: !ruby/object:Gem::Requirement
60
60
  requirements:
61
- - - ! '>='
61
+ - - '>='
62
62
  - !ruby/object:Gem::Version
63
63
  version: 1.2.7
64
64
  type: :runtime
65
65
  prerelease: false
66
66
  version_requirements: !ruby/object:Gem::Requirement
67
67
  requirements:
68
- - - ! '>='
68
+ - - '>='
69
69
  - !ruby/object:Gem::Version
70
70
  version: 1.2.7
71
71
  description: A Crossroads Foundation collection of generic capistrano recipes.
@@ -113,17 +113,17 @@ require_paths:
113
113
  - lib
114
114
  required_ruby_version: !ruby/object:Gem::Requirement
115
115
  requirements:
116
- - - ! '>='
116
+ - - '>='
117
117
  - !ruby/object:Gem::Version
118
118
  version: '0'
119
119
  required_rubygems_version: !ruby/object:Gem::Requirement
120
120
  requirements:
121
- - - ! '>='
121
+ - - '>='
122
122
  - !ruby/object:Gem::Version
123
123
  version: '0'
124
124
  requirements: []
125
125
  rubyforge_project: crossroads_capistrano
126
- rubygems_version: 2.2.1
126
+ rubygems_version: 2.1.11
127
127
  signing_key:
128
128
  specification_version: 4
129
129
  summary: Crossroads capistrano recipes