alephant-sequencer 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/alephant/sequencer.rb +2 -2
- data/lib/alephant/sequencer/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63945d43d55c22f78538848da3260f0476eed6a7
|
4
|
+
data.tar.gz: 3f32fc5e8bdf2598cec0d55de607a158fecc7eef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5db714dd5a3758bd4a81b8dfdf857aa6fedbadd4ea83db9b5d86b505168d7de52f9260855cac7678c7795b41af592d08e7212760d46ca54fbf7ab16b45f24bc0
|
7
|
+
data.tar.gz: ec1843f63176369541ce0ed129da354f90736262e892a91c903a5c90cc0dd6d54e005beb003e0ebedbbc51d0db6737dd1096452a6c31c07e2d34ab5d7ebb4a30
|
data/lib/alephant/sequencer.rb
CHANGED
@@ -6,9 +6,9 @@ module Alephant
|
|
6
6
|
module Sequencer
|
7
7
|
@@sequence_tables = {}
|
8
8
|
|
9
|
-
def self.create(table_name, ident, jsonpath = nil)
|
9
|
+
def self.create(table_name, ident, jsonpath = nil, keep_all = true)
|
10
10
|
@@sequence_tables[table_name] ||= SequenceTable.new(table_name)
|
11
|
-
Sequencer.new(@@sequence_tables[table_name], ident, jsonpath)
|
11
|
+
Sequencer.new(@@sequence_tables[table_name], ident, jsonpath, keep_all)
|
12
12
|
end
|
13
13
|
|
14
14
|
end
|