monofile 0.0.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 +7 -0
- data/CHANGELOG.md +3 -0
- data/Manifest.txt +5 -0
- data/README.md +18 -0
- data/Rakefile +26 -0
- data/lib/monofile.rb +2 -0
- metadata +89 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: e88cadf8ec729be545293368f620f16c44ceac5f
|
|
4
|
+
data.tar.gz: 966d876e5864c7573dae3c97978ec9a14b94f34f
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: d74e05bce8932503f5a524d7dde003226ff6798f2406085b0011de019f21809cb926c5e36b33df06fb89af647e48c8bf105168ca34df9b4a175c29a0af7fe2dc
|
|
7
|
+
data.tar.gz: e97ef22bd907e3cf08f60eb9d25dd8a1f9180bda845daed17d2312cd88e46659d0b8ec63d218c5fcbbf54903cd9a5f4c5e90e98ea6d23c9cc58ae4f701711faa
|
data/CHANGELOG.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# monofile - read in/ parse mono (source) tree defintions with git (and github) projects, and more
|
|
2
|
+
|
|
3
|
+
* home :: [github.com/rubycoco/git](https://github.com/rubycoco/git)
|
|
4
|
+
* bugs :: [github.com/rubycoco/git/issues](https://github.com/rubycoco/git/issues)
|
|
5
|
+
* gem :: [rubygems.org/gems/monofile](https://rubygems.org/gems/monofile)
|
|
6
|
+
* rdoc :: [rubydoc.info/gems/monofile](http://rubydoc.info/gems/monofile)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
To be done
|
|
13
|
+
|
|
14
|
+
## License
|
|
15
|
+
|
|
16
|
+
The `monofile` scripts are dedicated to the public domain.
|
|
17
|
+
Use it as you please with no restrictions whatsoever.
|
|
18
|
+
|
data/Rakefile
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
require 'hoe'
|
|
2
|
+
|
|
3
|
+
Hoe.spec 'monofile' do
|
|
4
|
+
|
|
5
|
+
self.version = '0.0.1' # note: for now add version inline
|
|
6
|
+
|
|
7
|
+
self.summary = "monofile - read in/ parse mono (source) tree defintions with git (and github) projects, and more"
|
|
8
|
+
self.description = summary
|
|
9
|
+
|
|
10
|
+
self.urls = { home: 'https://github.com/rubycoco/git' }
|
|
11
|
+
|
|
12
|
+
self.author = 'Gerald Bauer'
|
|
13
|
+
self.email = 'opensport@googlegroups.com'
|
|
14
|
+
|
|
15
|
+
# switch extension to .markdown for gihub formatting
|
|
16
|
+
self.readme_file = 'README.md'
|
|
17
|
+
self.history_file = 'CHANGELOG.md'
|
|
18
|
+
|
|
19
|
+
self.licenses = ['Public Domain']
|
|
20
|
+
|
|
21
|
+
self.extra_deps = []
|
|
22
|
+
|
|
23
|
+
self.spec_extras = {
|
|
24
|
+
required_ruby_version: '>= 2.2.2'
|
|
25
|
+
}
|
|
26
|
+
end
|
data/lib/monofile.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: monofile
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Gerald Bauer
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2020-10-29 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rdoc
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '4.0'
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '7'
|
|
23
|
+
type: :development
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '4.0'
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '7'
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
34
|
+
name: hoe
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '3.22'
|
|
40
|
+
type: :development
|
|
41
|
+
prerelease: false
|
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '3.22'
|
|
47
|
+
description: monofile - read in/ parse mono (source) tree defintions with git (and
|
|
48
|
+
github) projects, and more
|
|
49
|
+
email: opensport@googlegroups.com
|
|
50
|
+
executables: []
|
|
51
|
+
extensions: []
|
|
52
|
+
extra_rdoc_files:
|
|
53
|
+
- CHANGELOG.md
|
|
54
|
+
- Manifest.txt
|
|
55
|
+
- README.md
|
|
56
|
+
files:
|
|
57
|
+
- CHANGELOG.md
|
|
58
|
+
- Manifest.txt
|
|
59
|
+
- README.md
|
|
60
|
+
- Rakefile
|
|
61
|
+
- lib/monofile.rb
|
|
62
|
+
homepage: https://github.com/rubycoco/git
|
|
63
|
+
licenses:
|
|
64
|
+
- Public Domain
|
|
65
|
+
metadata: {}
|
|
66
|
+
post_install_message:
|
|
67
|
+
rdoc_options:
|
|
68
|
+
- "--main"
|
|
69
|
+
- README.md
|
|
70
|
+
require_paths:
|
|
71
|
+
- lib
|
|
72
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
73
|
+
requirements:
|
|
74
|
+
- - ">="
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: 2.2.2
|
|
77
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
82
|
+
requirements: []
|
|
83
|
+
rubyforge_project:
|
|
84
|
+
rubygems_version: 2.5.2
|
|
85
|
+
signing_key:
|
|
86
|
+
specification_version: 4
|
|
87
|
+
summary: monofile - read in/ parse mono (source) tree defintions with git (and github)
|
|
88
|
+
projects, and more
|
|
89
|
+
test_files: []
|