backports 3.3.0 → 3.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.rdoc CHANGED
@@ -1,6 +1,6 @@
1
1
  = Backports --- History
2
2
 
3
- == Version 3.2.0 - April 3rd, 2013
3
+ == Version 3.3.0 - April 3rd, 2013
4
4
 
5
5
  * Moved `Proc#yield` & `Hash#key` from 1.8.7 to 1.9.1
6
6
 
data/Gemfile.lock CHANGED
@@ -7,7 +7,7 @@ GIT
7
7
  PATH
8
8
  remote: .
9
9
  specs:
10
- backports (3.3.0)
10
+ backports (3.3.1)
11
11
 
12
12
  GEM
13
13
  remote: http://rubygems.org/
data/README.rdoc CHANGED
@@ -61,7 +61,7 @@ Note: about a dozen of backports have a dependency that will be also loaded. For
61
61
 
62
62
  With bundler, add to your Gemfile:
63
63
 
64
- gem 'backports', :load => false
64
+ gem 'backports', :require => false
65
65
 
66
66
  Run <tt>bundle install</tt> and require the desired backports.
67
67
 
@@ -16,7 +16,7 @@ unless Enumerable.method_defined? :chunk
16
16
  previous = nil
17
17
  case key
18
18
  when nil, :_separator
19
- when :_singleton
19
+ when :_alone
20
20
  yielder.yield [key, [val]]
21
21
  else
22
22
  raise RuntimeError, "symbol beginning with an underscore are reserved"
@@ -1,3 +1,3 @@
1
1
  module Backports
2
- VERSION = "3.3.0" unless const_defined? :VERSION # the guard is against a redefinition warning that happens on Travis
2
+ VERSION = "3.3.1" unless const_defined? :VERSION # the guard is against a redefinition warning that happens on Travis
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: backports
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 3
9
- - 0
10
- version: 3.3.0
9
+ - 1
10
+ version: 3.3.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - "Marc-Andr\xC3\xA9 Lafortune"
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2013-04-03 00:00:00 Z
18
+ date: 2013-05-22 00:00:00 Z
19
19
  dependencies: []
20
20
 
21
21
  description: Essential backports that enable many of the nice features of Ruby 1.8.7 up to 2.0.0 for earlier versions.