capistrano-typo3-cms 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2dd193269a0b288624635a505083df198bb5b479
4
- data.tar.gz: cdfa0979227f6e629bb9a7e266abea6d19f1dd7a
3
+ metadata.gz: a0b2be53c7b95c17f54b66a0e314a6c461842265
4
+ data.tar.gz: 206507f4ee82f37242a3838be54cee6972f518f5
5
5
  SHA512:
6
- metadata.gz: 330a670aa7c1902730b596362cb4df80ac2f173ccc0ddbe801dab9a9a0035c1ee87abc31c536b7d646dcd797740d925adda439375ea9039d551e16f2470a7a7c
7
- data.tar.gz: 51fa8410c4a20356fc04b9973f9fc70f2c046e09a6ceef27eeac8e34a8eb4ea9941afae51a042a83560123dcbbf28ddcd05418378e9422e510e71e33ad4af5ea
6
+ metadata.gz: 719fa89142a9e361b10b281a0dabe75a89b6e9a31132e8c5c16acbfd9126c58678fe153d6b1bf598ecea63de3d79a4f0283d9ee0edd0298a5af1d9b1076adf17
7
+ data.tar.gz: d8e9f9f75f7192c3ad7ec51f73f61f60a69613dfd544404e21dfe5c659f6f4eb9fe83dae703c3e22cb3ebbc97927de6b14abc354747954c2ece98267372e2c17
@@ -1,11 +1,20 @@
1
1
  require "capistrano/typo3/cms/version"
2
- require "capistrano/typo3/cms/git"
2
+
3
3
 
4
4
 
5
5
  Capistrano::Configuration.instance(:must_exist).load do
6
6
 
7
7
  require 'capistrano/recipes/deploy/scm'
8
8
  require 'capistrano/recipes/deploy/strategy'
9
+ require 'railsless-deploy'
10
+ require 'capistrano_colors'
11
+ capistrano_color_matchers = [
12
+ { :match => /command finished/, :color => :hide, :prio => 10 },
13
+ { :match => /executing command/, :color => :blue, :prio => 10, :attribute => :underscore },
14
+ { :match => /^transaction: commit$/, :color => :magenta, :prio => 10, :attribute => :blink },
15
+ { :match => /git/, :color => :white, :prio => 20, :attribute => :reverse },
16
+ ]
17
+ colorize( capistrano_color_matchers )
9
18
 
10
19
  # =========================================================================
11
20
  # These variables may be set in the client capfile if their default values
@@ -19,25 +28,7 @@ Capistrano::Configuration.instance(:must_exist).load do
19
28
 
20
29
  set(:deploy_to) { "/var/www/#{application}" }
21
30
 
22
- namespace :deploy do
23
- desc <<-DESC
24
- Prepares one or more servers for deployment. Before you can use any \
25
- of the Capistrano deployment tasks with your project, you will need to \
26
- make sure all of your servers have been prepared with `cap deploy:setup'. When \
27
- you add a new server to your cluster, you can easily run the setup task \
28
- on just that server by specifying the HOSTS environment variable:
29
-
30
- $ cap HOSTS=new.server.com deploy:setup
31
-
32
- It is safe to run this task on servers that have already been set up; it \
33
- will not destroy any deployed revisions or data.
34
- DESC
35
- task :setup, :except => { :no_release => true } do
36
- dirs = [deploy_to, releases_path, shared_path].join(' ')
37
- run "#{try_sudo} mkdir -p #{releases_path} #{shared_path}"
38
- run "#{try_sudo} chown -R #{user}:#{runner_group} #{deploy_to}"
39
- sub_dirs = shared_children.map { |d| File.join(shared_path, d) }
40
- run "#{try_sudo} chmod 2775 #{sub_dirs.join(' ')}"
41
- end
42
- end
31
+ namespace :typo3 do
32
+
33
+ end
43
34
  end
@@ -1,13 +1,7 @@
1
1
  module Capistrano
2
2
  module Typo3
3
3
  module Cms
4
- VERSION = "0.0.1"
5
- class Meme
6
- def getVersion
7
- "YEAR!"
8
- end
9
- end
10
-
11
- end
12
- end
13
- end
4
+ VERSION = "0.0.2"
5
+ end
6
+ end
7
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-typo3-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Lademann