From 07fd283f15d17a148bef6cc034fbe0de883630dc Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Tue, 18 Oct 2016 14:31:21 -0400 Subject: update version to 0.1.1 --- shard.yml | 2 +- spec/zip_spec.cr | 15 ++++++++++++++- src/zip.cr | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/shard.yml b/shard.yml index 3a73c95..b83b9de 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: zip-crystal -version: 0.1.0 +version: 0.1.1 authors: - Paul Duncan diff --git a/spec/zip_spec.cr b/spec/zip_spec.cr index 7f539cc..8d58f25 100644 --- a/spec/zip_spec.cr +++ b/spec/zip_spec.cr @@ -93,7 +93,6 @@ describe Zip do puts "file has #{zip.size} entries" zip.each do |e| - if e.dir? puts "#{e.path} is a directory" else @@ -105,4 +104,18 @@ describe Zip do end end end + + it "reads jnl.zip" do + Zip.read(File.join(TEST_DIR, "jnl.zip")) do |zip| + puts "file has #{zip.size} entries" + + zip.each do |e| + if e.dir? + puts "#{e.path} is a directory" + else + puts "#{e.path} is a file" + end + end + end + end end diff --git a/src/zip.cr b/src/zip.cr index a972286..d8f649a 100644 --- a/src/zip.cr +++ b/src/zip.cr @@ -77,7 +77,7 @@ module Zip # # Version of zip-crystal library. # - VERSION = "0.1.0" + VERSION = "0.1.1" # # Magic numbers for various data in Zip stream. -- cgit v1.2.3