capdrupal 3.0.0 → 3.0.1

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
  SHA256:
3
- metadata.gz: '042712619fa7d2d53940074bc660a4d7694d5fe35cbb1485a4cfddee98985ba9'
4
- data.tar.gz: 36af6488a30d9d1614148a2db60ed2b3af2db7b1eb508d09b9d405fa86c8ba30
3
+ metadata.gz: c44d744004a0b49a0e7034222558aba3899026837f5b1dfcf6e994f9262e08eb
4
+ data.tar.gz: 95957676e7e161041ed66fd5f56af9ce7aa071077f289e3a7864273996e5e4d7
5
5
  SHA512:
6
- metadata.gz: 36b40858994b05c1a630a6eb6395e238b0ab714a642e7e4f569ddf5792e7629d89b855d13606523f435628e2ca0c97c47be8b0e14eb59070cd732ab32689684c
7
- data.tar.gz: a3bd3657a97322ed2e235db1b6aed11efb573e6a396352e53ecb24a8350c2bc9c0cef94af2faee177283ba791f23f3f8a80bab4f8b98011eab50262fb684fff1
6
+ metadata.gz: 73243af2f5674c4f7b9b9a4421e3f377222d00630f43586c6f4d9690e9175d645821af8caa9c94d9512fd2a7aa9fc318bf9b00c629046290a4cd1457b6d0d45c
7
+ data.tar.gz: '08f3121798682e048c27a75cb6f0242ebcd4d4516aeed292ccaa5f1a2612a636c501bd757984d82b18c7073c2af8c726d2712fbdf38003bfbaf61bf579db95a3'
data/.gitignore CHANGED
@@ -17,3 +17,6 @@ Gemfile.lock
17
17
  .DS_Store
18
18
  .AppleDouble
19
19
  .LSOverride
20
+
21
+ ## Generated gem by gem build capdrupal.gemspec
22
+ capdrupal-*.gem
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Capdrupal Changelog
2
2
 
3
+ ## 3.0.1 (2020-08-07)
4
+ - Update the command `drupal:cache:clear` to be re-runnable after invoke
5
+
3
6
  ## 3.0.0 (2020-08-07)
4
7
  - Support for Drupal 8 & Drupal 9
5
8
  - Complete code refactoring
data/README.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  This gem provides a number of tasks which are useful for deploying & managing Drupal projects with [Capistrano](https://github.com/capistrano/capistrano).
4
4
 
5
+ [![Gem Version](https://badge.fury.io/rb/capdrupal.svg)](https://badge.fury.io/rb/capdrupal)
6
+ [![Maintainability](https://api.codeclimate.com/v1/badges/e5db5a7f49d86ce5e418/maintainability)](https://codeclimate.com/github/antistatique/capdrupal/maintainability)
7
+
5
8
  # Capdrupal version
6
9
 
7
10
  Capdrupal Gem Version | Branch | Capistrano Version | Drupal Version
@@ -22,7 +25,7 @@ You may add Drush as a dependency using `composer require drush/drush` in your D
22
25
  Add this line to your application's Gemfile:
23
26
 
24
27
  ```ruby
25
- gem 'capdrupal', '~>8.0'
28
+ gem 'capdrupal', '~>3.0'
26
29
  ```
27
30
 
28
31
  And then execute:
@@ -75,7 +78,7 @@ require 'capistrano/deploy'
75
78
  require 'capistrano/composer'
76
79
 
77
80
  # Drupal Tasks.
78
- require 'capdrupal/capistrano'
81
+ require 'capdrupal'
79
82
 
80
83
  # Load custom tasks from `lib/capistrano/tasks` if you have any defined.
81
84
  Dir.glob('config/capistrano/tasks/*.rake').each { |r| import r }
data/capdrupal.gemspec CHANGED
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  Gem::Specification.new do |spec|
5
5
  spec.name = 'capdrupal'
6
- spec.version = '3.0.0'
6
+ spec.version = '3.0.1'
7
7
  spec.authors = ['Kevin Wenger', 'Yann Lugrin', 'Gilles Doge', 'Toni Fisler', 'Simon Perdrisat', 'Robert Wohleb', 'Kim Pepper']
8
8
  spec.email = ['hello@antistatique.net']
9
9
 
data/docs/maintainers.md CHANGED
@@ -9,6 +9,7 @@ Checklist for making a release:
9
9
 
10
10
  - Write changelog
11
11
  - Update version number in `capdrupal.gemspec`
12
+ - Commit those 2 changes and create a new tag with the version number
12
13
  - Make a [new release with GitHub](https://github.com/antistatique/capdrupal/releases/new)
13
14
  - Build the gem with `gem build capdrupal.gemspec`
14
15
  - Push the gem to rubygems.org: `gem push capdrupal-X.X.X.gem`
data/lib/capdrupal.rb CHANGED
@@ -110,6 +110,7 @@ namespace :drupal do
110
110
  execute :drush, 'cr'
111
111
  end
112
112
  end
113
+ Rake::Task['drupal:cache:clear'].reenable
113
114
  end
114
115
  end
115
116
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capdrupal
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Wenger
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2020-08-07 00:00:00.000000000 Z
17
+ date: 2021-09-09 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: capistrano