class_inheritable 0.0.1 → 0.0.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/.gitignore +6 -0
- data/README.txt +3 -1
- data/class_inheritable.gemspec +2 -2
- data/lib/class_inheritable/version.rb +1 -1
- metadata +6 -7
data/.gitignore
CHANGED
data/README.txt
CHANGED
|
@@ -3,7 +3,9 @@ without monkey-patching base-classes or polluting target classes with
|
|
|
3
3
|
unexpected methods/attributes
|
|
4
4
|
|
|
5
5
|
Basic use-case:
|
|
6
|
-
|
|
6
|
+
gem install class_inheritable
|
|
7
|
+
irb
|
|
8
|
+
require 'class_inheritable'
|
|
7
9
|
class MyClass
|
|
8
10
|
ClassInheritable::Array.attach :to => self, :as => :foo
|
|
9
11
|
append_foo :bar
|
data/class_inheritable.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.authors = ["JayTeeSr"]
|
|
9
9
|
s.email = ["jaytee_sr_at_his-service_dot_net"]
|
|
10
10
|
s.homepage = "https://github.com/JayTeeSF/class_inheritable"
|
|
11
|
-
s.summary = %q{
|
|
12
|
-
s.description = %q{
|
|
11
|
+
s.summary = %q{Duplicate Rails old class_inheritable_array sans base-class monkey-patching}
|
|
12
|
+
s.description = %q{Duplicate Rails old class_inheritable_array sans base-class monkey-patching}
|
|
13
13
|
s.rubyforge_project = "class_inheritable"
|
|
14
14
|
s.files = `git ls-files`.split("\n")
|
|
15
15
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: class_inheritable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-07-
|
|
12
|
+
date: 2012-07-20 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rspec
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &70213346965700 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ~>
|
|
@@ -21,9 +21,8 @@ dependencies:
|
|
|
21
21
|
version: 2.11.0
|
|
22
22
|
type: :development
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
25
|
-
description:
|
|
26
|
-
translations
|
|
24
|
+
version_requirements: *70213346965700
|
|
25
|
+
description: Duplicate Rails old class_inheritable_array sans base-class monkey-patching
|
|
27
26
|
email:
|
|
28
27
|
- jaytee_sr_at_his-service_dot_net
|
|
29
28
|
executables: []
|
|
@@ -65,7 +64,7 @@ rubyforge_project: class_inheritable
|
|
|
65
64
|
rubygems_version: 1.8.17
|
|
66
65
|
signing_key:
|
|
67
66
|
specification_version: 3
|
|
68
|
-
summary:
|
|
67
|
+
summary: Duplicate Rails old class_inheritable_array sans base-class monkey-patching
|
|
69
68
|
test_files:
|
|
70
69
|
- spec/lib/class_inheritable/array_spec.rb
|
|
71
70
|
- spec/spec_helper.rb
|