bibliotech 0.2.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 382f1a34c13ff323f984478c74ccf2f01d0a2d60
4
- data.tar.gz: 17eaaddb41227a38a999d74c10114fd5391595a4
3
+ metadata.gz: d21d1254a3d0b99333eb8478c19ecae2f9fe31d5
4
+ data.tar.gz: b5f3e42e6ae588dc19e20108b829cd7a87e5cb25
5
5
  SHA512:
6
- metadata.gz: 3e14cff40b6aa0b15c1aba81f3313f8cdaa016004edbc00e3c1bb843717c3d798603bea21b22a36f195ba0c356a26dfb319c91e497f33a95606af558d317c4df
7
- data.tar.gz: 7de4b4770a1dda76769e1d0c7992b80134cbe4871a9b7398459bfdfbd140617e09c1c8e8ae6a5ea5cf6f5d5eb6c9c989b2cf0dc1f445f81fdc02e293284ef9e6
6
+ metadata.gz: 2fcbbfa05a734b9410c233a6df3af4afaca7021e2423a68ffff73c2d0b6ecc7fefeda68fba14906c55a7de9d4f381ce60b7081e2d82b1e96c1e024456c96eb8e
7
+ data.tar.gz: f6100edf98e400cc20ddce4942578191ee09d3a94063e83896e74ea7b85a2b54fb09a31ab0f14a8d3334daf85fa2ed186be67764de94167aad2266e919867253
@@ -0,0 +1,44 @@
1
+ local: development
2
+ remote: staging
3
+
4
+ #defaults
5
+ database_config_file: 'config/database.yml' # this is the default
6
+
7
+ production:
8
+ backups:
9
+ dir: db_backups
10
+ compress: gzip # [ none, gzip, bzip2, 7zip ]
11
+ prefix: backup
12
+ keep:
13
+ hourlies: 48
14
+ dailies: 14
15
+ weeklies: 8
16
+ monthlies: all
17
+
18
+ frequency: hourly
19
+ clone:
20
+ storage: s3 [ file, ftp, scp ]
21
+ target: db_backups # URL
22
+
23
+ database_config_env: production
24
+
25
+ user: root
26
+ host: some.server.com
27
+ path: "/var/www/someapp.com/current"
28
+ compress: gzip
29
+
30
+ staging:
31
+ database_config_env: staging
32
+ path: "/var/www/staging.someapp.com/current"
33
+
34
+ user: root
35
+ host: some.server.com
36
+ backups:
37
+ compress: gzip
38
+
39
+ development:
40
+ database_config_env: development
41
+ path: "."
42
+ rsa_files:
43
+ staging: "id_rsa"
44
+ production: "id_rsa"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bibliotech
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Dorn
@@ -79,6 +79,7 @@ extra_rdoc_files:
79
79
  - doc/todo.txt
80
80
  - doc/example_config_file.yml
81
81
  files:
82
+ - default_configuration/config.yaml
82
83
  - lib/bibliotech/builders.rb
83
84
  - lib/bibliotech/builders/database.rb
84
85
  - lib/bibliotech/builders/gzip.rb
@@ -127,7 +128,7 @@ rdoc_options:
127
128
  - --main
128
129
  - doc/README
129
130
  - --title
130
- - bibliotech-0.2.0 Documentation
131
+ - bibliotech-0.2.1 Documentation
131
132
  require_paths:
132
133
  - lib/
133
134
  required_ruby_version: !ruby/object:Gem::Requirement