airbyte-ruby 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e2a30a14f2c6905481634344ea22f7501697b333fca72f40675010ae3c68b1fd
4
- data.tar.gz: 229ed44f9c8b30fa0abde43061258c7f7bf999a1f1b91309ef476f0c087a3b6f
3
+ metadata.gz: 1bfd28603af324ec379bc0da95a4c1a7b5ade011537dd83b5140410591a13697
4
+ data.tar.gz: 5d8cd8863d6ade739660805766ece1d6997e0c3dffb5502b296f362340614b01
5
5
  SHA512:
6
- metadata.gz: d979cc2c52149adbbaa7305b4c7a91d8613c58fcac3879f737d0002b724bf64f0d3549a69eab839f5e01af0278f7ecf796805f47e82b9c8c260bcc924eb162f3
7
- data.tar.gz: 4625746c9f016c46a82855d037c573f742252a71c5afa68a40a6ccf480897028b75350d95761f287a5f5b9f3896f5885021940ac457ba9dba7b646210ef0189e
6
+ metadata.gz: 36dc446eccc2038a7cb484cab7884581b530f637491d5bbc8d201cc65fefac65e3564550f8394bffaea66a7f3fbb0032488fc43908fa35365202d26a3ea1a6bc
7
+ data.tar.gz: b489e8c63081b085dd1013d73f21c57428b2fea050ef9be7ef473610cccc5dc15b4344849375197a2398eac5d767b0a22fb0156916c78b68d486b2731bd86da4
data/README.md CHANGED
@@ -1,41 +1,27 @@
1
1
  # AirbyteRuby
2
2
 
3
3
  [![codecov](https://codecov.io/gh/Quentinchampenois/airbyte-ruby/graph/badge.svg?token=OCNNZRG0PR)](https://codecov.io/gh/Quentinchampenois/airbyte-ruby)
4
+ ![Continuous Deployment](https://github.com/quentinchampenois/airbyte-ruby/actions/workflows/main.yml/badge.svg)
4
5
 
5
- TODO: Delete this and the text below, and describe your gem
6
-
7
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/airbyte_ruby`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+ Use the Airbyte API with Ruby.
8
7
 
9
8
  ## Installation
10
9
 
11
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
12
-
13
- Install the gem and add to the application's Gemfile by executing:
10
+ Add this line to your application's Gemfile:
14
11
 
15
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
12
+ ```ruby
13
+ gem 'airbyte-ruby'
14
+ ```
16
15
 
17
- If bundler is not being used to manage dependencies, install the gem by executing:
16
+ And then execute:
18
17
 
19
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
18
+ $ bundle install
20
19
 
21
20
  ## Usage
22
21
 
23
- TODO: Write usage instructions here
24
-
25
- ## Development
26
-
27
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
28
-
29
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
30
-
31
- ## Contributing
32
-
33
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/airbyte_ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/airbyte_ruby/blob/main/CODE_OF_CONDUCT.md).
22
+ There is an example script at `examples/airbyte.rb` that you can run with `bundle exec ruby examples/airbyte.rb`.
34
23
 
35
24
  ## License
36
25
 
37
26
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
38
27
 
39
- ## Code of Conduct
40
-
41
- Everyone interacting in the AirbyteRuby project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/airbyte_ruby/blob/main/CODE_OF_CONDUCT.md).
data/airbyte_ruby.gemspec CHANGED
@@ -30,6 +30,7 @@ Gem::Specification.new do |spec|
30
30
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
31
31
  spec.require_paths = ["lib"]
32
32
 
33
+ spec.add_dependency "activesupport", "~> 6.1"
33
34
  spec.add_dependency "faraday", "~> 2.7"
34
35
  # Uncomment to register a new dependency of your gem
35
36
  # spec.add_dependency "example-gem", "~> 1.0"
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "byebug"
4
3
  module AirbyteRuby
5
4
  # Requests module for AirbyteRuby
6
5
  module Requests
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AirbyteRuby
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: airbyte-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - quentinchampenois
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-10-16 00:00:00.000000000 Z
11
+ date: 2023-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activesupport
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '6.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '6.1'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: faraday
15
29
  requirement: !ruby/object:Gem::Requirement