pgbackups-archive 1.0.2 → 1.0.3
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/{MIT-LICENSE → MIT-License} +0 -0
- data/README.md +0 -4
- data/lib/pgbackups-archive/job.rb +1 -1
- data/lib/pgbackups-archive/version.rb +1 -1
- data/test/lib/pgbackups-archive/job_test.rb +0 -1
- metadata +10 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4abd195d4ad721f69aaedaa2d509f6cf9a800e29
|
|
4
|
+
data.tar.gz: 57241767530afe0d21264e78b03ede679a3c1122
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e614e2e645539356e0f3562e1f4f8315462bdb19d82230f862f65838eefcec80c64ab74f029e57e8bd66c2c392a5b013abf74fc844dfc6b7f7bd60e542244fe
|
|
7
|
+
data.tar.gz: 88607dcec32782210b34be32a2ea6ff5a9bbc189222934cf819c5eac7f6107cf028313a9a7c055877ced64337e219a5bcb7eb7d02db0cee302b8e1bcbe6eec83
|
data/{MIT-LICENSE → MIT-License}
RENAMED
|
File without changes
|
data/README.md
CHANGED
|
@@ -58,10 +58,6 @@ A good security measure would be to use a dedicated set of AWS credentials with
|
|
|
58
58
|
# database (useful for follower databases).
|
|
59
59
|
heroku config:add PGBACKUPS_DATABASE="HEROKU_POSTGRESQL_BLACK_URL"
|
|
60
60
|
|
|
61
|
-
# Optional: If you wish to customize the number of manual backups kept at
|
|
62
|
-
# the Heroku PGBackups level, set this.
|
|
63
|
-
heroku config:add PGBACKUPS_KEEP="30"
|
|
64
|
-
|
|
65
61
|
### Add the rake task to scheduler
|
|
66
62
|
|
|
67
63
|
heroku addons:open scheduler
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pgbackups-archive
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kenny Johnston
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-05-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: heroku
|
|
@@ -17,6 +17,9 @@ dependencies:
|
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 3.28.6
|
|
20
|
+
- - "<="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '3.32'
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -24,6 +27,9 @@ dependencies:
|
|
|
24
27
|
- - ">="
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: 3.28.6
|
|
30
|
+
- - "<="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '3.32'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: fog-aws
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -173,7 +179,7 @@ executables: []
|
|
|
173
179
|
extensions: []
|
|
174
180
|
extra_rdoc_files: []
|
|
175
181
|
files:
|
|
176
|
-
- MIT-
|
|
182
|
+
- MIT-License
|
|
177
183
|
- README.md
|
|
178
184
|
- Rakefile
|
|
179
185
|
- lib/pgbackups-archive.rb
|
|
@@ -209,7 +215,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
209
215
|
version: '0'
|
|
210
216
|
requirements: []
|
|
211
217
|
rubyforge_project:
|
|
212
|
-
rubygems_version: 2.4.
|
|
218
|
+
rubygems_version: 2.4.6
|
|
213
219
|
signing_key:
|
|
214
220
|
specification_version: 4
|
|
215
221
|
summary: Automates archival of Heroku PGBackups to S3
|