peeky 0.0.14 → 0.0.15
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/.gitignore +2 -0
- data/lib/peeky/version.rb +1 -1
- data/peeky.gemspec +7 -3
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ca022f75a0c8100cb747acf3be51f77abf2ebedd092b6f235fbe717ea001dc4
|
|
4
|
+
data.tar.gz: 43250493a0da5114f6d685445a8b189d335df8dc74f3596c3d7395b4e1dd0a3a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bbfa5087d3653aa6aee52ce37138883205e5b8ee1c3cef4419a0619c81e97f3f577c8f8482ff7c399d9a454fe07530857b8f16863129547f954cfcd45b7ddda9
|
|
7
|
+
data.tar.gz: 71738fcef6e04171391b2863f480468f3e34ed249fcee9dfd6188fbf2fdfab0b655ebe07d82170e058dcadfef2b76e4c06bd22617b78d200608478cb35e06a95
|
data/.gitignore
CHANGED
data/lib/peeky/version.rb
CHANGED
data/peeky.gemspec
CHANGED
|
@@ -6,11 +6,16 @@ Gem::Specification.new do |spec|
|
|
|
6
6
|
spec.required_ruby_version = '>= 2.5'
|
|
7
7
|
spec.name = 'peeky'
|
|
8
8
|
spec.version = Peeky::VERSION
|
|
9
|
-
spec.authors = ['David']
|
|
9
|
+
spec.authors = ['David C']
|
|
10
10
|
spec.email = ['david@ideasmen.com.au']
|
|
11
11
|
|
|
12
12
|
spec.summary = 'Extracting meta data from ruby classes'
|
|
13
|
-
spec.description =
|
|
13
|
+
spec.description = <<-TEXT
|
|
14
|
+
Peeky is a Ruby GEM for peaking into ruby classes and extracting meta data.
|
|
15
|
+
You can use this meta data to recreate classes, interfaces, documentation etc.
|
|
16
|
+
or use it just to understand the internals of a class.
|
|
17
|
+
TEXT
|
|
18
|
+
|
|
14
19
|
spec.homepage = 'http://appydave.com/gems/peeky'
|
|
15
20
|
spec.license = 'MIT'
|
|
16
21
|
|
|
@@ -34,7 +39,6 @@ Gem::Specification.new do |spec|
|
|
|
34
39
|
spec.bindir = 'exe'
|
|
35
40
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
36
41
|
spec.require_paths = ['lib']
|
|
37
|
-
# spec.extensions = ['ext/peeky/extconf.rb']
|
|
38
42
|
|
|
39
43
|
# spec.add_dependency 'tty-box', '~> 0.5.0'
|
|
40
44
|
end
|
metadata
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: peeky
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.15
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- David
|
|
7
|
+
- David C
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2020-11-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description: Peeky is a Ruby GEM for peaking into ruby classes and extracting meta
|
|
13
|
+
description: " Peeky is a Ruby GEM for peaking into ruby classes and extracting meta
|
|
14
|
+
data.\n You can use this meta data to recreate classes, interfaces, documentation
|
|
15
|
+
etc. \n or use it just to understand the internals of a class.\n"
|
|
14
16
|
email:
|
|
15
17
|
- david@ideasmen.com.au
|
|
16
18
|
executables: []
|