object_shadow 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: object_shadow
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Jan Lelis
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-04-08 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: provides a simple convenient API for accessing an object's state.
14
+ email:
15
+ - mail@janlelis.de
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".gitignore"
21
+ - ".travis.yml"
22
+ - CHANGELOG.md
23
+ - CODE_OF_CONDUCT.md
24
+ - Gemfile
25
+ - Gemfile.lock
26
+ - MIT-LICENSE.txt
27
+ - README.md
28
+ - Rakefile
29
+ - lib/object_shadow.rb
30
+ - lib/object_shadow/basic_object.rb
31
+ - lib/object_shadow/info_inspect.rb
32
+ - lib/object_shadow/instance_variables.rb
33
+ - lib/object_shadow/method_introspection.rb
34
+ - lib/object_shadow/object_method.rb
35
+ - lib/object_shadow/version.rb
36
+ - lib/object_shadow/wrap.rb
37
+ - object_shadow.gemspec
38
+ - spec/object_shadow_instance_variables_spec.rb
39
+ - spec/object_shadow_method_introspection_spec.rb
40
+ homepage: https://github.com/janlelis/object_shadow
41
+ licenses:
42
+ - MIT
43
+ metadata: {}
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - "~>"
51
+ - !ruby/object:Gem::Version
52
+ version: '2.0'
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubygems_version: 3.0.3
60
+ signing_key:
61
+ specification_version: 4
62
+ summary: Metaprogramming Level 2
63
+ test_files:
64
+ - spec/object_shadow_instance_variables_spec.rb
65
+ - spec/object_shadow_method_introspection_spec.rb