capistrano-wearerequired 0.4.0.pre.alpha.1 → 0.4.0.pre.alpha.2

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: adb958823033cdad89185e1e4f792d1394cc20ac
4
- data.tar.gz: 98d296cd260b8fcaa481c601e10121585bd8a4b4
3
+ metadata.gz: 9ec6fb868c17d283f0aff1f2b551772ff99be968
4
+ data.tar.gz: 82a3fbb770cb52692885cd56ba8ee3031f5504f0
5
5
  SHA512:
6
- metadata.gz: f8204a6e9ca09e113d190facd6c4284b110216b6c774ef1de1adffb590a977e53c45b857103b1ad1d85abaad1d9d909784cf658b8537596a3c89df3f88cbfdb7
7
- data.tar.gz: 29c09d97ac04c65d59f27a41fd41355eb14491200044f5dd7d7914c25da5c6992f1ac174672216ba0fa6a4198584dbfafc7d34880f6dc2e5093b3ab26b051d65
6
+ metadata.gz: 3733a07b05f5419cfaab44cf37e7a52b9d22e4f77ca386a34070713da7aa4ae27c9d7659a0e0bf49675547b4d0178b7064162097fea88d1406abdaeddc4ab435
7
+ data.tar.gz: c4c425d4f90b4c1b67548392fd8a17b6b13d6fdf617b73006114305daa1f2d9ffe11dd77f33d92104fa3b38382a7427892b51b83f63d4fa37e686d981ae99181
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # Capistrano::RequiredTools
1
+ # Capistrano::Wearerequired
2
2
 
3
- A collection of tools for Capistrano.
3
+ Capistrano::Wearerequired is a collection of recipes and tasks specialized on WordPress deployment.
4
4
 
5
5
 
6
6
  ## Installation
@@ -8,11 +8,9 @@ A collection of tools for Capistrano.
8
8
  1. Add this line to your application's Gemfile to install the latest stable version:
9
9
 
10
10
  ```ruby
11
- gem 'capistrano-required_tools', :git => 'git@github.com:wearerequired/capistrano-required_tools.git', :branch => 'stable'
11
+ gem 'capistrano-wearerequired', '~> 0.4'
12
12
  ```
13
13
 
14
- Use `:tag => 'v0.3.0'` for a specific version.
15
-
16
14
  2. Execute:
17
15
 
18
16
  ```
@@ -22,7 +20,7 @@ A collection of tools for Capistrano.
22
20
  3. Require the library in your application's Capfile:
23
21
 
24
22
  ```ruby
25
- require 'capistrano/required_tools'
23
+ require 'capistrano/wearerequired'
26
24
  ```
27
25
 
28
26
 
@@ -35,7 +33,7 @@ The class `SlackistranoMessagingColors` adds colors to the deploy messages poste
35
33
  Example:
36
34
  ```ruby
37
35
  set :slackistrano, {
38
- klass: Capistrano::RequiredTools::SlackistranoMessagingColors,
36
+ klass: Capistrano::Wearerequired::SlackistranoMessagingColors,
39
37
  channel: '#your-channel',
40
38
  webhook: 'your-incoming-webhook-url'
41
39
  }
@@ -48,7 +46,7 @@ The class `SlackistranoMessagingExtended` adds colors, a link to the current dif
48
46
  Example:
49
47
  ```ruby
50
48
  set :slackistrano, {
51
- klass: Capistrano::RequiredTools::SlackistranoMessagingExtended,
49
+ klass: Capistrano::Wearerequired::SlackistranoMessagingExtended,
52
50
  channel: '#your-channel',
53
51
  webhook: 'your-incoming-webhook-url',
54
52
  icon_emoji: ':ship:',
@@ -101,6 +99,7 @@ cap staging wordpress:clear_opcache
101
99
 
102
100
  ### 0.4.0
103
101
 
102
+ * Renamed to `Capistrano::Wearerequired`.
104
103
  * Added `wordpress:clear_opcache` task.
105
104
  * Added new messaging class for Slackistrano for more informative notifications.
106
105
  * Updated both messaging classes to support a custom icon (via `icon_url` or `icon_emoji`) and bot name (via `username`).
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Wearerequired
3
- VERSION = "0.4.0-alpha.1"
3
+ VERSION = "0.4.0-alpha.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-wearerequired
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0.pre.alpha.1
4
+ version: 0.4.0.pre.alpha.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - wearerequired