gnm-caplock 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ README.rdoc
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Dru Ibarra
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,30 @@
1
+ = gnm-caplock
2
+
3
+ Adds a lock file to Capistrano deployments.
4
+
5
+ == Installation
6
+
7
+ $ gem install caplock
8
+
9
+ Include in your Capfile
10
+ require 'rubygems'
11
+ require 'caplock'
12
+
13
+ == Usage
14
+
15
+ Define the name of your lock file in your deploy.rb
16
+ set :lockfile, "my.lock" # defaults to "cap.lock"
17
+
18
+ == Note on Patches/Pull Requests
19
+
20
+ * Fork the project.
21
+ * Make your feature addition or bug fix.
22
+ * Add tests for it. This is important so I don't break it in a
23
+ future version unintentionally.
24
+ * Commit, do not mess with rakefile, version, or history.
25
+ (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
26
+ * Send me a pull request. Bonus points for topic branches.
27
+
28
+ == Copyright
29
+
30
+ Copyright (c) 2012 Dru Ibarra. See LICENSE for details.
data/Rakefile ADDED
@@ -0,0 +1,54 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "gnm-caplock"
8
+ gem.summary = %Q{Adds a lock file to Capistrano deployments}
9
+ gem.description = %Q{Adds a lock file to Capistrano deployments to prevent concurrent deployments.}
10
+ gem.email = "ConfigurationManagement@gorillanation.com"
11
+ gem.homepage = "https://github.com/GorillaNation/gnm-caplock"
12
+ gem.authors = ["Dru Ibarra"]
13
+ gem.add_dependency "capistrano", '>= 2.9.0'
14
+ gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
15
+ # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
16
+ end
17
+ Jeweler::GemcutterTasks.new
18
+ rescue LoadError
19
+ puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
20
+ end
21
+
22
+ require 'rake/testtask'
23
+ Rake::TestTask.new(:test) do |test|
24
+ test.libs << 'lib' << 'test'
25
+ test.pattern = 'test/**/test_*.rb'
26
+ test.verbose = true
27
+ end
28
+
29
+ begin
30
+ require 'rcov/rcovtask'
31
+ Rcov::RcovTask.new do |test|
32
+ test.libs << 'test'
33
+ test.pattern = 'test/**/test_*.rb'
34
+ test.verbose = true
35
+ end
36
+ rescue LoadError
37
+ task :rcov do
38
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
39
+ end
40
+ end
41
+
42
+ task :test => :check_dependencies
43
+
44
+ task :default => :test
45
+
46
+ require 'rake/rdoctask'
47
+ Rake::RDocTask.new do |rdoc|
48
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
49
+
50
+ rdoc.rdoc_dir = 'rdoc'
51
+ rdoc.title = "gnm-caplock #{version}"
52
+ rdoc.rdoc_files.include('README*')
53
+ rdoc.rdoc_files.include('lib/**/*.rb')
54
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.2.0
@@ -0,0 +1,50 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{gnm-caplock}
8
+ s.version = "0.2.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = [%q{Dru Ibarra}]
12
+ s.date = %q{2012-03-20}
13
+ s.description = %q{Adds a lock file to Capistrano deployments to prevent concurrent deployments.}
14
+ s.email = %q{ConfigurationManagement@gorillanation.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ "LICENSE",
22
+ "README.rdoc",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "gnm-caplock.gemspec",
26
+ "lib/gnm-caplock.rb",
27
+ "test/helper.rb",
28
+ "test/test_caplock.rb"
29
+ ]
30
+ s.homepage = %q{https://github.com/GorillaNation/gnm-caplock}
31
+ s.require_paths = [%q{lib}]
32
+ s.rubygems_version = %q{1.8.6}
33
+ s.summary = %q{Adds a lock file to Capistrano deployments}
34
+
35
+ if s.respond_to? :specification_version then
36
+ s.specification_version = 3
37
+
38
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
39
+ s.add_runtime_dependency(%q<capistrano>, [">= 2.9.0"])
40
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
41
+ else
42
+ s.add_dependency(%q<capistrano>, [">= 2.9.0"])
43
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
44
+ end
45
+ else
46
+ s.add_dependency(%q<capistrano>, [">= 2.9.0"])
47
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
48
+ end
49
+ end
50
+
@@ -0,0 +1,79 @@
1
+ require 'capistrano'
2
+
3
+ module Capistrano
4
+ module Caplock
5
+
6
+ # Returns Boolean indicating the result of +filetest+ on +full_path+ on the server, evaluated by shell on
7
+ # the server (usually bash or something roughly compatible).
8
+ def remote_filetest_passes?(filetest, full_path)
9
+ 'true' == capture("if [ #{filetest} #{full_path} ]; then echo 'true'; fi").strip
10
+ end
11
+
12
+ # Checks if a symlink exists on the remote machine.
13
+ def remote_symlink_exists?(full_path)
14
+ remote_filetest_passes?('-L', full_path)
15
+ end
16
+
17
+ # Returns Boolean value indicating whether file exists on server
18
+ def remote_file_exists?(full_path)
19
+ remote_filetest_passes?('-e', full_path)
20
+ end
21
+
22
+ # Returns Boolean value indicating whether the file at +full_path+ matches +content+. Checks if file
23
+ # is equivalent to content by checking whether or not the MD5 of the remote content is the same as the
24
+ # MD5 of the String in +content+.
25
+ def remote_file_content_same_as?(full_path, content)
26
+ Digest::MD5.hexdigest(content) == capture("md5sum #{full_path} | awk '{ print $1 }'").strip
27
+ end
28
+
29
+ # Returns Boolean indicating whether the remote file is present and has the same contents as
30
+ # the String in +content+.
31
+ def remote_file_differs?(full_path, content)
32
+ !remote_file_exists?(full_path) || remote_file_exists?(full_path) && !remote_file_content_same_as?(full_path, content)
33
+ end
34
+
35
+ def self.load_into(configuration)
36
+ configuration.load do
37
+ set :lockfile, "cap.lock"
38
+
39
+ namespace :lock do
40
+ desc "check lock"
41
+ task :check, :roles => :app do
42
+ if caplock.remote_file_exists?("#{deploy_to}/#{lockfile}")
43
+ abort "\n\n\n\e[0;31m A Deployment is already in progress\n Remove #{deploy_to}/#{lockfile} to unlock \e[0m\n\n\n"
44
+ end
45
+ end
46
+
47
+ desc "create lock"
48
+ task :create, :roles => :app do
49
+ timestamp = Time.now.strftime("%m/%d/%Y %H:%M:%S %Z")
50
+ lock_message = "Deploy started at #{timestamp} in progress"
51
+ put lock_message, "#{deploy_to}/#{lockfile}", :mode => 0644
52
+ end
53
+
54
+ desc "release lock"
55
+ task :release, :roles => :app do
56
+ run "rm -f #{deploy_to}/#{lockfile}"
57
+ end
58
+ end
59
+
60
+ # Deployment
61
+ before "deploy", "lock:check"
62
+ after "lock:check", "lock:create"
63
+ after "deploy", "lock:release"
64
+
65
+ # Rollback
66
+ before "deploy:rollback", "lock:check"
67
+ after "deploy:rollback", "lock:release"
68
+
69
+ end
70
+ end
71
+
72
+ Capistrano.plugin :caplock, Caplock
73
+
74
+ end
75
+ end
76
+
77
+ if Capistrano::Configuration.instance
78
+ Capistrano::Caplock.load_into(Capistrano::Configuration.instance)
79
+ end
data/test/helper.rb ADDED
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
7
+ require 'caplock'
8
+
9
+ class Test::Unit::TestCase
10
+ end
@@ -0,0 +1,47 @@
1
+ require 'helper'
2
+
3
+ class TestCaplock < Test::Unit::TestCase
4
+ def setup
5
+ @config = Capistrano::Configuration.new
6
+ Capistrano::Caplock.load_into(@config)
7
+ @config.set :deploy_to, "/tmp"
8
+ @config.role :app, "localhost"
9
+ end
10
+
11
+ should "use default lockfile name 'cap.lock'" do
12
+ assert_equal @config.lockfile, 'cap.lock'
13
+ end
14
+
15
+ should "set lockfile name to 'test.lock'" do
16
+ @config.set :lockfile, 'test.lock'
17
+ assert_equal @config.lockfile, 'test.lock'
18
+ end
19
+
20
+ should "create lock" do
21
+ assert_nil @config.lock.create
22
+ assert File.exists?("/tmp/cap.lock")
23
+ end
24
+
25
+ should "remove lock" do
26
+ assert_nil @config.lock.create
27
+ assert_nil @config.lock.release
28
+ assert !File.exists?("/tmp/cap.lock")
29
+ end
30
+
31
+ should "check for lock and pass" do
32
+ assert_nil @config.lock.release
33
+ assert_nil @config.lock.check
34
+ end
35
+
36
+ # FIXME: need to find a way to test 'abort'
37
+ should "check for lock and abort" do
38
+ assert_nil @config.lock.create
39
+ #assert_raises SystemExit, @config.lock.check
40
+ end
41
+
42
+ should "check if remote file exists" do
43
+ @config.set :lockfile, 'test.lock'
44
+ assert_nil @config.lock.create
45
+ assert @config.caplock.remote_file_exists?("/tmp/test.lock")
46
+ end
47
+ end
metadata ADDED
@@ -0,0 +1,103 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gnm-caplock
3
+ version: !ruby/object:Gem::Version
4
+ hash: 23
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 2
9
+ - 0
10
+ version: 0.2.0
11
+ platform: ruby
12
+ authors:
13
+ - Dru Ibarra
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2012-03-20 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: capistrano
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ hash: 43
29
+ segments:
30
+ - 2
31
+ - 9
32
+ - 0
33
+ version: 2.9.0
34
+ type: :runtime
35
+ version_requirements: *id001
36
+ - !ruby/object:Gem::Dependency
37
+ name: thoughtbot-shoulda
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ hash: 3
45
+ segments:
46
+ - 0
47
+ version: "0"
48
+ type: :development
49
+ version_requirements: *id002
50
+ description: Adds a lock file to Capistrano deployments to prevent concurrent deployments.
51
+ email: ConfigurationManagement@gorillanation.com
52
+ executables: []
53
+
54
+ extensions: []
55
+
56
+ extra_rdoc_files:
57
+ - LICENSE
58
+ - README.rdoc
59
+ files:
60
+ - .document
61
+ - LICENSE
62
+ - README.rdoc
63
+ - Rakefile
64
+ - VERSION
65
+ - gnm-caplock.gemspec
66
+ - lib/gnm-caplock.rb
67
+ - test/helper.rb
68
+ - test/test_caplock.rb
69
+ homepage: https://github.com/GorillaNation/gnm-caplock
70
+ licenses: []
71
+
72
+ post_install_message:
73
+ rdoc_options: []
74
+
75
+ require_paths:
76
+ - lib
77
+ required_ruby_version: !ruby/object:Gem::Requirement
78
+ none: false
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ hash: 3
83
+ segments:
84
+ - 0
85
+ version: "0"
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ none: false
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ hash: 3
92
+ segments:
93
+ - 0
94
+ version: "0"
95
+ requirements: []
96
+
97
+ rubyforge_project:
98
+ rubygems_version: 1.8.6
99
+ signing_key:
100
+ specification_version: 3
101
+ summary: Adds a lock file to Capistrano deployments
102
+ test_files: []
103
+