gitti-backup 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/HISTORY.md +4 -0
- data/Manifest.txt +6 -0
- data/README.md +20 -0
- data/Rakefile +30 -0
- data/lib/gitti/backup/version.rb +25 -0
- data/lib/gitti/backup.rb +11 -0
- metadata +96 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 1d7f9258dfc4b2096d4eba9f5ee6d4c5ce959c0f
|
|
4
|
+
data.tar.gz: d4d6ae45a22ef15d65bdaaf36c50e48d04b13814
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: e810a27fcd3ed818223625b4f1f5baf42cb90b19dd37307ef896c435821c0b89b73f0253f74c858548cabb0f4164c682a4fcdcc97ee24ba07eac88238aeff854
|
|
7
|
+
data.tar.gz: 857d68067ced2982261bf8408dcadc4c992553223a7771f1446b108690d7d94752cfa42cde2a19d25c5277aeae734e1be7f48c9b7c1f839e9d65182f3c0ffb1d
|
data/HISTORY.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# gitti-backup
|
|
2
|
+
|
|
3
|
+
gitti-backup gem - (yet) another (lite) git backup command line script
|
|
4
|
+
|
|
5
|
+
* home :: [github.com/rubylibs/gitti](https://github.com/rubylibs/gitti)
|
|
6
|
+
* bugs :: [github.com/rubylibs/gitti/issues](https://github.com/rubylibs/gitti/issues)
|
|
7
|
+
* gem :: [rubygems.org/gems/gitti-backup](https://rubygems.org/gems/gitti-backup)
|
|
8
|
+
* rdoc :: [rubydoc.info/gems/gitti-backup](http://rubydoc.info/gems/gitti-backup)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
TBD
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## License
|
|
17
|
+
|
|
18
|
+
The `gitti-backup` scripts are dedicated to the public domain.
|
|
19
|
+
Use it as you please with no restrictions whatsoever.
|
|
20
|
+
|
data/Rakefile
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
require 'hoe'
|
|
2
|
+
require './lib/gitti/backup/version.rb'
|
|
3
|
+
|
|
4
|
+
Hoe.spec 'gitti-backup' do
|
|
5
|
+
|
|
6
|
+
self.version = Gitti::GitBackup::VERSION
|
|
7
|
+
|
|
8
|
+
self.summary = 'gitti-backup - (yet) another (lite) git backup command line script'
|
|
9
|
+
self.description = summary
|
|
10
|
+
|
|
11
|
+
self.urls = ['https://github.com/rubylibs/gitti']
|
|
12
|
+
|
|
13
|
+
self.author = 'Gerald Bauer'
|
|
14
|
+
self.email = 'ruby-talk@ruby-lang.org'
|
|
15
|
+
|
|
16
|
+
# switch extension to .markdown for gihub formatting
|
|
17
|
+
self.readme_file = 'README.md'
|
|
18
|
+
self.history_file = 'HISTORY.md'
|
|
19
|
+
|
|
20
|
+
self.extra_deps = [
|
|
21
|
+
['gitti' ],
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
self.licenses = ['Public Domain']
|
|
25
|
+
|
|
26
|
+
self.spec_extras = {
|
|
27
|
+
required_ruby_version: '>= 1.9.2'
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
end
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# encoding: utf-8
|
|
2
|
+
|
|
3
|
+
module Gitti
|
|
4
|
+
module GitBackup
|
|
5
|
+
|
|
6
|
+
MAJOR = 0 ## todo: namespace inside version or something - why? why not??
|
|
7
|
+
MINOR = 0
|
|
8
|
+
PATCH = 1
|
|
9
|
+
VERSION = [MAJOR,MINOR,PATCH].join('.')
|
|
10
|
+
|
|
11
|
+
def self.version
|
|
12
|
+
VERSION
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def self.banner
|
|
16
|
+
"gitti-backup/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def self.root
|
|
20
|
+
"#{File.expand_path( File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) )}"
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
end # module GitBackup
|
|
24
|
+
end # module Gitti
|
|
25
|
+
|
data/lib/gitti/backup.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: gitti-backup
|
|
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: 2015-11-20 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: gitti
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rdoc
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '4.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '4.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: hoe
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '3.14'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.14'
|
|
55
|
+
description: gitti-backup - (yet) another (lite) git backup command line script
|
|
56
|
+
email: ruby-talk@ruby-lang.org
|
|
57
|
+
executables: []
|
|
58
|
+
extensions: []
|
|
59
|
+
extra_rdoc_files:
|
|
60
|
+
- HISTORY.md
|
|
61
|
+
- Manifest.txt
|
|
62
|
+
- README.md
|
|
63
|
+
files:
|
|
64
|
+
- HISTORY.md
|
|
65
|
+
- Manifest.txt
|
|
66
|
+
- README.md
|
|
67
|
+
- Rakefile
|
|
68
|
+
- lib/gitti/backup.rb
|
|
69
|
+
- lib/gitti/backup/version.rb
|
|
70
|
+
homepage: https://github.com/rubylibs/gitti
|
|
71
|
+
licenses:
|
|
72
|
+
- Public Domain
|
|
73
|
+
metadata: {}
|
|
74
|
+
post_install_message:
|
|
75
|
+
rdoc_options:
|
|
76
|
+
- "--main"
|
|
77
|
+
- README.md
|
|
78
|
+
require_paths:
|
|
79
|
+
- lib
|
|
80
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
81
|
+
requirements:
|
|
82
|
+
- - ">="
|
|
83
|
+
- !ruby/object:Gem::Version
|
|
84
|
+
version: 1.9.2
|
|
85
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0'
|
|
90
|
+
requirements: []
|
|
91
|
+
rubyforge_project:
|
|
92
|
+
rubygems_version: 2.2.3
|
|
93
|
+
signing_key:
|
|
94
|
+
specification_version: 4
|
|
95
|
+
summary: gitti-backup - (yet) another (lite) git backup command line script
|
|
96
|
+
test_files: []
|