capdrupal 0.10.0 → 0.11.0

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: 2473c00739299636685fdf30bb850053de863be0
4
- data.tar.gz: c610c19cc38b01f01814bd485527d7c636c02554
3
+ metadata.gz: 3e794a795d28af4e28422eb0890d8d243a8b7df0
4
+ data.tar.gz: ca0502a0ee08ace457afd6c5ad2cd5865941c099
5
5
  SHA512:
6
- metadata.gz: 32df96a6ee3ebedf0c577a4dd5bbfef7173c117129ded83932e4f4f91cfc01f21c70387fbea6976525316edaa33ad86df600f03a4984fa132369d1019e32529f
7
- data.tar.gz: 8008cf06155af8497cf402d6589a1c0c65aa82446f4b416581ff2fe617bbb3625e9536728d6bcfb62de719bd2a37c76aed4e6105031096f25d24146932fa9566
6
+ metadata.gz: 9f06a6a247e8f99fc65d2d53a1f6ace347a7e584771ec6048b7527af865dd22003c75493615779d218c316dfebb0cf8087be3704e33f74dd508b84538091b922
7
+ data.tar.gz: 5900170d5b752c3fd3734902712e687ac8b3c7b01b57361ab1bb9011963bd37409629b4993588d8190d387bcfc7c76968b0b283dc010a2ccc9d848ede83aa032
@@ -1,3 +1,6 @@
1
+ **Capdrupal is deprecated in favor of https://github.com/capistrano/drupal-deploy**
2
+
3
+
1
4
  # Capdrupal
2
5
 
3
6
  This gem provides a number of tasks which are useful for deploying Drupal projects with [Capistrano](https://github.com/capistrano/capistrano).
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.10.0
1
+ 0.11.0
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'capdrupal'
5
- s.version = '0.10.0'
5
+ s.version = '0.11.0'
6
6
  s.license = 'MIT'
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.description = <<-DESC
@@ -183,7 +183,7 @@ Capistrano::Configuration.instance(:must_exist).load do
183
183
  namespace :drush do
184
184
  desc "Gets drush and installs it"
185
185
  task :get, :roles => :app, :except => { :no_release => true } do
186
- run "#{try_sudo} cd #{shared_path} && curl -O -s http://ftp.drupal.org/files/projects/drush-7.x-5.8.tar.gz && tar -xf drush-7.x-5.8.tar.gz && rm drush-7.x-5.8.tar.gz"
186
+ run "#{try_sudo} cd #{shared_path} && curl -LO -s https://ftp.drupal.org/files/projects/drush-7.x-5.8.tar.gz && tar -xf drush-7.x-5.8.tar.gz && rm drush-7.x-5.8.tar.gz"
187
187
  run "#{try_sudo} cd #{shared_path} && chmod u+x drush/drush"
188
188
  end
189
189
 
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: 0.10.0
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Perdrisat
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2015-04-24 00:00:00.000000000 Z
14
+ date: 2016-01-21 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: capistrano
@@ -85,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
85
  version: '0'
86
86
  requirements: []
87
87
  rubyforge_project:
88
- rubygems_version: 2.2.2
88
+ rubygems_version: 2.4.5.1
89
89
  signing_key:
90
90
  specification_version: 4
91
91
  summary: A set of tasks for deploying Drupal projects with Capistrano