including 0.1.0 → 0.1.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.
data/README.rdoc CHANGED
@@ -24,7 +24,7 @@ Let's say you've got a module:
24
24
  And you want to mix it in to a class. But wait! the `foo` method might
25
25
  conflict with some other `foo`!
26
26
  class Bar
27
- including Foo, only: [:bar]
27
+ including Foo, except: [:foo]
28
28
  end
29
29
 
30
30
  bar = Bar.new
@@ -43,7 +43,10 @@ like to mix in, or an array of exceptions, via `except`.
43
43
  quux.foo # NoMethodError
44
44
  quux.baz # NoMethodError
45
45
 
46
- == Copyright
46
+ = Installation
47
+ gem install including
48
+
49
+ = Copyright
47
50
 
48
51
  Copyright (c) 2012 Bryan Woods. See LICENSE.txt for
49
52
  further details.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/including.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{including}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = [%q{Bryan Woods}]
data/lib/including.rb CHANGED
@@ -10,7 +10,7 @@ class Object
10
10
 
11
11
  (include included_module).tap do
12
12
  excluded_methods.each do |meth|
13
- included_module.send(:undef_method, :"#{meth}")
13
+ included_module.send(:undef_method, meth)
14
14
  end
15
15
  end
16
16
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: including
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.0
5
+ version: 0.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Bryan Woods
@@ -80,7 +80,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
80
80
  requirements:
81
81
  - - ">="
82
82
  - !ruby/object:Gem::Version
83
- hash: 716551475364656808
83
+ hash: 4074772481834400452
84
84
  segments:
85
85
  - 0
86
86
  version: "0"