gitfile 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 +19 -0
- data/Rakefile +26 -0
- data/lib/gitfile.rb +5 -0
- metadata +89 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: db53edbdab56602fce20fe661577ec04f4d33473
|
|
4
|
+
data.tar.gz: a8d852511c272e483c7b5990e2f81ff7aa478144
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 42e50011e9c271e578ff56286d804e812de4e0f1293280b37c36f9493dc434edf58e5ae985fa39ae806f87d3f1cc7e76d195bd06fb7ccdbba7386e2fac97f5d7
|
|
7
|
+
data.tar.gz: 19aae331725644d30d341637477d0a05dac576facb6e3ffbe87681b83718238708fb6bac9fdb008aa4398110bcf10106d58709c81b9db9124caddd1a69b4fb95
|
data/CHANGELOG.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# gitfile - a (light-weight) package manager for installing and updating projects from git repos
|
|
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/gitfile](https://rubygems.org/gems/gitfile)
|
|
6
|
+
* rdoc :: [rubydoc.info/gems/gitfile](http://rubydoc.info/gems/gitfile)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
To be done
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
The `gitfile` scripts are dedicated to the public domain.
|
|
18
|
+
Use it as you please with no restrictions whatsoever.
|
|
19
|
+
|
data/Rakefile
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
require 'hoe'
|
|
2
|
+
|
|
3
|
+
Hoe.spec 'gitfile' do
|
|
4
|
+
|
|
5
|
+
self.version = '0.0.1' # note: for now add version inline
|
|
6
|
+
|
|
7
|
+
self.summary = "gitfile - a (light-weight) package manager for installing and updating projects from git repos"
|
|
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/gitfile.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: gitfile
|
|
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: gitfile - a (light-weight) package manager for installing and updating
|
|
48
|
+
projects from git repos
|
|
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/gitfile.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: gitfile - a (light-weight) package manager for installing and updating projects
|
|
88
|
+
from git repos
|
|
89
|
+
test_files: []
|