identifies_as 1.0.8 → 1.0.9
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/CHANGELOG.rdoc +4 -0
- metadata +3 -19
data/CHANGELOG.rdoc
CHANGED
|
@@ -14,3 +14,7 @@ Fix for Module (now Module includes IdentifiesAs::ClassInstance).
|
|
|
14
14
|
== 6/13/2012
|
|
15
15
|
|
|
16
16
|
Fix for ClassInstance - now defined directly in Module since it seems Module methods are defined in the class not in a module interface, which means we can't insert methods before and call super.
|
|
17
|
+
|
|
18
|
+
== 7/04/2012
|
|
19
|
+
|
|
20
|
+
Removed module-cluster dependency, which was already irrelevant.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: identifies_as
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.9
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,24 +9,8 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
13
|
-
dependencies:
|
|
14
|
-
- !ruby/object:Gem::Dependency
|
|
15
|
-
name: module-cluster
|
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
|
-
requirements:
|
|
19
|
-
- - ! '>='
|
|
20
|
-
- !ruby/object:Gem::Version
|
|
21
|
-
version: '0'
|
|
22
|
-
type: :runtime
|
|
23
|
-
prerelease: false
|
|
24
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
|
-
requirements:
|
|
27
|
-
- - ! '>='
|
|
28
|
-
- !ruby/object:Gem::Version
|
|
29
|
-
version: '0'
|
|
12
|
+
date: 2012-07-05 00:00:00.000000000 Z
|
|
13
|
+
dependencies: []
|
|
30
14
|
description: Identities are interfaces. Sometimes it makes more sense to test an identity
|
|
31
15
|
than a method- but then you don't want to limit flexibility. So why not let objects
|
|
32
16
|
that claim to implement your interface identify as your object? IdentifiesAs permits
|