capistrano-fiftyfive 0.15.1 → 0.15.2

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: 6a5ae051e26b06888ee0aadeb4c4cec5822ac005
4
- data.tar.gz: 22c736e62a664816840cc3e32f07f7906cd5f9f2
3
+ metadata.gz: 3ed9fece906727e319ca2ba1f1c323656311beaf
4
+ data.tar.gz: 062dca1468dfd16c7bdd51614509eb6b8e229cf2
5
5
  SHA512:
6
- metadata.gz: b913e25b7846029de78776c383706721f29de1f0c8971a7e42d08602c64410d0093adbdec4f7c20da883791a8ca6393e3658cdd9d75cdc8427c56b37fdb92ec8
7
- data.tar.gz: 0b6888ef7ce61fc22a19f8892f2e872c6181271e1f40869eaba9edad8d9556eac62230d2025808a5dcf10b1d242149de7e003df64f083efe7a18fd9e7af4cb5a
6
+ metadata.gz: 43414f1de4670b65b20dfb6c9302622c6bff58b7b9d2c99bc96338f6bbd234e2c87d00ca3f3b36e7ca092f85cafc2e02ba4bf4f03a1b0150b245ef4201673d52
7
+ data.tar.gz: 2252c5459ea41cd548e7bbe219dd5ba9b1bc61847ab15ec712b9ffdc892f501bb50cef01b7b3d50b013bf279fc7ed204d1b04cbc429519a74eb8f79f841ff196
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # capistrano-fiftyfive Changelog
2
2
 
3
+ ## `0.15.2`
4
+
5
+ * The capistrano-fiftyfive GitHub repository has changed: it is now <https://github.com/mattbrictson/capistrano-fiftyfive>.
6
+
3
7
  ## `0.15.1`
4
8
 
5
9
  * Remove `-j4` bundler flag
@@ -11,7 +15,7 @@
11
15
 
12
16
  ## `0.14.0`
13
17
 
14
- * The `highline` gem is now a dependency ([#3](https://github.com/55minutes/capistrano-fiftyfive/pull/3) from [@ahmozkya](https://github.com/ahmozkya)).
18
+ * The `highline` gem is now a dependency ([#3](https://github.com/mattbrictson/capistrano-fiftyfive/pull/3) from [@ahmozkya](https://github.com/ahmozkya)).
15
19
  * Dotenv: only mask input when prompting for keys containing the words "key", "secret", "token", or "password". Input for other keys is echoed for easier data entry.
16
20
  * Dotenv: update `.env` files in sequence rather than in parallel, to avoid parallel command output clobbering the input prompt.
17
21
  * Nginx/unicorn: tweak reverse-proxy cache settings to prevent cache stampede.
data/README.md CHANGED
@@ -17,7 +17,7 @@ The capistrano-fiftyfive gem adds a `cap <stage> provision` task to Capistrano t
17
17
  * Install `rbenv` and use `ruby-build` to compile the version of Ruby required by your app (by inspecting your `.ruby-version` file)
18
18
  * And more!
19
19
 
20
- The gem is named "capistrano-fiftyfive" because it is built first and foremost for serving our deployment needs here at [55 Minutes](http://55minutes.com). You'll notice that capistrano-fiftyfive is opinionated and strictly uses the following stack:
20
+ The gem is named "capistrano-fiftyfive" for historical reasons: it was initially built by [55 Minutes](http://55minutes.com) to automate deployments of its Rails projects. You'll notice that capistrano-fiftyfive is opinionated and strictly uses the following stack:
21
21
 
22
22
  * Ubuntu 12.04 LTS or 14.04 LTS
23
23
  * PostgreSQL
@@ -164,4 +164,4 @@ can run these tasks just like any other capistrano task, like so:
164
164
  [cast337]:http://railscasts.com/episodes/337-capistrano-recipes
165
165
  [cast373]:http://railscasts.com/episodes/373-zero-downtime-deployment
166
166
  [defaults.rake]:lib/capistrano/tasks/defaults.rake
167
- [rails-starter]:https://github.com/55minutes/rails-starter/tree/master/config
167
+ [rails-starter]:https://github.com/mattbrictson/rails-starter/tree/master/config
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
13
13
  "our Rails deployments. These are tailored for Ubuntu 12.04 LTS, "\
14
14
  "PostgreSQL, Nginx, Unicorn, rbenv, and Rails 3/4."
15
15
  spec.summary = %q{Additional Capistrano recipes from 55 Minutes}
16
- spec.homepage = "https://github.com/55minutes/capistrano-fiftyfive"
16
+ spec.homepage = "https://github.com/mattbrictson/capistrano-fiftyfive"
17
17
  spec.license = "MIT"
18
18
 
19
19
  spec.files = `git ls-files`.split($/)
@@ -5,7 +5,7 @@ unless defined?(Capistrano) && defined?(:namespace)
5
5
  "WARNING: capistrano/fiftyfive must be loaded by Capistrano in order "\
6
6
  "to work.\nRequire this gem by using Capistrano's Capfile, "\
7
7
  "as described here:\n"\
8
- "https://github.com/55minutes/capistrano-fiftyfive#installation"\
8
+ "https://github.com/mattbrictson/capistrano-fiftyfive#installation"\
9
9
  .colorize(:red)
10
10
  end
11
11
 
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Fiftyfive
3
- VERSION = "0.15.1"
3
+ VERSION = "0.15.2"
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.15.1
4
+ version: 0.15.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-17 00:00:00.000000000 Z
11
+ date: 2014-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -153,7 +153,7 @@ files:
153
153
  - lib/capistrano/tasks/user.rake
154
154
  - lib/capistrano/tasks/version.rake
155
155
  - lib/sshkit/formatter/abbreviated.rb
156
- homepage: https://github.com/55minutes/capistrano-fiftyfive
156
+ homepage: https://github.com/mattbrictson/capistrano-fiftyfive
157
157
  licenses:
158
158
  - MIT
159
159
  metadata: {}