sane 0.9.1 → 0.9.2

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.9.1
1
+ 0.9.2
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{sane}
8
- s.version = "0.9.1"
8
+ s.version = "0.9.2"
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"]
@@ -26,7 +26,6 @@ Gem::Specification.new do |s|
26
26
  "lib/sane/add_regexes.rb",
27
27
  "lib/sane/bugs.rb",
28
28
  "lib/sane/enumerable-extra.rb",
29
- "lib/sane/enumerable_brackets.rb",
30
29
  "lib/sane/hash_hashes.rb",
31
30
  "lib/sane/hash_set_operators_bug_fix.rb",
32
31
  "lib/sane/irb_startup_options.rb",
@@ -63,10 +63,11 @@ describe TestSane do
63
63
  /a/ + /b/
64
64
  end
65
65
 
66
- it "should allow for brackets on enumerators" do
67
- require 'backports' # ugh
68
- assert "ab\r\nc".lines[0] == "ab\r\n"
69
- end
66
+ # my first implementation of this was *awful* LOL
67
+ # it "should allow for brackets on enumerators" do
68
+ # require 'backports' # ugh
69
+ # assert "ab\r\nc".lines[0] == "ab\r\n"
70
+ # end
70
71
 
71
72
  it "should have a windows method" do
72
73
  require 'rbconfig'
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.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roger Pack
@@ -62,7 +62,6 @@ files:
62
62
  - lib/sane/add_regexes.rb
63
63
  - lib/sane/bugs.rb
64
64
  - lib/sane/enumerable-extra.rb
65
- - lib/sane/enumerable_brackets.rb
66
65
  - lib/sane/hash_hashes.rb
67
66
  - lib/sane/hash_set_operators_bug_fix.rb
68
67
  - lib/sane/irb_startup_options.rb
@@ -1,10 +0,0 @@
1
- module Enumerable
2
- def [](pos)
3
- idx = 0
4
- self.each{|item|
5
- return item if idx == pos
6
- idx += 1
7
- }
8
- end
9
- end
10
-