titantic 0.0.1 → 0.0.2
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 +1 -0
- data/.travis.yml +4 -0
- data/README.md +3 -0
- data/Rakefile +2 -0
- data/lib/titantic/version.rb +1 -1
- data/titantic.gemspec +6 -2
- metadata +64 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 16e94cdbb1717e89386d56e4edbfc3a78755ab8d
|
|
4
|
+
data.tar.gz: ff18bc756ea6f06f4c1fbf36dc9afd32dee9ae13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90071f936f9250286070d6502f0f6a8dc1644320036079d62eafa795c7383a8225428f86dffbefa2e00213356ccd8013761fb1ac968eb5a36754a85f70845a4a
|
|
7
|
+
data.tar.gz: f4b7747d92bfd01c7d16445b6734f38e5d1df41fc4547403aa5f2b6f8211fafccf1d0e2203f68344daef0ba1fb783ba63b4c787904e874220d7d995eb070f592
|
data/.gitignore
CHANGED
data/.travis.yml
ADDED
data/README.md
CHANGED
|
@@ -3,6 +3,9 @@ titantic
|
|
|
3
3
|
|
|
4
4
|
A very simple [Glacier](http://aws.amazon.com/glacier/) command line client
|
|
5
5
|
|
|
6
|
+
|
|
7
|
+
[](https://travis-ci.org/nclaburn/titantic)
|
|
8
|
+
|
|
6
9
|
Overview
|
|
7
10
|
---------
|
|
8
11
|
Titantic is meant to be a bare bones [Glacier](http://aws.amazon.com/glacier/) command line client. The main purpose of Titantic is to so it can be easily used by backup scripts in cron jobs, etc. Titantic uses [Fog](http://github.com/fog/fog) underneath for all [Glacier](http://aws.amazon.com/glacier/) communication.
|
data/Rakefile
CHANGED
data/lib/titantic/version.rb
CHANGED
data/titantic.gemspec
CHANGED
|
@@ -19,8 +19,12 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
20
20
|
spec.require_paths = ["lib"]
|
|
21
21
|
|
|
22
|
-
spec.
|
|
23
|
-
spec.
|
|
22
|
+
spec.add_runtime_dependency "thor", "~> 0.18", ">= 0.18.0"
|
|
23
|
+
spec.add_runtime_dependency "fog", "~> 1.20", ">= 1.20.0"
|
|
24
|
+
spec.add_runtime_dependency "unf", "~> 0.1", ">= 0.1.0"
|
|
25
|
+
|
|
26
|
+
spec.add_development_dependency "bundler", "~> 1.5"
|
|
27
|
+
spec.add_development_dependency "rake", "~> 10.1"
|
|
24
28
|
spec.add_development_dependency "minitest", "~> 5.3"
|
|
25
29
|
|
|
26
30
|
Bundler.require(:default, :development)
|
metadata
CHANGED
|
@@ -1,15 +1,75 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: titantic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nathan Claburn
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-05-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: thor
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0.18'
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 0.18.0
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - "~>"
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '0.18'
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 0.18.0
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
34
|
+
name: fog
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '1.20'
|
|
40
|
+
- - ">="
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: 1.20.0
|
|
43
|
+
type: :runtime
|
|
44
|
+
prerelease: false
|
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
46
|
+
requirements:
|
|
47
|
+
- - "~>"
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '1.20'
|
|
50
|
+
- - ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: 1.20.0
|
|
53
|
+
- !ruby/object:Gem::Dependency
|
|
54
|
+
name: unf
|
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - "~>"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '0.1'
|
|
60
|
+
- - ">="
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: 0.1.0
|
|
63
|
+
type: :runtime
|
|
64
|
+
prerelease: false
|
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - "~>"
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '0.1'
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: 0.1.0
|
|
13
73
|
- !ruby/object:Gem::Dependency
|
|
14
74
|
name: bundler
|
|
15
75
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -63,6 +123,7 @@ extra_rdoc_files: []
|
|
|
63
123
|
files:
|
|
64
124
|
- ".gitignore"
|
|
65
125
|
- ".titantic"
|
|
126
|
+
- ".travis.yml"
|
|
66
127
|
- Gemfile
|
|
67
128
|
- Gemfile.lock
|
|
68
129
|
- LICENSE.txt
|
|
@@ -116,3 +177,4 @@ test_files:
|
|
|
116
177
|
- test/test.txt
|
|
117
178
|
- test/test_helper.rb
|
|
118
179
|
- test/titantic_test.rb
|
|
180
|
+
has_rdoc:
|