peeky 0.0.27 → 0.0.28
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/CODE_OF_CONDUCT.md +1 -1
- data/README.md +1 -1
- data/{README-stories.md → STORIES.md} +0 -0
- data/lib/peeky/version.rb +1 -1
- data/peeky.gemspec +8 -2
- metadata +11 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5bfa72308dbaa677a774831ef7323b1a6b7756589714b068edab839232e96c1
|
|
4
|
+
data.tar.gz: c20a0d04a9ef69d8f77d7c506ddd45560294a4e9b0b7ec7ffeb33c6665b6a3f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0070992885f6a7a5a19acb3d62fef9e5ce3d116b35c0436185fe3304293c7831bb6c9652704c43985842854bba7472733bb10b2cd26f055b9893dedecae27604'
|
|
7
|
+
data.tar.gz: 2312202e390a5ad6478aa124f94634627b65d7a69f0e0b725091907d7bddc10040a524b7eaf784e0bf37c74ab030228a74a8d1a319f810516308c7dc83c985ea
|
data/CODE_OF_CONDUCT.md
CHANGED
|
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
|
|
|
55
55
|
## Enforcement
|
|
56
56
|
|
|
57
57
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
-
reported by contacting the project team at david
|
|
58
|
+
reported by contacting the project team at david@ideasmne.com.au. All
|
|
59
59
|
complaints will be reviewed and investigated and will result in a response that
|
|
60
60
|
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
61
|
obligated to maintain confidentiality with regard to the reporter of an incident.
|
data/README.md
CHANGED
|
@@ -30,7 +30,7 @@ gem install peeky
|
|
|
30
30
|
|
|
31
31
|
As a Ruby Developer, I should be able to Reverse engineer classes and methods, so that I can document and understand them
|
|
32
32
|
|
|
33
|
-
See all [stories](./
|
|
33
|
+
See all [stories](./file.STORIES.html)
|
|
34
34
|
|
|
35
35
|
### Featured Stories
|
|
36
36
|
|
|
File without changes
|
data/lib/peeky/version.rb
CHANGED
data/peeky.gemspec
CHANGED
|
@@ -3,13 +3,14 @@
|
|
|
3
3
|
require_relative 'lib/peeky/version'
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
|
+
# https://piotrmurach.com/articles/writing-a-ruby-gem-specification/
|
|
6
7
|
spec.required_ruby_version = '>= 2.5'
|
|
7
8
|
spec.name = 'peeky'
|
|
8
9
|
spec.version = Peeky::VERSION
|
|
9
10
|
spec.authors = ['David Cruwys']
|
|
10
11
|
spec.email = ['david@ideasmen.com.au']
|
|
11
12
|
|
|
12
|
-
spec.summary = '
|
|
13
|
+
spec.summary = 'Take a peek into your ruby classes and extract useful meta data'
|
|
13
14
|
spec.description = <<-TEXT
|
|
14
15
|
Peeky is a Ruby GEM for peaking into ruby classes and extracting meta data.
|
|
15
16
|
You can use this meta data to recreate classes, interfaces, documentation etc.
|
|
@@ -32,7 +33,6 @@ Gem::Specification.new do |spec|
|
|
|
32
33
|
# Click Add Project:
|
|
33
34
|
# git@github.com:klueless-io/peeky
|
|
34
35
|
spec.metadata['documentation_uri'] = 'https://rubydoc.info/github/klueless-io/peeky/master'
|
|
35
|
-
spec.extra_rdoc_files = ['README-stories.md', 'README-stories.md']
|
|
36
36
|
|
|
37
37
|
# Specify which files should be added to the gem when it is released.
|
|
38
38
|
# The `git ls-files -z` loads the RubyGem files that have been added into git.
|
|
@@ -45,6 +45,12 @@ Gem::Specification.new do |spec|
|
|
|
45
45
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
46
46
|
spec.require_paths = ['lib']
|
|
47
47
|
# spec.extensions = ['ext/peeky/extconf.rb']
|
|
48
|
+
spec.extra_rdoc_files = ['README.md', 'STORIES.md']
|
|
49
|
+
spec.rdoc_options += [
|
|
50
|
+
'--title', 'peeky by appydave.com',
|
|
51
|
+
'--main', 'README.md',
|
|
52
|
+
'--files STORIES.MD'
|
|
53
|
+
]
|
|
48
54
|
|
|
49
55
|
spec.add_dependency 'activesupport'
|
|
50
56
|
# spec.add_dependency 'tty-box', '~> 0.5.0'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.28
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Cruwys
|
|
@@ -33,7 +33,8 @@ email:
|
|
|
33
33
|
executables: []
|
|
34
34
|
extensions: []
|
|
35
35
|
extra_rdoc_files:
|
|
36
|
-
- README
|
|
36
|
+
- README.md
|
|
37
|
+
- STORIES.md
|
|
37
38
|
files:
|
|
38
39
|
- ".github/workflows/ruby.yml"
|
|
39
40
|
- ".gitignore"
|
|
@@ -44,9 +45,9 @@ files:
|
|
|
44
45
|
- Gemfile
|
|
45
46
|
- Guardfile
|
|
46
47
|
- LICENSE.txt
|
|
47
|
-
- README-stories.md
|
|
48
48
|
- README.md
|
|
49
49
|
- Rakefile
|
|
50
|
+
- STORIES.md
|
|
50
51
|
- bin/console
|
|
51
52
|
- bin/k
|
|
52
53
|
- bin/kgitsync
|
|
@@ -79,7 +80,12 @@ metadata:
|
|
|
79
80
|
changelog_uri: https://github.com/klueless-io/peeky/commits/master
|
|
80
81
|
documentation_uri: https://rubydoc.info/github/klueless-io/peeky/master
|
|
81
82
|
post_install_message:
|
|
82
|
-
rdoc_options:
|
|
83
|
+
rdoc_options:
|
|
84
|
+
- "--title"
|
|
85
|
+
- peeky by appydave.com
|
|
86
|
+
- "--main"
|
|
87
|
+
- README.md
|
|
88
|
+
- "--files STORIES.MD"
|
|
83
89
|
require_paths:
|
|
84
90
|
- lib
|
|
85
91
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -96,5 +102,5 @@ requirements: []
|
|
|
96
102
|
rubygems_version: 3.1.4
|
|
97
103
|
signing_key:
|
|
98
104
|
specification_version: 4
|
|
99
|
-
summary:
|
|
105
|
+
summary: Take a peek into your ruby classes and extract useful meta data
|
|
100
106
|
test_files: []
|