dark-capistrano-recipes 0.7.0 → 0.7.2

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.yml CHANGED
@@ -1,5 +1,4 @@
1
1
  ---
2
- :patch: 0
2
+ :patch: 2
3
3
  :major: 0
4
- :build:
5
4
  :minor: 7
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{dark-capistrano-recipes}
8
- s.version = "0.7.0"
8
+ s.version = "0.7.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Phil Misiowiec", "Leonardo Bighetti"]
12
- s.date = %q{2011-02-10}
12
+ s.date = %q{2011-03-03}
13
13
  s.description = %q{Extend the Capistrano gem with these useful recipes}
14
14
  s.email = %q{leonardobighetti@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -49,7 +49,7 @@ Gem::Specification.new do |s|
49
49
  s.homepage = %q{http://github.com/darkside/capistrano-recipes}
50
50
  s.rdoc_options = ["--charset=UTF-8"]
51
51
  s.require_paths = ["lib"]
52
- s.rubygems_version = %q{1.5.0}
52
+ s.rubygems_version = %q{1.5.2}
53
53
  s.summary = %q{Darkside's Capistrano recipes}
54
54
 
55
55
  if s.respond_to? :specification_version then
@@ -4,27 +4,27 @@ Capistrano::Configuration.instance.load do
4
4
  task :config, :roles => :app do
5
5
  run "cd #{current_path}; #{rake_bin} RAILS_ENV=#{rails_env} ts:config"
6
6
  end
7
-
7
+
8
8
  desc "|DarkRecipes| Starts TS"
9
9
  task :start, :roles => :app do
10
10
  run "cd #{current_path}; #{rake_bin} RAILS_ENV=#{rails_env} ts:start"
11
11
  end
12
-
12
+
13
13
  desc "|DarkRecipes| Stops TS"
14
14
  task :stop, :roles => :app do
15
15
  run "cd #{current_path}; #{rake_bin} RAILS_ENV=#{rails_env} ts:stop"
16
16
  end
17
-
17
+
18
18
  desc "|DarkRecipes| Rebuild TS"
19
19
  task :rebuild, :roles => :app do
20
20
  run "cd #{current_path}; #{rake_bin} RAILS_ENV=#{rails_env} ts:rebuild"
21
21
  end
22
-
22
+
23
23
  desc "|DarkRecipes| Indexes TS"
24
24
  task :index, :roles => :app do
25
25
  run "cd #{current_path}; #{rake_bin} RAILS_ENV=#{rails_env} ts:in"
26
26
  end
27
-
27
+
28
28
  desc "|DarkRecipes| Re-establishes symlinks"
29
29
  task :symlinks do
30
30
  run <<-CMD
@@ -32,8 +32,7 @@ Capistrano::Configuration.instance.load do
32
32
  CMD
33
33
  end
34
34
  end
35
-
36
- after "deploy:migrate" do
37
- sphinx.rebuild
38
- end unless is_app_monitored?
39
- end
35
+
36
+
37
+ end
38
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dark-capistrano-recipes
3
3
  version: !ruby/object:Gem::Version
4
- hash: 3
4
+ hash: 7
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 7
9
- - 0
10
- version: 0.7.0
9
+ - 2
10
+ version: 0.7.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Phil Misiowiec
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-02-10 00:00:00 -02:00
19
+ date: 2011-03-03 00:00:00 -03:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
119
  requirements: []
120
120
 
121
121
  rubyforge_project:
122
- rubygems_version: 1.5.0
122
+ rubygems_version: 1.5.2
123
123
  signing_key:
124
124
  specification_version: 3
125
125
  summary: Darkside's Capistrano recipes