capsum 1.0.0.alpha2 → 1.0.0

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: 74da8e445fba62989f6994b4ea197629e62c1284
4
- data.tar.gz: ed982fe0747c02d5ec3bb3ebf5c50c95ee50a501
3
+ metadata.gz: 9d09e821480f7f9b5ffcf82f921efa2203413965
4
+ data.tar.gz: cde51a1f96345732f64130c113705c952e7aa4ad
5
5
  SHA512:
6
- metadata.gz: ce7ea0e80e5dc76e4e0eff1b07c9578b4965d860915ffbb843991bd437089da0c3fc07d5cdf5fba91318245c4bd56da82815439876687aa23da37abdc502a2a9
7
- data.tar.gz: b52e10c7c4b326c39ae0d815dd5742736400e299bcca62d889a6d4800e0ebb80894d8b958bd864f4139e5442c4fed4e0c3da67ed5079c4b424308a039a85eb44
6
+ metadata.gz: ecd63e8b409392f367bdbe616967ef378db68d82571a65e1845ed82e9ed2a0c4610425a89a9b29ae79739ca26ba1746a7a64eb76a5cab47ce17f439826ce7cc2
7
+ data.tar.gz: 730f24325dacd811277e9e6e4a6dd60aeea2704ec51dc564e6e1b3bad86689da137bca5449f182616e54858de03f599f8a9ba792e4cdb1e5f4fd3cd7c7e4d311
@@ -1,7 +1,9 @@
1
1
  ## TODO:
2
2
 
3
3
  ## v1.0:
4
- - upgrade capistrano to v3, v2 is not compatible
4
+ - upgrade capistrano to v3.2, v2 is not compatible
5
+ - monkey patch for sshkit to support non-ascii in command
6
+ - upgrade capistrano-sidekiq to 0.2.5
5
7
 
6
8
  ## v0.9:
7
9
  - use the official whenever recipe
@@ -19,10 +19,10 @@ Gem::Specification.new do |spec|
19
19
  spec.require_paths = ["lib"]
20
20
 
21
21
  # Dependency Gems
22
- spec.add_dependency "capistrano", "~> 3.1"
22
+ spec.add_dependency "capistrano", "~> 3.2.0"
23
23
  # spec.add_dependency "capistrano-rsync", "~> 1.0.2" # broken, wait update
24
24
  spec.add_dependency "capistrano-rails", "~> 1.1.1"
25
- spec.add_development_dependency "capistrano-sidekiq", "~> 0.1.3" # optional
25
+ spec.add_development_dependency "capistrano-sidekiq", Capsum::CAPISTRANO_SIDEKIQ_REQUIREMENT # optional
26
26
 
27
27
  # spec.add_dependency "capistrano-helpers", "~> 0.7.1"
28
28
  # spec.add_dependency "cap-recipes", "~> 0.3.36"
@@ -60,14 +60,35 @@ namespace :rsync do
60
60
  end
61
61
 
62
62
  task :create_stage do
63
- next if File.directory?(fetch(:rsync_stage))
63
+ repo_url = fetch(:repo_url, ".")
64
+ deploy_cache_dir = fetch(:rsync_stage)
65
+ if File.directory?(deploy_cache_dir)
66
+ repo_url_changed = false
67
+ Dir.chdir deploy_cache_dir do
68
+ absolute_repo_url = File.absolute_path(repo_url)
69
+ absolute_cache_repo_url = File.absolute_path(`git config --get remote.origin.url`.chomp)
70
+ repo_url_changed = (absolute_repo_url != absolute_cache_repo_url)
71
+ end
72
+
73
+ if repo_url_changed
74
+ run_locally { execute :rm, "-rf", deploy_cache_dir }
75
+ else
76
+ next
77
+ end
78
+ end
64
79
 
65
80
  clone = %W[git clone]
66
- clone << fetch(:repo_url, ".")
67
- clone << fetch(:rsync_stage)
81
+ clone << repo_url
82
+ clone << deploy_cache_dir
68
83
  run_locally { execute *clone }
69
84
  end
70
85
 
86
+ task :set_current_revision do
87
+ Dir.chdir fetch(:rsync_stage) do
88
+ set :current_revision, "#{`git rev-parse --short HEAD`}".chomp
89
+ end
90
+ end
91
+
71
92
  desc "Stage the repository in a local directory."
72
93
  task :stage => %w[create_stage] do
73
94
  Dir.chdir fetch(:rsync_stage) do
@@ -76,9 +97,6 @@ namespace :rsync do
76
97
 
77
98
  checkout = %W[git reset --hard origin/#{fetch(:branch)}]
78
99
  run_locally { execute *checkout }
79
-
80
- # PATCH https://github.com/moll/capistrano-rsync/pull/8
81
- set :current_revision, "#{`git rev-parse --short HEAD`}".chomp
82
100
  end
83
101
  end
84
102
 
@@ -1,4 +1,5 @@
1
1
  require "capsum/version"
2
+ require "capsum/patch_sshkit_force_encoding_to_utf8"
2
3
 
3
4
  module Capsum
4
- end
5
+ end
@@ -0,0 +1,11 @@
1
+ require "sshkit"
2
+
3
+ module SSHKit
4
+ class Command
5
+ alias_method :to_command_without_utf8, :to_command
6
+
7
+ def to_command
8
+ to_command_without_utf8.force_encoding('ASCII-8BIT')
9
+ end
10
+ end
11
+ end
@@ -3,6 +3,10 @@ require "capsum/daemons"
3
3
 
4
4
  begin
5
5
  require 'capistrano/sidekiq'
6
+ unless Gem::Requirement.new(Capsum::CAPISTRANO_SIDEKIQ_REQUIREMENT) =~ Gem.loaded_specs["capistrano-sidekiq"].version
7
+ puts "ERROR: Could not find gem 'capistrano-sidekiq (#{Capsum::CAPISTRANO_SIDEKIQ_REQUIREMENT}) ruby' in the gems available on this machine."
8
+ exit 1
9
+ end
6
10
  rescue LoadError
7
11
  puts 'ERROR: If you want to use the "capsum/sidekiq". you must to add [ gem "capistrano-sidekiq", require: false ] to your Gemfile.'
8
12
  exit 1
@@ -1,3 +1,4 @@
1
1
  module Capsum
2
- VERSION = "1.0.0.alpha2"
2
+ VERSION = "1.0.0"
3
+ CAPISTRANO_SIDEKIQ_REQUIREMENT = "~> 0.2.5"
3
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capsum
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.alpha2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - sunteya
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-03 00:00:00.000000000 Z
11
+ date: 2014-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.1'
19
+ version: 3.2.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '3.1'
26
+ version: 3.2.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: capistrano-rails
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 0.1.3
47
+ version: 0.2.5
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 0.1.3
54
+ version: 0.2.5
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rake
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -103,6 +103,7 @@ files:
103
103
  - lib/capsum/foundation.rb
104
104
  - lib/capsum/git.rb
105
105
  - lib/capsum/passenger.rb
106
+ - lib/capsum/patch_sshkit_force_encoding_to_utf8.rb
106
107
  - lib/capsum/shared.rb
107
108
  - lib/capsum/sidekiq.rb
108
109
  - lib/capsum/typical.rb
@@ -123,9 +124,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
123
124
  version: '0'
124
125
  required_rubygems_version: !ruby/object:Gem::Requirement
125
126
  requirements:
126
- - - ">"
127
+ - - ">="
127
128
  - !ruby/object:Gem::Version
128
- version: 1.3.1
129
+ version: '0'
129
130
  requirements: []
130
131
  rubyforge_project:
131
132
  rubygems_version: 2.2.0