capistrano-didi 0.4.12 → 0.4.13

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: 2cc823ca1111cbb50e29452e1e1aacad82a431ad
4
- data.tar.gz: 54bb936e4924b639284c679ddef7d4c35e5d418a
3
+ metadata.gz: 1af7d80dbdd3ad88bd7279907461c6bd3661ea4f
4
+ data.tar.gz: 5b965acbd72318d9846bd3510724a0dd0f0ee326
5
5
  SHA512:
6
- metadata.gz: 081ae1ca0cf90dffaf9a3c656ead290f83cafedb3f525224ce33a3125efe362e1b1a129e8b58fae7d33b8b1a6e6896877d9ee284c012b7be1ccf43e915d27c4b
7
- data.tar.gz: 0af2db40303aa683f9b64e6701405fe3c9145a5deea8f0b15cf8c14193d46eb286849c2e73f347490c1c1a7fe6f5554eab18369e543b508ab8f117e17a36ffd3
6
+ metadata.gz: fe52291dd7bd6a2d2ada278b9af5a4ec950d9ba0830df80af400ece81b3702b37a19dc5dd372084824de6f26437e86bee942cc292ee1008dce1717a2eb0e1bd5
7
+ data.tar.gz: e82e8b6d014724ff32e7597c710af601f588f4ed5e7a6c0b5c2545b06b4cc27c9ee0cbc9556a6312f1dcff152a2820f1357d2f8885ae36e849e3b279f07c843a
data/CHANGELOG.txt CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.4.13 / 22 December 2014
2
+
3
+ * PE-75: handle theme paths better
4
+
1
5
  ## 0.4.12 / 22 December 2014
2
6
 
3
7
  * PE-75: use local copy when cloning repositories
data/bin/didify CHANGED
@@ -53,6 +53,7 @@ set :profile, "PROJECT_NAME_kickstart"
53
53
  set :domain, "PROJECT_NAME"
54
54
  set :sitemail, "support@crosscheck.be"
55
55
  set :adminpass, "drupal_admin_pass"
56
+ set :theme_path, "#{drupal_path}/sites/PROJECT_NAME/themes/custom/#{theme}"
56
57
 
57
58
  # Compile .sass files to .css
58
59
  before "deploy:create_symlink", "grunt"
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "capistrano-didi"
8
- s.version = "0.4.12"
8
+ s.version = "0.4.13"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["CrossCheck"]
12
- s.date = "2014-11-28"
12
+ s.date = "2014-12-22"
13
13
  s.description = "didi is a collection of recipes for capistrano that allow drupal to be deployed, tested and used in a CI environment"
14
14
  s.email = "support@crosscheck.be"
15
15
  s.executables = ["didi", "didify"]
@@ -18,10 +18,6 @@ Capistrano::Configuration.instance.load do
18
18
  _cset(:adminpass) { abort "Please specify the Drupal admin password (:adminpass)." }
19
19
  _cset(:baseline) { abort "Please specify the Baseline feature (:baseline)." }
20
20
 
21
- # Added by KimKennof.
22
- _cset(:theme) { abort "Please specify the theme name (:theme)." }
23
- _cset(:theme_path) { abort "Please specify the theme name (:theme_path)." }
24
-
25
21
  # =========================================================================
26
22
  # These variables may be set in the client capfile if their default values
27
23
  # are not sufficient.
@@ -51,6 +47,9 @@ Capistrano::Configuration.instance.load do
51
47
  set :copy_cache, "#{copy_dir}/#{stage}"
52
48
  set :assets_path, 'assets'
53
49
 
50
+ set :theme, ''
51
+ set :theme_path, ''
52
+
54
53
  ssh_options[:forward_agent] = true
55
54
  #ssh_options[:verbose] = :debug #FIXME
56
55
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-didi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.12
4
+ version: 0.4.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - CrossCheck
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-28 00:00:00.000000000 Z
11
+ date: 2014-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railsless-deploy