dyna 0.1.6 → 0.1.7
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/dyna/exporter.rb +1 -0
- data/lib/dyna/filterable.rb +2 -2
- data/lib/dyna/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dbe5f22bbdcbee71087af4e8cda0d1f8012314b2
|
|
4
|
+
data.tar.gz: f0c508309a68a01ad44cd026760d9d7ea6d38569
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e9b8af4fefdcc374db854c566e6cc07b904d715224aff6b7399d62d0c6b58bf86cc89ff5216e89041bb4a8fb44844c34a484dac894a7b716e1e9a03f9e9178a
|
|
7
|
+
data.tar.gz: 4279144f0e7e5a14b01db20eea7daf5ff7ff3aed01ac788c33181e7748d6d037daeafe89147c1e5789669960aee16453e01c4cbfdffc52e64e666e81b7229325
|
data/lib/dyna/exporter.rb
CHANGED
data/lib/dyna/filterable.rb
CHANGED
|
@@ -3,14 +3,14 @@ module Dyna
|
|
|
3
3
|
def should_skip(table_name)
|
|
4
4
|
if @options.table_names
|
|
5
5
|
unless @options.table_names.include?(table_name)
|
|
6
|
-
log(:debug, "skip table(with tables_names option) #{table_name}")
|
|
6
|
+
log(:debug, "skip table(with tables_names option) #{table_name}", false)
|
|
7
7
|
return true
|
|
8
8
|
end
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
if @options.exclude_table_names
|
|
12
12
|
if @options.exclude_table_names.any? {|regex| table_name =~ regex}
|
|
13
|
-
log(:debug, "skip table(with exclude_tables_names option) #{table_name}")
|
|
13
|
+
log(:debug, "skip table(with exclude_tables_names option) #{table_name}", false)
|
|
14
14
|
return true
|
|
15
15
|
end
|
|
16
16
|
end
|
data/lib/dyna/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dyna
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- wata
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-01-
|
|
11
|
+
date: 2017-01-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk
|