factorylabs-fdlcap 0.3.10 → 0.3.11
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.
- data/VERSION +1 -1
- data/fdlcap.gemspec +6 -3
- data/lib/fdlcap/recipes/symlinks.rb +2 -2
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.11
|
data/fdlcap.gemspec
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
|
1
4
|
# -*- encoding: utf-8 -*-
|
|
2
5
|
|
|
3
6
|
Gem::Specification.new do |s|
|
|
4
7
|
s.name = %q{fdlcap}
|
|
5
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.11"
|
|
6
9
|
|
|
7
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
11
|
s.authors = ["Factory Design Labs"]
|
|
9
|
-
s.date = %q{2009-
|
|
12
|
+
s.date = %q{2009-08-21}
|
|
10
13
|
s.default_executable = %q{fdlcap}
|
|
11
14
|
s.email = %q{interactive@factorylabs.com}
|
|
12
15
|
s.executables = ["fdlcap"]
|
|
@@ -60,7 +63,7 @@ Gem::Specification.new do |s|
|
|
|
60
63
|
s.homepage = %q{http://github.com/factorylabs/fdlcap}
|
|
61
64
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
62
65
|
s.require_paths = ["lib"]
|
|
63
|
-
s.rubygems_version = %q{1.3.
|
|
66
|
+
s.rubygems_version = %q{1.3.5}
|
|
64
67
|
s.summary = %q{a set of capistrano recipies we use regularly at Factory Design Labs}
|
|
65
68
|
s.test_files = [
|
|
66
69
|
"test/fdlcap_test.rb",
|
|
@@ -18,7 +18,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
|
18
18
|
namespace :symlinks do
|
|
19
19
|
|
|
20
20
|
desc "fix symlinks to shared directory"
|
|
21
|
-
task :fix, :roles =>
|
|
21
|
+
task :fix, :roles => :app, :except => { :no_release => true } do
|
|
22
22
|
# for folders stored under public
|
|
23
23
|
symlink_dirs.each do |share|
|
|
24
24
|
run "rm -rf #{current_path}/#{share}"
|
|
@@ -28,7 +28,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
desc "create symlinks to shared directory"
|
|
31
|
-
task :create, :roles =>
|
|
31
|
+
task :create, :roles => :app, :except => { :no_release => true } do
|
|
32
32
|
# for folders stored under public
|
|
33
33
|
symlink_dirs.each do |share|
|
|
34
34
|
run "rm -rf #{release_path}/#{share}"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: factorylabs-fdlcap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Factory Design Labs
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-08-21 00:00:00 -07:00
|
|
13
13
|
default_executable: fdlcap
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|