fdlcap 0.4.4 → 0.4.5

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.4
1
+ 0.4.5
data/fdlcap.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{fdlcap}
8
- s.version = "0.4.4"
8
+ s.version = "0.4.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Factory Design Labs", "Gabe Varela", "Jay Zeschin"]
@@ -48,9 +48,11 @@ Capistrano::Configuration.instance(:must_exist).load do
48
48
  # Deploy the custom maintenance page
49
49
  define_recipe :custom_maintenance_page do
50
50
 
51
- desc "Copy the maintenance page from the public directory to the shared directory"
52
- task :copy_maintenance_page, :roles => :app do
53
- upload "public/maintenance.html","#{shared_path}/system/maintenance.html.custom", :via => :scp
51
+ namespace :slice do
52
+ desc "Copy the maintenance page from the public directory to the shared directory"
53
+ task :copy_maintenance_page, :roles => :app do
54
+ upload "public/maintenance.html","#{shared_path}/system/maintenance.html.custom", :via => :scp
55
+ end
54
56
  end
55
57
 
56
58
  before "deploy:web:disable", "slice:copy_maintenance_page"
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 4
9
- version: 0.4.4
8
+ - 5
9
+ version: 0.4.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Factory Design Labs