roo 2.5.0 → 2.5.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 975d999c227f6bc66a6819e0e69c3ebceb3c76c9
4
- data.tar.gz: 9b790645ff9ad0e2a8e1a84c9deb465bf5e5154b
3
+ metadata.gz: 2784db45a1ab30b18246ae1696392db1ca4060c4
4
+ data.tar.gz: 7853a5e3754ec869d3e58e33bfb68348438e8fd7
5
5
  SHA512:
6
- metadata.gz: 7b197a0ae99ceeb81ff7a8bf12099944f0b2667dbc25ee85380d64bd1117309cc50e98eece758824ee9d5c0b022b354b3c64a10357035281ee7191f79cb479d1
7
- data.tar.gz: a73ae23bc6419fcacad79d85496e6349ef0b45956382cc1e93af0f4be57614248a1e1db33dcc87774a2b8cbbb58098d8526ecc4267c79c86f242acec161815dc
6
+ metadata.gz: 2055e6a386df3ff37ee866cc4dbb0e2b35ee0ce055e6c40097916b43dba9913b51af4871e1f4d837d54178cce3614b741544b704f2c1509a836c973f57666f22
7
+ data.tar.gz: 763260d4a6fc895396edcaf304902d4b2bc6f5a3a2bb353a2785d5b73195286d73eff88143860be6470f7adeee6d4313ab5a527e18d570ebb58f522372efcf86
@@ -1,5 +1,9 @@
1
1
  ## Unreleased
2
2
 
3
+ ## [2.5.1] 2016-08-26
4
+ ### Fixed
5
+ - Fixed NameError. [337](https://github.com/roo-rb/roo/pull/337)
6
+
3
7
  ## [2.5.0] 2016-08-21
4
8
  ### Fixed
5
9
  - Remove tempdirs via finalizers on garbage collection. This cleans them up in all known cases, rather than just when the #close method is called. The #close method can be used to cleanup early. [329](https://github.com/roo-rb/roo/pull/329)
@@ -545,7 +545,7 @@ class Roo::Base
545
545
 
546
546
  def make_tmpdir(prefix = nil, root = nil, &block)
547
547
  warn '[DEPRECATION] extend Roo::Tempdir and use its .make_tempdir instead'
548
- prefix = "#{TEMP_PREFIX}#{prefix}"
548
+ prefix = "#{Roo::TEMP_PREFIX}#{prefix}"
549
549
  root ||= ENV['ROO_TMP']
550
550
 
551
551
  if block_given?
@@ -1,3 +1,3 @@
1
1
  module Roo
2
- VERSION = '2.5.0'
2
+ VERSION = "2.5.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roo
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Preymesser
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2016-08-21 00:00:00.000000000 Z
15
+ date: 2016-08-27 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: nokogiri