capistrano-multistage 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in capistrano-multistage.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 Wael M. Nasreddine
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Capistrano::Multistage
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'capistrano-multistage'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install capistrano-multistage
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |gem|
4
+ gem.authors = ['Wael M. Nasreddine']
5
+ gem.email = ['wael.nasreddine@gmail.com']
6
+ gem.description = 'Capistrano multistage extensions'
7
+ gem.summary = gem.summary
8
+ gem.homepage = 'http://technogate.github.com/contao'
9
+ gem.required_ruby_version = Gem::Requirement.new('>= 1.9.2')
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = 'capistrano-multistage'
15
+ gem.require_paths = ['lib']
16
+ gem.version = '0.0.2'
17
+
18
+ # Runtime dependencies
19
+ gem.add_dependency 'rake'
20
+ gem.add_dependency 'capistrano', '>= 2.12.0'
21
+ end
@@ -0,0 +1,65 @@
1
+ Capistrano::Configuration.instance(:must_exist).load do
2
+ namespace :multistage do
3
+ namespace :sync do
4
+ # Synchronisations tasks
5
+ # Don't you just love metaprogramming? I know I fucking do!
6
+ stages.each do |target_stage|
7
+ stages.reject { |s| s == target_stage }.each do |source_stage|
8
+ desc "Synchronise #{target_stage}'s database with #{source_stage}"
9
+ task "#{target_stage}_database_with_#{source_stage}", :roles => :db do
10
+ # Ask for a confirmation
11
+ ask_for_confirmation "I am going to synchronise '#{target_stage}' database with '#{source_stage}', it means I will overwrite the database of '#{target_stage}' with those of '#{source_stage}', are you really sure you would like to continue (Yes, [No], Abort)", default:'N'
12
+
13
+ # Generate a random folder name
14
+ random_folder = random_tmp_file
15
+
16
+ # Create the folder
17
+ FileUtils.mkdir_p random_folder
18
+
19
+ # Get the database of the source
20
+ system "bundle exec cap #{source_stage} db:export #{random_folder}/database.sql"
21
+
22
+ # Send it to the target
23
+ system "bundle exec cap #{target_stage} db:import #{random_folder}/database.sql"
24
+
25
+ # Remove the entire folder
26
+ FileUtils.rm_rf random_folder
27
+ end
28
+
29
+ desc "Synchronise #{target_stage}'s contents with #{source_stage}"
30
+ task "#{target_stage}_contents_with_#{source_stage}", :roles => :app do
31
+ # Ask for a confirmation
32
+ ask_for_confirmation "I am going to synchronise '#{target_stage}' contents with '#{source_stage}', it means I will overwrite the contents of '#{target_stage}' with those of '#{source_stage}', are you really sure you would like to continue (Yes, [No], Abort)", default:'N'
33
+
34
+ # Generate a random folder name
35
+ random_folder = random_tmp_file
36
+
37
+ # Create the folder
38
+ FileUtils.mkdir_p random_folder
39
+
40
+ # Get the contents of the source
41
+ system "bundle exec cap #{source_stage} content:export #{random_folder}/contents.tar.gz"
42
+
43
+ # Send them to the target
44
+ system "bundle exec cap #{target_stage} content:import #{random_folder}/contents.tar.gz"
45
+
46
+ # Remove the entire folder
47
+ FileUtils.rm_rf random_folder
48
+ end
49
+
50
+ desc "Synchronise #{target_stage} with #{source_stage}"
51
+ task "#{target_stage}_with_#{source_stage}", :roles => [:app, :db], :except => { :no_release => true } do
52
+ # Ask for a confirmation
53
+ ask_for_confirmation "I am going to synchronise '#{target_stage}' with '#{source_stage}', it means I will overwrite both the database and the contents of '#{target_stage}' with those of '#{source_stage}', are you really sure you would like to continue (Yes, [No], Abort)", default:'N'
54
+
55
+ # Synchronise the database
56
+ system "bundle exec cap -S force=true multistage:sync:#{target_stage}_database_with_#{source_stage}"
57
+
58
+ # Synchronise the contents
59
+ system "bundle exec cap -S force=true multistage:sync:#{target_stage}_contents_with_#{source_stage}"
60
+ end
61
+ end
62
+ end
63
+ end
64
+ end
65
+ end
metadata ADDED
@@ -0,0 +1,87 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: capistrano-multistage
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Wael M. Nasreddine
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-07-01 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: capistrano
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: 2.12.0
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: 2.12.0
46
+ description: Capistrano multistage extensions
47
+ email:
48
+ - wael.nasreddine@gmail.com
49
+ executables: []
50
+ extensions: []
51
+ extra_rdoc_files: []
52
+ files:
53
+ - .gitignore
54
+ - Gemfile
55
+ - LICENSE
56
+ - README.md
57
+ - Rakefile
58
+ - capistrano-multistage.gemspec
59
+ - lib/capistrano/ext/multistage_extensions.rb
60
+ homepage: http://technogate.github.com/contao
61
+ licenses: []
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ none: false
68
+ requirements:
69
+ - - ! '>='
70
+ - !ruby/object:Gem::Version
71
+ version: 1.9.2
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ segments:
79
+ - 0
80
+ hash: -4244865401195799566
81
+ requirements: []
82
+ rubyforge_project:
83
+ rubygems_version: 1.8.23
84
+ signing_key:
85
+ specification_version: 3
86
+ summary: ''
87
+ test_files: []