caracal 1.0.10 → 1.0.11

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: 8ba1b2ffe0fd04fdee4a28a8697b6862ab972630
4
- data.tar.gz: 8a1c979775800f0eddef47ea163c5e6baf8b2116
3
+ metadata.gz: ac0b0bccba5226fcd3e5ef1eca0706514f0352bd
4
+ data.tar.gz: 0a568610a85f684935ffe0221297f145316c3e4d
5
5
  SHA512:
6
- metadata.gz: 0575246a9d772fb51aa053d1a4539b3e28bc74b52f279fb99a2eab242a044d5422996a6ad1ff8068ecafc7ec340b16a0f3b71985599c1bfda026a40b7bb31815
7
- data.tar.gz: 7e3f5804fad3bdd679079c01986a39b24a23e84a3b2e81a426be38b0b80837a2c3da94743dab2e9f04adbe49ad1e7aed0c2f7b1da272a57baea8e3c0d3a1b045
6
+ metadata.gz: c6050ac2b7cb136503da8ab85dd60e6ef71f5edf391ca0123592132d642f7ce3420935fdcc7e1c79de3f6146d0c4eaadec5950e3a5425a2762e12c1e6f10328c
7
+ data.tar.gz: 762aadfddaac91bded4353d99d59f88652465cc8f4007b9744a4a2d19d934fc6c89f8f01f2bca0c86a56c5bf1c9bb88f2898e4225a6dd934923c9ad15d7e6f84
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ #### v1.0.11
2
+
3
+ * Bug Fixes
4
+ * Cleaned up experimental feature for iframes. (@ajdugan).
5
+
6
+
7
+ #### v1.0.10
8
+
9
+ * Enhancements
10
+ * Added experimental feature for iframes. (@ajdugan).
11
+
12
+
1
13
  #### v1.0.8
2
14
 
3
15
  * Enhancements
@@ -89,8 +89,8 @@ module Caracal
89
89
  def file
90
90
  @file ||= begin
91
91
  if iframe_url.nil?
92
- file = File.new('tmp_caracal', 'w+')
93
- file.print iframe_data
92
+ file = Tempfile.new('iframe')
93
+ file.write iframe_data
94
94
  file.rewind
95
95
  else
96
96
  file = open(iframe_url)
@@ -1,3 +1,3 @@
1
1
  module Caracal
2
- VERSION = '1.0.10'
2
+ VERSION = '1.0.11'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: caracal
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.10
4
+ version: 1.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Trade Infomatics
@@ -211,7 +211,6 @@ files:
211
211
  - spec/lib/caracal/errors_spec.rb
212
212
  - spec/spec_helper.rb
213
213
  - spec/support/_fixtures/snippet.docx
214
- - tmp_caracal
215
214
  homepage: https://github.com/trade-informatics/caracal
216
215
  licenses:
217
216
  - MIT
data/tmp_caracal DELETED
Binary file