capistrano-unformatt 1.6 → 1.7

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
  SHA1:
3
- metadata.gz: 5202bff3be5601c4adbefe63f822118d36fe4487
4
- data.tar.gz: 41f6ab7d6abdd62a04d03112fc9846e11a6f2690
3
+ metadata.gz: cf31b4a87091f449025baac69f4dd2d4d839be96
4
+ data.tar.gz: fc06b239f0f5b4e8b3931ef2d921956cb901fea6
5
5
  SHA512:
6
- metadata.gz: 7bc83f3da390b43987c1ed07843e3f3804b04e7936b71d79bc8a851d1b69e46c5a616c5cb32b1ac6f23dbf058b9920010472cd0a4d3b140f2594d1d5ace95719
7
- data.tar.gz: 81f415e17d0c3de5351f7f380419b706c1dae16fc09698604756048918cba777a2dc2e4211d50681b6d2857ba1c741c1a77b15419c155457b45756a1dbdb46dc
6
+ metadata.gz: 36351bbe32175ba513da489554369ee55f5a8a463fccfae7cdf025d42c592831791def19826452135957dd5d71365617afe453a3e557b6dc6266e862594fc253
7
+ data.tar.gz: ef5b66af1ff32e77c62e649a0c6b90448e2f553e37591ef5e664521846cdc04ac82faba70af0f97d39d01bd169bff598555be40f7f4e0a08c000fa297fdbd0ef
data/CHANGELOG.md CHANGED
@@ -49,3 +49,7 @@
49
49
  ## v1.6
50
50
 
51
51
  * Added options on setup to skip some configurations
52
+
53
+ ## v1.7
54
+
55
+ * Fix on plural for config on setup variable
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "capistrano-unformatt"
7
- spec.version = '1.6'
7
+ spec.version = '1.7'
8
8
  spec.authors = ["unformatt"]
9
9
  spec.email = ["unformatt@gmail.com"]
10
10
  spec.description = "Custom recipes for Unformatt projects"
@@ -7,7 +7,7 @@ namespace :deploy do
7
7
  # yaml files
8
8
  execute "mkdir -p #{shared_path}/{config,tmp}"
9
9
 
10
- unless ENV['SKIP_YAML'] == 'true'
10
+ unless ENV['SKIP_YAMLS'] == 'true'
11
11
  fetch(:setup_yamls, []).each do |yaml|
12
12
  template "#{yaml}.yml.erb", "#{shared_path}/config/#{yaml}.yml"
13
13
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-unformatt
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.6'
4
+ version: '1.7'
5
5
  platform: ruby
6
6
  authors:
7
7
  - unformatt