capistrano-fiftyfive 0.20.1 → 0.21.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9245565a98882777d558beb20a89e5c5cc0e1d79
4
- data.tar.gz: e25593fe4e0ce426ae0db43c133ea32614ef1b68
3
+ metadata.gz: 1f10ab316f6bf612f32458b86fbbef04c79d3197
4
+ data.tar.gz: 5b1b1e546e0aecae13d1a31983caf94730be7147
5
5
  SHA512:
6
- metadata.gz: 44892defb02628eb63ed9955759f316ff4efa7884a6869dacc9ff8b2fe1a3d1eb07fba36b7ea59f1a61484c66eaa4ff0ad0ee8355e219f6db2b624a9a7494d59
7
- data.tar.gz: 7e8ed26c9eabafd9c665e4694c4f60d26d315a1bbec457557c05cb8220f2b38a4a832008eacc7628e4e9ba735fe144a185ce307121aa7650290a3be06659368b
6
+ metadata.gz: 786db15094009e2a6c675739a9888029e7802024d37ec388e92209bb164636344cb9db5780f19c9063380f761d6e8b4efd33e218369e39dbd98bc548c8e723f0
7
+ data.tar.gz: 3c1e6addead7505bffd53c03fb36fdadbd9b0a0cb3c526575aa70d084c81a71aa1bbb5a70ca186d1d865f9b5cde0108dbfe30eb9e839a664f4257172d5b1f384
@@ -2,6 +2,10 @@
2
2
 
3
3
  * Your contribution here!
4
4
 
5
+ ## 0.21.0 (2015-06-22)
6
+
7
+ * Add a post-install message explaining the rename of `capistrano-fiftyfive` to `capistrano-mb`.
8
+
5
9
  ## 0.20.1 (2015-05-29)
6
10
 
7
11
  * An internal change in Capistrano 3.4.0 caused `fiftyfive:aptitude:install` to fail to install packages. This is now fixed.
data/Rakefile CHANGED
@@ -1 +1,5 @@
1
1
  require "bundler/gem_tasks"
2
+ require "chandler/tasks"
3
+
4
+ # Add chandler as a prerequisite for `rake release`
5
+ task "release:rubygem_push" => "chandler:push"
@@ -8,14 +8,13 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Capistrano::Fiftyfive::VERSION
9
9
  spec.author = "Matt Brictson"
10
10
  spec.email = "matt@mattbrictson.com"
11
- spec.description = \
12
- "Production-ready provisioning and deployment recipes for the full "\
13
- "Rails 4 stack. Installs and configures Ruby, Nginx, Unicorn, "\
14
- "PostgreSQL, dotenv, and more onto Ubuntu 14.04 LTS using Capistrano."
15
- spec.summary = "Additional Capistrano 3 recipes"
16
- spec.homepage = "https://github.com/mattbrictson/capistrano-fiftyfive"
11
+ spec.summary = "This gem has been renamed to capistrano-mb"
12
+ spec.homepage = "https://github.com/mattbrictson/capistrano-mb"
17
13
  spec.license = "MIT"
18
14
 
15
+ spec.post_install_message = "capistrano-fiftyfive has been renamed to "\
16
+ "capistrano-mb. Please update your Gemfile."
17
+
19
18
  spec.files = `git ls-files`.split($/)
20
19
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
21
20
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
@@ -25,5 +24,6 @@ Gem::Specification.new do |spec|
25
24
  spec.add_dependency "sshkit", ">= 1.6.1"
26
25
 
27
26
  spec.add_development_dependency "bundler", "~> 1.3"
27
+ spec.add_development_dependency "chandler"
28
28
  spec.add_development_dependency "rake"
29
29
  end
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Fiftyfive
3
- VERSION = "0.20.1"
3
+ VERSION = "0.21.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-fiftyfive
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.1
4
+ version: 0.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-30 00:00:00.000000000 Z
11
+ date: 2015-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '1.3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: chandler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: rake
57
71
  requirement: !ruby/object:Gem::Requirement
@@ -66,9 +80,7 @@ dependencies:
66
80
  - - ">="
67
81
  - !ruby/object:Gem::Version
68
82
  version: '0'
69
- description: Production-ready provisioning and deployment recipes for the full Rails
70
- 4 stack. Installs and configures Ruby, Nginx, Unicorn, PostgreSQL, dotenv, and more
71
- onto Ubuntu 14.04 LTS using Capistrano.
83
+ description:
72
84
  email: matt@mattbrictson.com
73
85
  executables: []
74
86
  extensions: []
@@ -121,11 +133,12 @@ files:
121
133
  - lib/capistrano/tasks/unicorn.rake
122
134
  - lib/capistrano/tasks/user.rake
123
135
  - lib/capistrano/tasks/version.rake
124
- homepage: https://github.com/mattbrictson/capistrano-fiftyfive
136
+ homepage: https://github.com/mattbrictson/capistrano-mb
125
137
  licenses:
126
138
  - MIT
127
139
  metadata: {}
128
- post_install_message:
140
+ post_install_message: capistrano-fiftyfive has been renamed to capistrano-mb. Please
141
+ update your Gemfile.
129
142
  rdoc_options: []
130
143
  require_paths:
131
144
  - lib
@@ -141,8 +154,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
141
154
  version: '0'
142
155
  requirements: []
143
156
  rubyforge_project:
144
- rubygems_version: 2.4.7
157
+ rubygems_version: 2.4.8
145
158
  signing_key:
146
159
  specification_version: 4
147
- summary: Additional Capistrano 3 recipes
160
+ summary: This gem has been renamed to capistrano-mb
148
161
  test_files: []