rails_db_dump 1.0.0 → 1.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 +4 -4
- data/lib/rails_db_dump/version.rb +1 -1
- data/rails_db_dump.gemspec +7 -2
- metadata +8 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5915d25b5fd4a31ef8adf6d4c165a93657878cdf
|
|
4
|
+
data.tar.gz: 8964734f719c9e7a238f4cb4693a2747f7b2a2de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5de53e57e5873f83cf2bf3aa856ad95e8c402b018a1cd6b35b2adc2afd06e57794920b853524d9ea75eadf402197eb9209e97a0173007f15a514a5a4872d602
|
|
7
|
+
data.tar.gz: 5e3accb47c80c44d455c671ef4595137d85cf325a5f5506884169c211d12f50776fb0b6d90c24db9fd8c0fa679b4df1c8f33ae030b48644626d4b21e969f8426
|
data/rails_db_dump.gemspec
CHANGED
|
@@ -9,9 +9,14 @@ Gem::Specification.new do |s|
|
|
|
9
9
|
s.authors = ["Leonid Shevtsov"]
|
|
10
10
|
s.email = ["leonid@shevtsov.me"]
|
|
11
11
|
s.homepage = "https://github.com/leonid-shevtsov/rails_db_dump"
|
|
12
|
-
s.summary = %q{
|
|
13
|
-
s.description =
|
|
12
|
+
s.summary = %q{Dump your Rails database with a simple rake task}
|
|
13
|
+
s.description = <<-EOT
|
|
14
|
+
Adds a Rake command to dump and restore the application's database.
|
|
14
15
|
|
|
16
|
+
Delegates to regular dumping utilities such as `mysqldump` and `pg_dump`. Unlike them, you *don't* have to remember any proper syntax.
|
|
17
|
+
|
|
18
|
+
You don't have to specify the connection parameters either; if the application works the dumper works, too.
|
|
19
|
+
EOT
|
|
15
20
|
s.files = `git ls-files`.split("\n")
|
|
16
21
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
17
22
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_db_dump
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Leonid Shevtsov
|
|
@@ -10,9 +10,12 @@ bindir: bin
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2015-06-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
description: |
|
|
14
|
+
Adds a Rake command to dump and restore the application's database.
|
|
15
|
+
|
|
16
|
+
Delegates to regular dumping utilities such as `mysqldump` and `pg_dump`. Unlike them, you *don't* have to remember any proper syntax.
|
|
17
|
+
|
|
18
|
+
You don't have to specify the connection parameters either; if the application works the dumper works, too.
|
|
16
19
|
email:
|
|
17
20
|
- leonid@shevtsov.me
|
|
18
21
|
executables: []
|
|
@@ -51,5 +54,5 @@ rubyforge_project:
|
|
|
51
54
|
rubygems_version: 2.4.5
|
|
52
55
|
signing_key:
|
|
53
56
|
specification_version: 4
|
|
54
|
-
summary:
|
|
57
|
+
summary: Dump your Rails database with a simple rake task
|
|
55
58
|
test_files: []
|