amplitude-api 0.4.0 → 0.4.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/.rubocop.yml +2 -1
- data/Changelog.md +3 -0
- data/lib/amplitude-api.rb +3 -0
- data/lib/amplitude_api/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f3c02441229c07c9e28f4ec4c257a92ffdeb4f078294c1440ac30c2aa914a1c3
|
|
4
|
+
data.tar.gz: ce60839a613363520648517f57cbec60c29835613f711d46da6fe9e6ef7cd752
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7a494008cb8b42cacd4185278b7e7360f82a11bfeb67f4b26f17ef9232e001bb1b916e24357d96548ee52b4bc5a1bb14b42dd90bc78f1d1ed6c5e14caa5dee0
|
|
7
|
+
data.tar.gz: a39f9524e9e765c12c1cd4d4d51548abff9bcb3e3bd5895f53726f26a7d71e066ac1cd30a4ad1d64563c0317fbe4bfe1682bb4b404786dd3546d90a615b50909
|
data/.rubocop.yml
CHANGED
|
@@ -2528,7 +2528,8 @@ Naming/FileName:
|
|
|
2528
2528
|
VersionChanged: '1.23'
|
|
2529
2529
|
# Camel case file names listed in `AllCops:Include` and all file names listed
|
|
2530
2530
|
# in `AllCops:Exclude` are excluded by default. Add extra excludes here.
|
|
2531
|
-
Exclude:
|
|
2531
|
+
Exclude:
|
|
2532
|
+
- 'lib/amplitude-api.rb'
|
|
2532
2533
|
# When `true`, requires that each source file should define a class or module
|
|
2533
2534
|
# with a name which matches the file name (converted to ... case).
|
|
2534
2535
|
# It further expects it to be nested inside modules which match the names
|
data/Changelog.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
We would like to think our many [contributors](https://github.com/toothrot/amplitude-api/graphs/contributors) for
|
|
4
4
|
suggestions, ideas and improvements to Amplitude API.
|
|
5
5
|
|
|
6
|
+
## 0.4.1 (2022-04-28)
|
|
7
|
+
* Restores file needed for autoreload
|
|
8
|
+
|
|
6
9
|
## 0.4.0 (2022-04-28)
|
|
7
10
|
* Increases required Ruby version to supported ones. Minimum Ruby version is now 2.7
|
|
8
11
|
* Allows using version 2 of Faraday
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: amplitude-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Rakoczy
|
|
@@ -141,6 +141,7 @@ files:
|
|
|
141
141
|
- LICENSE
|
|
142
142
|
- Rakefile
|
|
143
143
|
- amplitude-api.gemspec
|
|
144
|
+
- lib/amplitude-api.rb
|
|
144
145
|
- lib/amplitude_api.rb
|
|
145
146
|
- lib/amplitude_api/config.rb
|
|
146
147
|
- lib/amplitude_api/event.rb
|