factorylabs-fdlcap 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.1
1
+ 0.3.2
data/fdlcap.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{fdlcap}
5
- s.version = "0.3.1"
5
+ s.version = "0.3.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Factory Design Labs"]
9
- s.date = %q{2009-06-26}
9
+ s.date = %q{2009-06-29}
10
10
  s.default_executable = %q{fdlcap}
11
11
  s.email = %q{interactive@factorylabs.com}
12
12
  s.executables = ["fdlcap"]
@@ -26,7 +26,6 @@ Gem::Specification.new do |s|
26
26
  "features/step_definitions/fdlcap_steps.rb",
27
27
  "features/support/env.rb",
28
28
  "lib/fdlcap.rb",
29
- "lib/fdlcap/defaults.rb",
30
29
  "lib/fdlcap/extensions/configuration.rb",
31
30
  "lib/fdlcap/extensions/recipe_definition.rb",
32
31
  "lib/fdlcap/recipes.rb",
@@ -35,6 +34,7 @@ Gem::Specification.new do |s|
35
34
  "lib/fdlcap/recipes/database.rb",
36
35
  "lib/fdlcap/recipes/delayed_job.rb",
37
36
  "lib/fdlcap/recipes/deploy.rb",
37
+ "lib/fdlcap/recipes/fdl_defaults.rb",
38
38
  "lib/fdlcap/recipes/geminstaller.rb",
39
39
  "lib/fdlcap/recipes/newrelic.rb",
40
40
  "lib/fdlcap/recipes/nginx.rb",
@@ -0,0 +1,10 @@
1
+ Capistrano::Configuration.instance(:must_exist).load do
2
+
3
+ define_recipe :fdl_defaults do
4
+ # defaults for fdl
5
+ set :scm, :git
6
+ set :keep_releases, 5
7
+ set :deploy_via, :remote_cache
8
+ end
9
+
10
+ end
@@ -2,18 +2,11 @@ Capistrano::Configuration.instance(:must_exist).load do
2
2
  # These recipies assume an engineyard configuration
3
3
 
4
4
  # searchd assumes indexing and configuring being called directly on searchd
5
- define_recipe :thinking_sphinx_searchd do
5
+ define_recipe :thinking_sphinx do
6
6
  after "deploy:update_code", "deploy:symlink_configs"
7
7
  after "deploy:symlink_configs", "thinking_sphinx:symlink"
8
8
  after "thinking_sphinx:symlink", "sphinx:configure"
9
9
  after "deploy:update", "sphinx:reindex"
10
10
  end
11
11
 
12
- # rake assumes the explicit ey cap tasks that call TS rake tasks for indexing and configuring
13
- define_recipe :thinking_sphinx_rake do
14
- after "deploy:update_code", "deploy:symlink_configs"
15
- after "deploy:symlink_configs", "thinking_sphinx:symlink"
16
- after "thinking_sphinx:symlink", "thinking_sphinx:configure"
17
- after "deploy:update", "thinking_sphinx:reindex"
18
- end
19
12
  end
@@ -2,9 +2,6 @@
2
2
  require 'fdlcap/extensions/configuration'
3
3
  require 'fdlcap/extensions/recipe_definition'
4
4
 
5
- # Set up configuration defaults
6
- require 'fdlcap/defaults'
7
-
8
5
  # Load external fdlcap dependencies
9
6
  require 'eycap/recipes'
10
7
 
@@ -14,6 +11,7 @@ require 'fdlcap/recipes/craken'
14
11
  require 'fdlcap/recipes/database'
15
12
  require 'fdlcap/recipes/delayed_job'
16
13
  require 'fdlcap/recipes/deploy'
14
+ require 'fdlcap/recipes/fdl_defaults'
17
15
  require 'fdlcap/recipes/geminstaller'
18
16
  require 'fdlcap/recipes/newrelic'
19
17
  require 'fdlcap/recipes/nginx'
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.1
4
+ version: 0.3.2
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-06-26 00:00:00 -07:00
12
+ date: 2009-06-29 00:00:00 -07:00
13
13
  default_executable: fdlcap
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -73,7 +73,6 @@ files:
73
73
  - features/step_definitions/fdlcap_steps.rb
74
74
  - features/support/env.rb
75
75
  - lib/fdlcap.rb
76
- - lib/fdlcap/defaults.rb
77
76
  - lib/fdlcap/extensions/configuration.rb
78
77
  - lib/fdlcap/extensions/recipe_definition.rb
79
78
  - lib/fdlcap/recipes.rb
@@ -82,6 +81,7 @@ files:
82
81
  - lib/fdlcap/recipes/database.rb
83
82
  - lib/fdlcap/recipes/delayed_job.rb
84
83
  - lib/fdlcap/recipes/deploy.rb
84
+ - lib/fdlcap/recipes/fdl_defaults.rb
85
85
  - lib/fdlcap/recipes/geminstaller.rb
86
86
  - lib/fdlcap/recipes/newrelic.rb
87
87
  - lib/fdlcap/recipes/nginx.rb
@@ -1,8 +0,0 @@
1
- Capistrano::Configuration.instance(:must_exist).load do
2
-
3
- # defaults for fdl
4
- set :scm, :git
5
- set :keep_releases, 5
6
- set :deploy_via, :remote_cache
7
-
8
- end