cartage 1.1 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/History.rdoc +6 -0
  3. data/lib/cartage.rb +5 -3
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 76442e63f895e68ab77395c7070db5a050609eaa
4
- data.tar.gz: 90a158c13769878cf94f637d2c3757008e7e54ba
3
+ metadata.gz: 99332cf5cb65d7eb8d988bc108291b5288baada2
4
+ data.tar.gz: 57d806536f14221e8f14bff191e29e0488afd424
5
5
  SHA512:
6
- metadata.gz: bd325df936363b4df3016284b183af381f0a3ca7af67fdb84df0a6611803b90f21cddc2a324dc5a46ac48e42364c5b748ad3931f56d6804725011462a5e84770
7
- data.tar.gz: 6d454884b43b7d55a4f0e5141ab26d15f98b442963045cdb2691fbb5baadb8b7d2555e0db006b59a40ad33d158eb5ad8fdbc39aa0efa816ae51f56c6e16ec521
6
+ metadata.gz: 5f3443bcedfba9b6701b05e58bd1d10a91dae15b13bca04da0d2317e3f75a75955b5550cd24ff52025111c4ba9a07592e8b6a6c76d70b76aabe80fdbdc769a1b
7
+ data.tar.gz: 43e8e01befc62e066107f2371369724df69cfd44418d84b014ee69768b784090aa78d72f558876fd6e8958151ee68f41d770cacbe2872433e21719cdc7db59ce
@@ -1,3 +1,9 @@
1
+ === 1.1.1 / 2015-03-26
2
+
3
+ * 1 minor bugfix
4
+
5
+ * Fixed a Ruby syntax issue with Ruby 2.0.
6
+
1
7
  === 1.1 / 2015-03-26
2
8
 
3
9
  * 1 major enhancement
@@ -2,7 +2,7 @@ require 'pathname'
2
2
 
3
3
  # Cartage, a package builder.
4
4
  class Cartage
5
- VERSION = '1.1' #:nodoc:
5
+ VERSION = '1.1.1' #:nodoc:
6
6
 
7
7
  # Plug-in commands that want to return a specific exit code should use
8
8
  # Cartage::StatusError to wrap the error.
@@ -513,10 +513,12 @@ configuration file.
513
513
  end
514
514
  end
515
515
 
516
- def show_message_for(exception, for_cartage:)
516
+ def show_message_for(exception, for_cartage: nil)
517
517
  unless exception.kind_of?(Cartage::QuietError)
518
518
  $stderr.puts "Error:\n " + exception.message
519
- $stderr.puts exception.backtrace.join("\n") if for_cartage.verbose
519
+ if for_cartage && for_cartage.verbose
520
+ $stderr.puts exception.backtrace.join("\n")
521
+ end
520
522
  end
521
523
  end
522
524
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cartage
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.1'
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Austin Ziegler