capistrano-php 0.1.0 → 1.0.0
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/.gitignore +5 -0
- data/README.rdoc +11 -5
- data/Rakefile +13 -11
- data/VERSION +1 -0
- data/capistrano-php.gemspec +29 -11
- metadata +19 -25
data/README.rdoc
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
= capistrano-php
|
2
2
|
|
3
|
-
* http://github.com
|
3
|
+
* http://github.com/namics/capistrano-php
|
4
|
+
* http://gemcutter.org/gems/capistrano-php
|
4
5
|
|
5
6
|
== DESCRIPTION:
|
6
7
|
|
7
8
|
Overrides the rails specific Capistrano tasks so you don't have
|
8
|
-
to do that by yourself when deploying a PHP application.
|
9
|
+
to do that by yourself in deploy.rb when deploying a PHP application.
|
9
10
|
|
10
11
|
== SYNOPSIS:
|
11
12
|
|
12
13
|
In your deploy.rb, insert the following line at the top:
|
13
|
-
|
14
|
-
|
14
|
+
require 'capistrano/php'
|
15
15
|
|
16
16
|
== REQUIREMENTS:
|
17
17
|
|
@@ -19,7 +19,13 @@ include 'capistrano/php.rb'
|
|
19
19
|
|
20
20
|
== INSTALL:
|
21
21
|
|
22
|
-
* sudo gem install
|
22
|
+
* sudo gem install capistrano-php
|
23
|
+
|
24
|
+
If you haven't added gemcutter yet:
|
25
|
+
|
26
|
+
* sudo gem install gemcutter
|
27
|
+
* gem tumble
|
28
|
+
|
23
29
|
|
24
30
|
== LICENSE:
|
25
31
|
|
data/Rakefile
CHANGED
@@ -1,12 +1,14 @@
|
|
1
|
-
|
2
|
-
require '
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
1
|
+
begin
|
2
|
+
require 'jeweler'
|
3
|
+
Jeweler::Tasks.new do |gemspec|
|
4
|
+
gemspec.name = "capistrano-php"
|
5
|
+
gemspec.summary = "Use capistrano for PHP deployment without overriding all methods by yourself."
|
6
|
+
gemspec.description = "Use capistrano for PHP deployment without overriding all methods by yourself."
|
7
|
+
gemspec.email = "christian.felder@namics.com"
|
8
|
+
gemspec.homepage = "http://github.com/namics/capistrano-php"
|
9
|
+
gemspec.authors = ["Christian Felder, Namics"]
|
10
|
+
end
|
11
|
+
Jeweler::GemcutterTasks.new
|
12
|
+
rescue LoadError
|
13
|
+
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
12
14
|
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.0
|
data/capistrano-php.gemspec
CHANGED
@@ -1,21 +1,42 @@
|
|
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{capistrano-php}
|
5
|
-
s.version = "
|
8
|
+
s.version = "1.0.0"
|
6
9
|
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">=
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
11
|
s.authors = ["Christian Felder, Namics"]
|
9
|
-
s.date = %q{2009-
|
12
|
+
s.date = %q{2009-10-18}
|
10
13
|
s.description = %q{Use capistrano for PHP deployment without overriding all methods by yourself.}
|
11
14
|
s.email = %q{christian.felder@namics.com}
|
12
|
-
s.extra_rdoc_files = [
|
13
|
-
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"README.rdoc"
|
17
|
+
]
|
18
|
+
s.files = [
|
19
|
+
".gitignore",
|
20
|
+
"Manifest",
|
21
|
+
"README.rdoc",
|
22
|
+
"Rakefile",
|
23
|
+
"VERSION",
|
24
|
+
"capistrano-php.gemspec",
|
25
|
+
"lib/capistrano/php.rb",
|
26
|
+
"lib/init.rb",
|
27
|
+
"pkg/capistrano-php-0.1.0.gem",
|
28
|
+
"pkg/capistrano-php-0.1.0.tar.gz",
|
29
|
+
"pkg/capistrano-php-0.1.0/Manifest",
|
30
|
+
"pkg/capistrano-php-0.1.0/README.rdoc",
|
31
|
+
"pkg/capistrano-php-0.1.0/Rakefile",
|
32
|
+
"pkg/capistrano-php-0.1.0/capistrano-php.gemspec",
|
33
|
+
"pkg/capistrano-php-0.1.0/lib/capistrano/php.rb",
|
34
|
+
"pkg/capistrano-php-0.1.0/lib/init.rb"
|
35
|
+
]
|
14
36
|
s.homepage = %q{http://github.com/namics/capistrano-php}
|
15
|
-
s.rdoc_options = ["--
|
37
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
16
38
|
s.require_paths = ["lib"]
|
17
|
-
s.
|
18
|
-
s.rubygems_version = %q{1.3.4}
|
39
|
+
s.rubygems_version = %q{1.3.5}
|
19
40
|
s.summary = %q{Use capistrano for PHP deployment without overriding all methods by yourself.}
|
20
41
|
|
21
42
|
if s.respond_to? :specification_version then
|
@@ -23,11 +44,8 @@ Gem::Specification.new do |s|
|
|
23
44
|
s.specification_version = 3
|
24
45
|
|
25
46
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
26
|
-
s.add_development_dependency(%q<capistrano>, [">= 0"])
|
27
47
|
else
|
28
|
-
s.add_dependency(%q<capistrano>, [">= 0"])
|
29
48
|
end
|
30
49
|
else
|
31
|
-
s.add_dependency(%q<capistrano>, [">= 0"])
|
32
50
|
end
|
33
51
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-php
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Felder, Namics
|
@@ -9,19 +9,10 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-10-18 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
16
|
-
name: capistrano
|
17
|
-
type: :development
|
18
|
-
version_requirement:
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
20
|
-
requirements:
|
21
|
-
- - ">="
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: "0"
|
24
|
-
version:
|
14
|
+
dependencies: []
|
15
|
+
|
25
16
|
description: Use capistrano for PHP deployment without overriding all methods by yourself.
|
26
17
|
email: christian.felder@namics.com
|
27
18
|
executables: []
|
@@ -30,27 +21,30 @@ extensions: []
|
|
30
21
|
|
31
22
|
extra_rdoc_files:
|
32
23
|
- README.rdoc
|
33
|
-
- lib/capistrano/php.rb
|
34
|
-
- lib/init.rb
|
35
24
|
files:
|
25
|
+
- .gitignore
|
36
26
|
- Manifest
|
37
27
|
- README.rdoc
|
38
28
|
- Rakefile
|
29
|
+
- VERSION
|
30
|
+
- capistrano-php.gemspec
|
39
31
|
- lib/capistrano/php.rb
|
40
32
|
- lib/init.rb
|
41
|
-
- capistrano-php.
|
33
|
+
- pkg/capistrano-php-0.1.0.gem
|
34
|
+
- pkg/capistrano-php-0.1.0.tar.gz
|
35
|
+
- pkg/capistrano-php-0.1.0/Manifest
|
36
|
+
- pkg/capistrano-php-0.1.0/README.rdoc
|
37
|
+
- pkg/capistrano-php-0.1.0/Rakefile
|
38
|
+
- pkg/capistrano-php-0.1.0/capistrano-php.gemspec
|
39
|
+
- pkg/capistrano-php-0.1.0/lib/capistrano/php.rb
|
40
|
+
- pkg/capistrano-php-0.1.0/lib/init.rb
|
42
41
|
has_rdoc: true
|
43
42
|
homepage: http://github.com/namics/capistrano-php
|
44
43
|
licenses: []
|
45
44
|
|
46
45
|
post_install_message:
|
47
46
|
rdoc_options:
|
48
|
-
- --
|
49
|
-
- --inline-source
|
50
|
-
- --title
|
51
|
-
- Capistrano-php
|
52
|
-
- --main
|
53
|
-
- README.rdoc
|
47
|
+
- --charset=UTF-8
|
54
48
|
require_paths:
|
55
49
|
- lib
|
56
50
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -63,12 +57,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
57
|
requirements:
|
64
58
|
- - ">="
|
65
59
|
- !ruby/object:Gem::Version
|
66
|
-
version: "
|
60
|
+
version: "0"
|
67
61
|
version:
|
68
62
|
requirements: []
|
69
63
|
|
70
|
-
rubyforge_project:
|
71
|
-
rubygems_version: 1.3.
|
64
|
+
rubyforge_project:
|
65
|
+
rubygems_version: 1.3.5
|
72
66
|
signing_key:
|
73
67
|
specification_version: 3
|
74
68
|
summary: Use capistrano for PHP deployment without overriding all methods by yourself.
|