ae_users_migrator 1.0.4 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/ae_users_migrator.gemspec +2 -2
- data/bin/export_ae_users +8 -0
- metadata +4 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.5
|
data/ae_users_migrator.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{ae_users_migrator}
|
8
|
-
s.version = "1.0.
|
8
|
+
s.version = "1.0.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Nat Budin"]
|
12
|
-
s.date = %q{2011-
|
12
|
+
s.date = %q{2011-05-23}
|
13
13
|
s.default_executable = %q{export_ae_users}
|
14
14
|
s.description = %q{Importer and exporter for ae_users databases using JSON-based dumpfiles}
|
15
15
|
s.email = %q{natbudin@gmail.com}
|
data/bin/export_ae_users
CHANGED
@@ -27,6 +27,14 @@ OptionParser.new do |opts|
|
|
27
27
|
opts.on("-d", "--database DATABASE", "Database to connect to") do |d|
|
28
28
|
options[:database] = d
|
29
29
|
end
|
30
|
+
|
31
|
+
opts.on("-h", "--host HOST", "Database host to connect to") do |h|
|
32
|
+
options[:host] = h
|
33
|
+
end
|
34
|
+
|
35
|
+
opts.on("-c", "--ssl-ca CA", "CA PEM file to use for database connection") do |c|
|
36
|
+
options[:sslca] = c
|
37
|
+
end
|
30
38
|
end.parse!
|
31
39
|
|
32
40
|
require 'rubygems'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ae_users_migrator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 29
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 5
|
10
|
+
version: 1.0.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Nat Budin
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-05-23 00:00:00 -04:00
|
19
19
|
default_executable: export_ae_users
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|