amplitude-api 0.4.0 → 0.4.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: d77136f3de8530795cb458c3c7447428ae77d4c8616549a717acdbace736f755
4
- data.tar.gz: 44525d279cf01b79e16b688e4c8c5bd471d521f4cd36e48578566d6bd8e5f4da
3
+ metadata.gz: f3c02441229c07c9e28f4ec4c257a92ffdeb4f078294c1440ac30c2aa914a1c3
4
+ data.tar.gz: ce60839a613363520648517f57cbec60c29835613f711d46da6fe9e6ef7cd752
5
5
  SHA512:
6
- metadata.gz: dfa9112b926f02684c5af775005fc268edee0466164d0b1a713d9a9e415ab8e21771a1d0c415f25977b7aeddaa5806db78db08119b5722b50d8b53c426d377b8
7
- data.tar.gz: ca836e20e09d29bd768d8dd348e963f83214ec8d9789de1feb40b70829056ab82ea62354eafb309b3f395d75f693f9cec6bc42151ae83773181b5ac1e3ae6e8b
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
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "amplitude_api"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class AmplitudeAPI
4
- VERSION = "0.4.0"
4
+ VERSION = "0.4.1"
5
5
  end
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.0
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