object_info 0.1.0 → 0.1.1
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.
- checksums.yaml +4 -4
- data/README.md +5 -2
- data/lib/object_info/version.rb +1 -1
- data/object_info.gemspec +4 -2
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 692c61bd8e6dc1d6f9725cc01e98441fecfd0c4a
|
4
|
+
data.tar.gz: dcd36a7b9776c7060a9631aa66a45c2ca3ee9b78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25958e0a3814b05f28f3d863fd07f970b9d776f879db292fef207156c1b8a4896d247073e08946606153b572bb378e5eab04d56220a2cb9b55b36b7ec8a5c7a6
|
7
|
+
data.tar.gz: f1c2b1f5be75f1680ff598ca21efb4279f9d1d6fbddf8b30a7da928e73e33616427fd7ccdd47ab84b783a2c3c133e2e2550a7f11261c43af0691841eee84b3b7
|
data/README.md
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
# ObjectInfo
|
2
2
|
|
3
|
-
|
3
|
+
Thinked for development use.
|
4
|
+
It produces a list of Methods, attributes, relations and callbacks related to the passed resource.
|
5
|
+
You can invoke it with ```oi``` or ```owl``` ( because an owl sees things through the dark ).
|
4
6
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
6
7
|
|
7
8
|
## Installation
|
8
9
|
|
@@ -35,6 +36,8 @@ If you specify true as second parameter, the output will also include attributes
|
|
35
36
|
> oi _user_, true
|
36
37
|
```
|
37
38
|
|
39
|
+
|
40
|
+
You can also use ```owl``` instead of ```oi```, because an owl sees things hide in the dark.
|
38
41
|
## Development
|
39
42
|
|
40
43
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/lib/object_info/version.rb
CHANGED
data/object_info.gemspec
CHANGED
@@ -9,8 +9,10 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Fabio Ros"]
|
10
10
|
spec.email = ["fabio@ros90@gmail.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{This gem
|
13
|
-
spec.description = %q{
|
12
|
+
spec.summary = %q{This gem gives some informations about an object's context.}
|
13
|
+
spec.description = %q{Thinked for development use.
|
14
|
+
It produces a list of Methods, attributes, relations and callbacks related to the passed resource.
|
15
|
+
You can invoke it with ```oi``` or ```owl``` ( because an owl sees things through the dark ).}
|
14
16
|
spec.homepage = "https://github.com/FabioRos/object_info"
|
15
17
|
spec.license = "MIT"
|
16
18
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: object_info
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fabio Ros
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-11-
|
11
|
+
date: 2016-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -66,7 +66,10 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 1.7.0
|
69
|
-
description:
|
69
|
+
description: |-
|
70
|
+
Thinked for development use.
|
71
|
+
It produces a list of Methods, attributes, relations and callbacks related to the passed resource.
|
72
|
+
You can invoke it with ```oi``` or ```owl``` ( because an owl sees things through the dark ).
|
70
73
|
email:
|
71
74
|
- fabio@ros90@gmail.com
|
72
75
|
executables: []
|
@@ -108,5 +111,5 @@ rubyforge_project:
|
|
108
111
|
rubygems_version: 2.5.1
|
109
112
|
signing_key:
|
110
113
|
specification_version: 4
|
111
|
-
summary: This gem
|
114
|
+
summary: This gem gives some informations about an object's context.
|
112
115
|
test_files: []
|