multiwoven-integrations 0.1.22 → 0.1.24

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
  SHA256:
3
- metadata.gz: 69e39456bc2712b926a0820d18b4ee308210795e7d51ea5147f33e3ce346135e
4
- data.tar.gz: 8e2e70fdd20242af5bd1c7c70d4343dae474122fbc5649ea0d6fc95ec1575fb9
3
+ metadata.gz: 7494eea71e50f51076f6b4be2ed1bbb132e92d8e4f691ae62f04749c1f31958e
4
+ data.tar.gz: 24e702b67483e16e91488b5371614d0e104b117ea813f373aad49fdc5a90fea3
5
5
  SHA512:
6
- metadata.gz: 0f65a4256df370fc646101d97ef4b6df335cf1e33bac817bddff64f3ef143859db900bd995597144cbb9256dd6d62bc5623bf2b162c0cbeee91fe8e3af7f6200
7
- data.tar.gz: 960284f07c9e4810938e745ae2e21da1e9c8f11a6e5b0160780575d31e63793a81c22158d44618e88a3b53230aceb00c50e39e692861427a57449a84588cfb80
6
+ metadata.gz: 9930995a67f2a08a6650a300482557b5d219788ea30775c0783709d4a6bead7db531e6e463d042b206752e8e77f95e5f08c3f60f369831fcf2b7af2fecb20619
7
+ data.tar.gz: 5cd1abc69633fb7e32b0c2f5336b2be2a914350cbed7050a9beaef49e246988170babcc5941564ebac1c22ec39ec1e8b55fa2eb224bc9573075df4a3faa3e094
@@ -32,7 +32,9 @@ module Multiwoven::Integrations::Destination
32
32
  name: stream["name"],
33
33
  json_schema: stream["json_schema"],
34
34
  request_method: stream["method"],
35
- action: stream["action"]
35
+ action: stream["action"],
36
+ batch_support: stream["batch_support"],
37
+ batch_size: stream["batch_size"]
36
38
  )
37
39
  end
38
40
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.1.22"
5
+ VERSION = "0.1.24"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multiwoven-integrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.22
4
+ version: 0.1.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subin T P
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-02-14 00:00:00.000000000 Z
11
+ date: 2024-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -337,7 +337,6 @@ files:
337
337
  - lib/multiwoven/integrations/source/snowflake/client.rb
338
338
  - lib/multiwoven/integrations/source/snowflake/config/meta.json
339
339
  - lib/multiwoven/integrations/source/snowflake/config/spec.json
340
- - multiwoven-integrations.gemspec
341
340
  - sig/multiwoven/integrations.rbs
342
341
  homepage: https://www.multiwoven.com/
343
342
  licenses:
@@ -362,7 +361,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
362
361
  - !ruby/object:Gem::Version
363
362
  version: '0'
364
363
  requirements: []
365
- rubygems_version: 3.4.1
364
+ rubygems_version: 3.5.3
366
365
  signing_key:
367
366
  specification_version: 4
368
367
  summary: Integration suite for open source reverse ETL platform
@@ -1,59 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/multiwoven/integrations/rollout"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "multiwoven-integrations"
7
- spec.version = Multiwoven::Integrations::VERSION
8
- spec.authors = ["Subin T P"]
9
- spec.email = ["subin@multiwoven.com"]
10
-
11
- spec.summary = "Integration suite for open source reverse ETL platform"
12
- spec.description = "Multiwoven Integrations is a comprehensive Ruby gem designed to facilitate seamless connectivity between various data sources and SaaS platforms."
13
-
14
- spec.homepage = "https://www.multiwoven.com/"
15
- spec.license = "MIT"
16
- spec.required_ruby_version = ">= 2.6.0"
17
-
18
- # spec.metadata["allowed_push_host"] = nil
19
- spec.metadata["github_repo"] = "https://github.com/Multiwoven/multiwoven-integrations"
20
- spec.metadata["homepage_uri"] = spec.homepage
21
- spec.metadata["source_code_uri"] = "https://github.com/Multiwoven/multiwoven-integrations"
22
- spec.metadata["changelog_uri"] = "https://github.com/Multiwoven/multiwoven-integrations/blob/master/CHANGELOG.md"
23
-
24
- # Specify which files should be added to the gem when it is released.
25
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
26
- spec.files = Dir.chdir(__dir__) do
27
- `git ls-files -z`.split("\x0").reject do |f|
28
- (File.expand_path(f) == __FILE__) ||
29
- f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
30
- end
31
- end
32
- spec.bindir = "exe"
33
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
34
- spec.require_paths = ["lib"]
35
-
36
- spec.add_runtime_dependency "activesupport"
37
- spec.add_runtime_dependency "async-websocket"
38
- spec.add_runtime_dependency "dry-schema"
39
- spec.add_runtime_dependency "dry-struct"
40
- spec.add_runtime_dependency "dry-types"
41
- spec.add_runtime_dependency "git"
42
- spec.add_runtime_dependency "google-cloud-bigquery"
43
- spec.add_runtime_dependency "pg"
44
- spec.add_runtime_dependency "rake"
45
- spec.add_runtime_dependency "restforce"
46
- spec.add_runtime_dependency "ruby-odbc"
47
- spec.add_runtime_dependency "sequel"
48
- spec.add_runtime_dependency "slack-ruby-client"
49
-
50
- spec.add_development_dependency "byebug"
51
- spec.add_development_dependency "rspec"
52
- spec.add_development_dependency "rubocop"
53
- spec.add_development_dependency "simplecov"
54
- spec.add_development_dependency "simplecov_json_formatter"
55
- spec.add_development_dependency "webmock"
56
-
57
- # For more information and examples about making a new gem, check out our
58
- # guide at: https://bundler.io/guides/creating_gem.html
59
- end