including 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +5 -2
- data/VERSION +1 -1
- data/including.gemspec +1 -1
- data/lib/including.rb +1 -1
- metadata +2 -2
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,
|
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
|
-
|
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.
|
1
|
+
0.1.1
|
data/including.gemspec
CHANGED
data/lib/including.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: including
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.
|
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:
|
83
|
+
hash: 4074772481834400452
|
84
84
|
segments:
|
85
85
|
- 0
|
86
86
|
version: "0"
|