dbdump_command 0.2.1 → 1.3.0
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 +7 -0
- data/bin/dbdump +1 -0
- data/lib/dbdump_command/version.rb +1 -1
- metadata +52 -71
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: cf589035f9b7f0257ebd3e0733769efcfd996a5a
|
|
4
|
+
data.tar.gz: 4ce0aea0e147934b2a014e7ab055c57fe6d683a3
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: f103726c2ee1cefcd21d7fdde494aba8a90027d2611fc288cbed0755f462b7c9cd8456d68453164e09ebb75aac7156b1f3b692fcac999287529d471922314dd6
|
|
7
|
+
data.tar.gz: e3bb96e9efc1ce8d55a3367ae028bad1b74f1e18a2024a1fae08cfce0b32e68a1754afff7635f46e6e4bd8ab95ac4151ce559c8ba15b8aed212ccee6fba7f72d
|
data/bin/dbdump
CHANGED
metadata
CHANGED
|
@@ -1,73 +1,63 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dbdump_command
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease:
|
|
6
|
-
segments:
|
|
7
|
-
- 0
|
|
8
|
-
- 2
|
|
9
|
-
- 1
|
|
10
|
-
version: 0.2.1
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.3.0
|
|
11
5
|
platform: ruby
|
|
12
|
-
authors:
|
|
6
|
+
authors:
|
|
13
7
|
- Will Bryant
|
|
14
8
|
autorequire:
|
|
15
9
|
bindir: bin
|
|
16
10
|
cert_chain: []
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
- !ruby/object:Gem::Dependency
|
|
11
|
+
date: 2013-07-06 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
21
14
|
name: activerecord
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
- !ruby/object:Gem::Version
|
|
28
|
-
hash: 3
|
|
29
|
-
segments:
|
|
30
|
-
- 0
|
|
31
|
-
version: "0"
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - '>='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
32
20
|
type: :runtime
|
|
33
|
-
version_requirements: *id001
|
|
34
|
-
- !ruby/object:Gem::Dependency
|
|
35
|
-
name: rake
|
|
36
21
|
prerelease: false
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - '>='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
46
34
|
type: :development
|
|
47
|
-
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
48
41
|
description: |
|
|
49
42
|
This plugin adds a dbdump command which dumps your Rails database out.
|
|
50
|
-
|
|
43
|
+
|
|
51
44
|
This master branch supports Rails 3.0 and above, as a gem command.
|
|
52
45
|
For Rails 2.3, use the rails_2_3 branch from github and install as a plugin.
|
|
53
|
-
|
|
46
|
+
|
|
54
47
|
Like rails dbconsole, it takes your database connection details from
|
|
55
48
|
config/database.yml, and supports mysql, mysql2, postgresql, and sqlite.
|
|
56
|
-
|
|
49
|
+
|
|
57
50
|
It takes the same options as rails dbconsole, ie. -p to supply the password
|
|
58
51
|
to your dump program for mysql and postgresql. (Note that for mysql, this
|
|
59
52
|
means that the password is visible when other users on the system run 'ps'.
|
|
60
53
|
Postgresql does not have this problem as it uses an environment variable set
|
|
61
54
|
in ENV before execing and so not visible in ps.)
|
|
62
|
-
|
|
63
55
|
email: will.bryant@gmail.com
|
|
64
|
-
executables:
|
|
56
|
+
executables:
|
|
65
57
|
- dbdump
|
|
66
58
|
extensions: []
|
|
67
|
-
|
|
68
59
|
extra_rdoc_files: []
|
|
69
|
-
|
|
70
|
-
files:
|
|
60
|
+
files:
|
|
71
61
|
- MIT-LICENSE
|
|
72
62
|
- README
|
|
73
63
|
- Rakefile
|
|
@@ -79,36 +69,27 @@ files:
|
|
|
79
69
|
- uninstall.rb
|
|
80
70
|
homepage: http://github.com/willbryant/dbdump_command
|
|
81
71
|
licenses: []
|
|
82
|
-
|
|
72
|
+
metadata: {}
|
|
83
73
|
post_install_message:
|
|
84
74
|
rdoc_options: []
|
|
85
|
-
|
|
86
|
-
require_paths:
|
|
75
|
+
require_paths:
|
|
87
76
|
- lib
|
|
88
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
none: false
|
|
99
|
-
requirements:
|
|
100
|
-
- - ">="
|
|
101
|
-
- !ruby/object:Gem::Version
|
|
102
|
-
hash: 3
|
|
103
|
-
segments:
|
|
104
|
-
- 0
|
|
105
|
-
version: "0"
|
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - '>='
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
|
+
requirements:
|
|
84
|
+
- - '>='
|
|
85
|
+
- !ruby/object:Gem::Version
|
|
86
|
+
version: '0'
|
|
106
87
|
requirements: []
|
|
107
|
-
|
|
108
88
|
rubyforge_project:
|
|
109
|
-
rubygems_version:
|
|
89
|
+
rubygems_version: 2.0.2
|
|
110
90
|
signing_key:
|
|
111
|
-
specification_version:
|
|
112
|
-
summary: Adds support for displaying your ActiveRecord tables, named scopes, collections,
|
|
91
|
+
specification_version: 4
|
|
92
|
+
summary: Adds support for displaying your ActiveRecord tables, named scopes, collections,
|
|
93
|
+
or plain arrays in a table view when working in script/console, shell, or email
|
|
94
|
+
template.
|
|
113
95
|
test_files: []
|
|
114
|
-
|