rails_db_dump 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c148c61085a90715676e3cd726068f1efb43451e
4
- data.tar.gz: 6663201a9255c48fb3584feb9f4209713daf7637
3
+ metadata.gz: 5915d25b5fd4a31ef8adf6d4c165a93657878cdf
4
+ data.tar.gz: 8964734f719c9e7a238f4cb4693a2747f7b2a2de
5
5
  SHA512:
6
- metadata.gz: cbb490599050e9b709e1bed85ed7200d56440b09c4d2ee5cb96909f9beb6d984399ee7eee6024366f3639be3679c0177a7509d10686f8372047eee32c2cc6a66
7
- data.tar.gz: 17894808147063858e20483df1556b3e52d844b4bce467f99e119a8d59f0d574e8d304be596d31886302116c6d5545e9d1aa3d7336b38d8e96d6303060621513
6
+ metadata.gz: a5de53e57e5873f83cf2bf3aa856ad95e8c402b018a1cd6b35b2adc2afd06e57794920b853524d9ea75eadf402197eb9209e97a0173007f15a514a5a4872d602
7
+ data.tar.gz: 5e3accb47c80c44d455c671ef4595137d85cf325a5f5506884169c211d12f50776fb0b6d90c24db9fd8c0fa679b4df1c8f33ae030b48644626d4b21e969f8426
@@ -1,3 +1,3 @@
1
1
  module RailsDbDump
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
@@ -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{dump your Rails database with a simple rake task}
13
- s.description = %q{rails_db_dump is a wrapper for the native dumper of whatever database engine you're using, taking access parameters from database.yml. Supports mysql, postgresql and sqlite at the moment.}
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.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: rails_db_dump is a wrapper for the native dumper of whatever database
14
- engine you're using, taking access parameters from database.yml. Supports mysql,
15
- postgresql and sqlite at the moment.
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: dump your Rails database with a simple rake task
57
+ summary: Dump your Rails database with a simple rake task
55
58
  test_files: []