forkcms_3_deploy 1.1.2 → 1.2.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/README.md +4 -2
- data/VERSION +1 -1
- data/forkcms_3_deploy.gemspec +2 -2
- data/lib/forkcms_3_deploy.rb +4 -2
- metadata +4 -4
data/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# !!! Do not use this gem, use the forkcms_deploy-gem, which is version-independant from now on !!!
|
|
2
|
+
|
|
1
3
|
# ForkCMS Deploy gem
|
|
2
4
|
This is a gem that enables you to deploy a ForkCMS 3.x.x install to your server. It was built specific for Fork CMS so your Capfile will be neat and tidy.
|
|
3
5
|
|
|
@@ -10,7 +12,7 @@ The recipe is available in the forkcms_deploy gem, which can be installed via [R
|
|
|
10
12
|
* forkcms_3_deploy/defaults - Best practices for each deployment.
|
|
11
13
|
|
|
12
14
|
## Example recipe
|
|
13
|
-
This recipe will deploy the ForkCMS-instance to your-app.com.
|
|
15
|
+
This recipe will deploy the ForkCMS-instance to your-app.com.
|
|
14
16
|
|
|
15
17
|
load 'deploy' if respond_to?(:namespace) # cap2 differentiator
|
|
16
18
|
|
|
@@ -25,7 +27,7 @@ This recipe will deploy the ForkCMS-instance to your-app.com.
|
|
|
25
27
|
|
|
26
28
|
# set document_root
|
|
27
29
|
set :document_root, "/home/#{user}/www.your-app.com" # eg.: /home/sumocoders/www.sumocoderS.be
|
|
28
|
-
|
|
30
|
+
|
|
29
31
|
# define roles
|
|
30
32
|
server "your-app.com", :app, :web, :db, :primary => true # eg.: crsolutions.be
|
|
31
33
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.2.0
|
data/forkcms_3_deploy.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "forkcms_3_deploy"
|
|
8
|
-
s.version = "1.
|
|
8
|
+
s.version = "1.2.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Tijs Verkoyen", "Sam Tubbax"]
|
|
12
|
-
s.date = "2012-
|
|
12
|
+
s.date = "2012-10-16"
|
|
13
13
|
s.description = "Deployment for Fork 3.x.x with Capistrano"
|
|
14
14
|
s.email = "info@sumocoders.be"
|
|
15
15
|
s.extra_rdoc_files = [
|
data/lib/forkcms_3_deploy.rb
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
puts "This gem will not be maintained anymore, use the forkcms_deploy-gem"
|
|
2
|
+
puts "The forkcms_deploy-gem is updated and able to deal with all previous"
|
|
3
|
+
puts "and newer versions of Fork CMS"
|
|
4
|
+
exit
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: forkcms_3_deploy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 31
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
|
-
- 1
|
|
9
8
|
- 2
|
|
10
|
-
|
|
9
|
+
- 0
|
|
10
|
+
version: 1.2.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Tijs Verkoyen
|
|
@@ -16,7 +16,7 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2012-
|
|
19
|
+
date: 2012-10-16 00:00:00 Z
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
22
22
|
name: capistrano
|