etl-integrations 0.1.81 → 0.1.82
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/multiwoven/integrations/rollout.rb +1 -1
- data/multiwoven-integrations.gemspec +65 -0
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65c16e5261b937f1864017d435dd9aaa1e08d0abdadb3dfded0e617d8ba3f664
|
|
4
|
+
data.tar.gz: 7e5297fb367e8bb5fb44b9013cf5ae9ec72152e701784161a8d7dfce916c09da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '098e7518af950b125061b9a6c9b39331010c9ad09d8dd364320d5f5436e13e009520ec0ff5dd7f2c0a3e1907d2e3a4f75a48508f56f672f727cdac1a531db2f2'
|
|
7
|
+
data.tar.gz: 6642ee6e7c0093e75d8cd9c08338fa05ff7e56b54e71a84995c6d399aa351ff2c702d329467fe6446159661f0020e1fb5ef4b4719ca6631d1efcc78fe041944a
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "lib/multiwoven/integrations/rollout"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "etl-integrations"
|
|
7
|
+
spec.version = Multiwoven::Integrations::VERSION
|
|
8
|
+
spec.authors = ["Anas Ahmed"]
|
|
9
|
+
spec.email = ["anas31197@gmail.com"]
|
|
10
|
+
|
|
11
|
+
spec.summary = "Integration suite for open source reverse ETL platform"
|
|
12
|
+
spec.description = "Etl Integrations is a comprehensive Ruby gem designed to facilitate seamless connectivity between various data sources and SaaS platforms."
|
|
13
|
+
|
|
14
|
+
spec.homepage = "https://www.github.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/anasValign/etl-tool"
|
|
20
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
21
|
+
spec.metadata["source_code_uri"] = "https://github.com/anasValign/etl-tool/tree/main/integrations"
|
|
22
|
+
spec.metadata["changelog_uri"] = "https://github.com/anasValign/etl-tool/blob/main/integrations/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 "csv"
|
|
39
|
+
spec.add_runtime_dependency "dry-schema"
|
|
40
|
+
spec.add_runtime_dependency "dry-struct"
|
|
41
|
+
spec.add_runtime_dependency "dry-types"
|
|
42
|
+
spec.add_runtime_dependency "git"
|
|
43
|
+
spec.add_runtime_dependency "google-apis-sheets_v4"
|
|
44
|
+
spec.add_runtime_dependency "google-cloud-bigquery"
|
|
45
|
+
spec.add_runtime_dependency "hubspot-api-client"
|
|
46
|
+
spec.add_runtime_dependency "net-sftp"
|
|
47
|
+
spec.add_runtime_dependency "pg"
|
|
48
|
+
spec.add_runtime_dependency "rake"
|
|
49
|
+
spec.add_runtime_dependency "restforce"
|
|
50
|
+
spec.add_runtime_dependency "ruby-limiter"
|
|
51
|
+
spec.add_runtime_dependency "ruby-odbc"
|
|
52
|
+
spec.add_runtime_dependency "sequel"
|
|
53
|
+
spec.add_runtime_dependency "slack-ruby-client"
|
|
54
|
+
spec.add_runtime_dependency "stripe"
|
|
55
|
+
|
|
56
|
+
spec.add_development_dependency "byebug"
|
|
57
|
+
spec.add_development_dependency "rspec"
|
|
58
|
+
spec.add_development_dependency "rubocop"
|
|
59
|
+
spec.add_development_dependency "simplecov"
|
|
60
|
+
spec.add_development_dependency "simplecov_json_formatter"
|
|
61
|
+
spec.add_development_dependency "webmock"
|
|
62
|
+
|
|
63
|
+
# For more information and examples about making a new gem, check out our
|
|
64
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
|
65
|
+
end
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: etl-integrations
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.82
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Anas Ahmed
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
@@ -360,10 +360,10 @@ dependencies:
|
|
|
360
360
|
- - ">="
|
|
361
361
|
- !ruby/object:Gem::Version
|
|
362
362
|
version: '0'
|
|
363
|
-
description:
|
|
364
|
-
|
|
363
|
+
description: Etl Integrations is a comprehensive Ruby gem designed to facilitate seamless
|
|
364
|
+
connectivity between various data sources and SaaS platforms.
|
|
365
365
|
email:
|
|
366
|
-
-
|
|
366
|
+
- anas31197@gmail.com
|
|
367
367
|
executables: []
|
|
368
368
|
extensions: []
|
|
369
369
|
extra_rdoc_files: []
|
|
@@ -484,6 +484,7 @@ files:
|
|
|
484
484
|
- lib/multiwoven/integrations/source/zoho_books/config/spec.json
|
|
485
485
|
- lib/multiwoven/integrations/source/zoho_books/icon.svg
|
|
486
486
|
- multiwoven-integrations-0.1.68.gem
|
|
487
|
+
- multiwoven-integrations.gemspec
|
|
487
488
|
- sig/multiwoven/integrations.rbs
|
|
488
489
|
homepage: https://www.github.com/
|
|
489
490
|
licenses:
|