capistrano-ext 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -287,7 +287,11 @@ end
287
287
 
288
288
  Capistrano.plugin :monitor, MonitorServers
289
289
 
290
- Capistrano.configuration(:must_exist).load do
290
+ configuration = Capistrano::Configuration.respond_to?(:instance) ?
291
+ Capistrano::Configuration.instance(:must_exist) :
292
+ Capistrano.configuration(:must_exist)
293
+
294
+ configuration.load do
291
295
  desc <<-STR
292
296
  Watch the load on the servers. Display is updated every 30 seconds by default,
293
297
  though you can specify a DELAY environment variable to make it update more or
@@ -3,7 +3,7 @@ module Capistrano
3
3
  module Version #:nodoc:
4
4
  MAJOR = 1
5
5
  MINOR = 1
6
- TINY = 0
6
+ TINY = 1
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY].join(".")
9
9
  end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.0
2
+ rubygems_version: 0.9.3
3
3
  specification_version: 1
4
4
  name: capistrano-ext
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.1.0
7
- date: 2006-09-14 00:00:00 -06:00
6
+ version: 1.1.1
7
+ date: 2007-05-12 00:00:00 -06:00
8
8
  summary: Capistrano Extensions is a set of useful task libraries and methods that other developers may reference in their own recipe files.
9
9
  require_paths:
10
10
  - lib
@@ -32,9 +32,9 @@ files:
32
32
  - lib/capistrano
33
33
  - lib/capistrano/ext
34
34
  - lib/capistrano/ext/assets
35
+ - lib/capistrano/ext/assets/request-counter.rb
35
36
  - lib/capistrano/ext/monitor.rb
36
37
  - lib/capistrano/ext/version.rb
37
- - lib/capistrano/ext/assets/request-counter.rb
38
38
  test_files: []
39
39
 
40
40
  rdoc_options: []