ebm 0.0.17 → 0.0.18

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/lib/commands/commit.rb +1 -1
  3. data/lib/info.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- data.tar.gz: 72a6a8df2a47c113752bae24f81204061cc199af
4
- metadata.gz: 5da175684eb49bf3cf36acf77fa0862f3e6d634e
3
+ data.tar.gz: 054a43e27ff850ce50b8a6016e16c716c43c72df
4
+ metadata.gz: 725049dddcbcda6586530d30172bd63ddb40284c
5
5
  SHA512:
6
- data.tar.gz: 34809f027513421967f3cd4c3f15b64ce40450bdba487b1a46e5112e7149db14e1489973b04721fa2c14077e0788e6ff96aafec39a754d26acd37a828c0423f5
7
- metadata.gz: 0f0d2605a34c2218fe6a5f8173d9751b64e9aa30a463dc2654071bf2b2ce16cc82e3236115761fec287ef373c5b1cde67bbf16cdb330375300d0d45067f38f0a
6
+ data.tar.gz: c0f5c970fd31f843519d1f7e7c93ba7a0043ed0c10d470bdcace4c758e23862496e0211f912d94babb4aec8982a6ed6d4163b177ee64927d337327587ad26e08
7
+ metadata.gz: 54565013237ff4753b466adf7b47645fbc69b332eb3d6649593659396cce5718904b03bba06d71e44304ec6ac9f7fc1c3cfcce5bbc0e4f635f8810381e126880
@@ -75,7 +75,7 @@ module Commands
75
75
  if exit_code != 0
76
76
  line = msg.split("\n").last # last line
77
77
  # ugly hack to not show as error when nothing to commit
78
- if line != "nothing to commit (working directory clean)"
78
+ if line.include?("nothing to commit")
79
79
  raise "Git commit failed for #{repo_name}."
80
80
  end
81
81
  end
data/lib/info.rb CHANGED
@@ -7,6 +7,6 @@
7
7
  #
8
8
  class Info
9
9
  def self.version
10
- "0.0.17"
10
+ "0.0.18"
11
11
  end
12
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ebm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.17
4
+ version: 0.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Seitz