trollolo 0.1.0 → 0.1.1

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: fbbc51baa3b518ce1f41bf52c96bd713ad0d6803
4
- data.tar.gz: d9c196184db4a2428228bc4ed4a3c03db721f468
3
+ metadata.gz: 8cabe923d7b745f1b1b827dcb3c4a871e2e40bf8
4
+ data.tar.gz: 074943b15590c60c655fc33802925b22b1af30ac
5
5
  SHA512:
6
- metadata.gz: 81f6e72d327accdbfd42bd8d1d2c4716ef7423d99a2e022a3fa0f22f995f7ab22ab839b6b2d69c5f552921df317d13461a3e82b0188d8792edd4258cceb591f4
7
- data.tar.gz: 219765edd591158ced4a01393dfb4ee8013f6226e349ac5e81077a27778fa138e72d9b7106544a910138c0e1a7f0f0a2b07a94b241c8ea2023eee5c420c591c1
6
+ metadata.gz: 00101c85f06e2c57ec8ee2507cfb5b37bd5115e6bc130285060920dc5efbe429704d2f7c216d4ec3fce624457e9681f9f4c595fd9d4fcb055c0c27554d5f9f13
7
+ data.tar.gz: 53b2241a7d8bd70388846f089001ecce7fb9ace7985ed0dd5006a10f1ed74380e424c1e385f54f55449d327129fe8bb4871640013975b37a9974365edfd2e757
data/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  ## Master (unreleased)
4
4
 
5
5
 
6
+ ## Version 0.1.1
7
+
8
+ * Fix the bug introduced whith always setting the burndown chart as the cover
9
+ for `burndown --plot-to-board`, as it only worked with files in the current
10
+ directory.
11
+
6
12
  ## Version 0.1.0
7
13
 
8
14
  * Fix `plot-to-board` option in the burndown command when it is used together
@@ -218,7 +218,7 @@ class BurndownChart
218
218
  name += "/burndown-#{sprint.to_s.rjust(2, '0')}.png"
219
219
  card_id = board.burndown_card_id
220
220
  trello.add_attachment(card_id, name)
221
- trello.make_cover(card_id, name)
221
+ trello.make_cover(card_id, "burndown-#{sprint.to_s.rjust(2, '0')}.png")
222
222
  end
223
223
  end
224
224
 
data/lib/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Trollolo
2
2
 
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trollolo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cornelius Schumacher