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 +4 -4
- data/.gitignore +3 -0
- data/CHANGELOG.md +3 -0
- data/README.md +5 -2
- data/capdrupal.gemspec +1 -1
- data/docs/maintainers.md +1 -0
- data/lib/capdrupal.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c44d744004a0b49a0e7034222558aba3899026837f5b1dfcf6e994f9262e08eb
|
|
4
|
+
data.tar.gz: 95957676e7e161041ed66fd5f56af9ce7aa071077f289e3a7864273996e5e4d7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73243af2f5674c4f7b9b9a4421e3f377222d00630f43586c6f4d9690e9175d645821af8caa9c94d9512fd2a7aa9fc318bf9b00c629046290a4cd1457b6d0d45c
|
|
7
|
+
data.tar.gz: '08f3121798682e048c27a75cb6f0242ebcd4d4516aeed292ccaa5f1a2612a636c501bd757984d82b18c7073c2af8c726d2712fbdf38003bfbaf61bf579db95a3'
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
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
|
+
[](https://badge.fury.io/rb/capdrupal)
|
|
6
|
+
[](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', '~>
|
|
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
|
|
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.
|
|
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
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.
|
|
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:
|
|
17
|
+
date: 2021-09-09 00:00:00.000000000 Z
|
|
18
18
|
dependencies:
|
|
19
19
|
- !ruby/object:Gem::Dependency
|
|
20
20
|
name: capistrano
|