class_inheritable 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1,2 +1,8 @@
1
1
  .ignore
2
2
  .rvmrc
3
+ *.gem
4
+ *.tmp
5
+ .bundle
6
+ Gemfile.lock
7
+ coverage/*
8
+ pkg/*
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
- irb -r "./lib/class_inheritable/array.rb"
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
@@ -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{Automate management of i18n locale files}
12
- s.description = %q{Export strings that need to be translated and integrate the completed translations}
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")
@@ -1,3 +1,3 @@
1
1
  module ClassInheritable
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
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.1
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-19 00:00:00.000000000Z
12
+ date: 2012-07-20 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
16
- requirement: &70181116808720 !ruby/object:Gem::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: *70181116808720
25
- description: Export strings that need to be translated and integrate the completed
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: Automate management of i18n locale files
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