dpl 1.9.1.travis.2611.5 → 1.9.1.travis.2615.5

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +8 -2
  3. data/lib/dpl/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 743ea6e88891fee0918a034b22c298c0c4b277fa61485f270a669b370365d3fa
4
- data.tar.gz: 6d0f0792cb5fadc5a2b3231133a8f4748c3b87124a9bf65cf8369eb3ebad7986
3
+ metadata.gz: 2525611ba1f6e3c98069d288fb6aecc11b300e2216ac8af1f3295194e9b6c9a2
4
+ data.tar.gz: 3ad1e3aa9f53f72d7e9f704bb03d550cca7197ba5b14798e9614615e9f7ec599
5
5
  SHA512:
6
- metadata.gz: e60a48a3b80bcf881ee87260bffcb56279d7bd67e8bc31e27b2e15e75f079019cde51633a04f2aecca375601835e12b37804f826053a557f67599abe8f0d84b1
7
- data.tar.gz: bcf4926dec7f8b315f7a98621846174d2ac45ae6debe99fdd8bc3011d5bd0d0c727d2fafb573398dbda4feb4e0b8f890940550fb752aca7d08115e23e9b1996d
6
+ metadata.gz: b2067707814bc04667839e44158080426e038dd74e5777c47d8af2719569fc165148cf11a22f89a5968e141face0b333911800c44cbc4bbd935faf51d7316a2b
7
+ data.tar.gz: d0f6bf340bd0933c872befbe5cc087f18f94098313d98b6385da8341ab3f10bc10d34642f46b72f66753dafd4dccac96a90a5b00f4cf51d768c4ea6b94809a76
data/.travis.yml CHANGED
@@ -55,7 +55,10 @@ script:
55
55
  echo -e "\n${ANSI_GREEN}${base}${ANSI_RESET}\n"
56
56
  echo -e "source 'https://rubygems.org'\ngemspec :name => \"dpl-${name}\"" > Gemfile-${name}
57
57
  export BUNDLE_GEMFILE=Gemfile-${name}
58
- bundle install --gemfile Gemfile-${name} --path=vendor/cache/dpl-${name} --binstubs=bin && ./bin/rspec spec/provider/${name}_spec.rb || (echo -e "${ANSI_RED}${name} specs failed${ANSI_RESET}" && let spec_errors=$spec_errors+1)
58
+ bundle install --gemfile Gemfile-${name} --path=vendor/cache/dpl-${name} --binstubs=bin && ./bin/rspec spec/provider/${name}_spec.rb
59
+ if [[ $? -ne 0 ]]; then
60
+ echo -e "${ANSI_RED}${name} specs failed${ANSI_RESET}" && let spec_errors=$spec_errors+1
61
+ fi
59
62
  done
60
63
  test $spec_errors -eq 0
61
64
  - echo -e "\n${ANSI_GREEN}Install gem and invoke dpl${ANSI_RESET}"
@@ -65,7 +68,10 @@ script:
65
68
  for f in dpl-*.gemspec; do
66
69
  base=${f%*.gemspec}; name=${base#dpl-*}
67
70
  echo -e "\n${ANSI_GREEN}${base}${ANSI_RESET}\n"
68
- gem build --silent $f && gem install --no-post-install-message dpl-${name}-*.gem && ( dpl --provider=${name} --no-deploy ) || (echo -e "${ANSI_RED}${name} invocation failed${ANSI_RESET}" && let no_err=$no_err+1)
71
+ gem build --silent $f && gem install --no-post-install-message dpl-${name}-*.gem && ( dpl --provider=${name} --no-deploy )
72
+ if [[ $? -ne 0 ]]; then
73
+ echo -e "${ANSI_RED}${name} invocation failed${ANSI_RESET}" && let no_err=$no_err+1
74
+ fi
69
75
  done
70
76
  test $no_err -eq 0
71
77
  # - bundle exec rake && gem build dpl.gemspec && gem install dpl-*.gem && dpl --provider=script --script='echo foo'
data/lib/dpl/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module DPL
2
- VERSION = '1.9.1.travis.2611.5'
2
+ VERSION = '1.9.1.travis.2615.5'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dpl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.1.travis.2611.5
4
+ version: 1.9.1.travis.2615.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Haase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-27 00:00:00.000000000 Z
11
+ date: 2018-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec