sane 0.11.1 → 0.12.0

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.11.1
1
+ 0.12.0
@@ -158,4 +158,6 @@ class Array
158
158
  # Reset the aliases
159
159
  alias collect map
160
160
  alias collect! map!
161
+ alias collect_by collect
162
+ alias map_by map
161
163
  end
data/sane.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{sane}
8
- s.version = "0.11.1"
8
+ s.version = "0.12.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Roger Pack"]
data/spec/test_sane.spec CHANGED
@@ -96,7 +96,6 @@ describe Sane do
96
96
  end
97
97
 
98
98
  it "should allow for map_by" do
99
- pending 'doing it'
100
99
  ["1"].map_by(:to_i).should == [1]
101
100
  ["1"].collect_by(:to_i).should == [1]
102
101
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sane
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.1
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roger Pack