deprec 2.0.3 → 2.0.4
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/CHANGELOG +4 -0
- data/lib/deprec/recipes/app/passenger.rb +4 -2
- metadata +2 -2
data/CHANGELOG
CHANGED
|
@@ -5,7 +5,9 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
|
5
5
|
|
|
6
6
|
set(:passenger_install_dir) {
|
|
7
7
|
if ruby_vm_type == :ree
|
|
8
|
-
|
|
8
|
+
# XXX We can't predict the version included with REE! :-(
|
|
9
|
+
# XXX Need to find a workaround
|
|
10
|
+
"#{ree_install_dir}/lib/ruby/gems/1.8/gems/passenger-2.1.2"
|
|
9
11
|
else
|
|
10
12
|
'/opt/passenger'
|
|
11
13
|
end
|
|
@@ -26,7 +28,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
|
26
28
|
SRC_PACKAGES[:passenger] = {
|
|
27
29
|
:url => "git://github.com/FooBarWidget/passenger.git",
|
|
28
30
|
:download_method => :git,
|
|
29
|
-
:version => 'release-2.
|
|
31
|
+
:version => 'release-2.1.2', # Specify a tagged release to deploy
|
|
30
32
|
:configure => '',
|
|
31
33
|
:make => '',
|
|
32
34
|
:install => './bin/passenger-install-apache2-module'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: deprec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Bailey
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-03-
|
|
12
|
+
date: 2009-03-16 00:00:00 +11:00
|
|
13
13
|
default_executable: depify
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|