rudder_analytics_sync 1.0.7 → 2.0.1
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/.github/dependabot.yml +6 -0
- data/.github/pull_request_template.md +3 -0
- data/.github/workflows/build-and-quality-checks.yml +31 -0
- data/.github/workflows/check-pr-title.yml +16 -0
- data/.github/workflows/notion-pr-sync.yml +55 -0
- data/.github/workflows/slack-notify.yml +41 -0
- data/.gitignore +6 -1
- data/.hound.yml +1 -1
- data/.rubocop.yml +30 -4
- data/CODEOWNERS +1 -0
- data/Gemfile +2 -1
- data/LICENSE.txt +1 -1
- data/README.md +75 -22
- data/SECURITY.md +19 -0
- data/bin/console +1 -1
- data/example/example.rb +151 -41
- data/lib/rudder_analytics_sync/batch.rb +20 -6
- data/lib/rudder_analytics_sync/client.rb +18 -0
- data/lib/rudder_analytics_sync/configuration.rb +2 -2
- data/lib/rudder_analytics_sync/constants.rb +21 -0
- data/lib/rudder_analytics_sync/logging.rb +1 -1
- data/lib/rudder_analytics_sync/operations/alias.rb +8 -1
- data/lib/rudder_analytics_sync/operations/group.rb +8 -1
- data/lib/rudder_analytics_sync/operations/identify.rb +15 -5
- data/lib/rudder_analytics_sync/operations/operation.rb +22 -18
- data/lib/rudder_analytics_sync/operations/page.rb +8 -1
- data/lib/rudder_analytics_sync/operations/screen.rb +9 -2
- data/lib/rudder_analytics_sync/operations/track.rb +13 -5
- data/lib/rudder_analytics_sync/request.rb +21 -10
- data/lib/rudder_analytics_sync/utils.rb +26 -22
- data/lib/rudder_analytics_sync/version.rb +1 -1
- data/rudder_analytics_sync.gemspec +5 -2
- metadata +18 -10
- data/.travis.yml +0 -6
- data/CHANGELOG.md +0 -35
data/CHANGELOG.md
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
# Changelog
|
2
|
-
All notable changes to this project will be documented in this file.
|
3
|
-
|
4
|
-
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
-
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
-
|
7
|
-
## [Unreleased]
|
8
|
-
|
9
|
-
## [1.1.0] - 2020-04-11
|
10
|
-
|
11
|
-
### Added
|
12
|
-
- Added supprt for http_proxy and https_proxy environment variables https://github.com/whatthewhat/simple_segment/pull/26 by @saks
|
13
|
-
- Added Ruby 2.7 to travis.yml
|
14
|
-
|
15
|
-
## [1.0.0] - 2019-12-12
|
16
|
-
|
17
|
-
### Added
|
18
|
-
- Allow passing custom Net::HTTP options (e.g. timeout) https://github.com/whatthewhat/simple_segment/pull/23 by @barodeur
|
19
|
-
|
20
|
-
### Changed
|
21
|
-
- The gem is no longer tested with Ruby versions below 2.4
|
22
|
-
|
23
|
-
## [0.3.0] - 2018-03-15
|
24
|
-
|
25
|
-
### Changed
|
26
|
-
- Date properties are now automatically converted to ISO 8601 to be consistent with the official client https://github.com/whatthewhat/simple_segment/pull/19 by @juanramoncg
|
27
|
-
|
28
|
-
[Unreleased]: https://github.com/whatthewhat/simple_segment/compare/v1.1.0...HEAD
|
29
|
-
[1.1.0]: https://github.com/whatthewhat/simple_segment/compare/v1.0.0...v1.1.0
|
30
|
-
[1.0.0]: https://github.com/whatthewhat/simple_segment/compare/v0.3.0...v1.0.0
|
31
|
-
[0.3.0]: https://github.com/whatthewhat/simple_segment/compare/v0.2.1...v0.3.0
|
32
|
-
[0.2.1]: https://github.com/whatthewhat/simple_segment/compare/v0.2.0...v0.2.1
|
33
|
-
[0.2.0]: https://github.com/whatthewhat/simple_segment/compare/v0.1.1...v0.2.0
|
34
|
-
[0.1.1]: https://github.com/whatthewhat/simple_segment/compare/v0.1.0...v0.1.1
|
35
|
-
[0.1.0]: https://github.com/whatthewhat/simple_segment/compare/2d62f07a1df8388000b0b5a20331409132d05ad3...v0.1.0
|