amplitude-api 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -3
- data/Changelog.md +3 -0
- data/Gemfile +1 -12
- data/amplitude-api.gemspec +1 -1
- data/lib/amplitude_api/version.rb +1 -1
- metadata +4 -5
- data/Gemfile.lock +0 -63
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4372cbca5a551be9721be89fbbe3ee80dc9216d8fa44fba7b0031a5e62785cd
|
4
|
+
data.tar.gz: ee6056b7e64c2b51f9365a8e57c90a1b4b8fc5edc406b1f7cbabf4caf831b7ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f55a3e558f985bac1d78ac842532dfd5dfc69290f7ece8f9c197c71f155ae802de8a00649c5be9bcdd4a67e995e59eaf9cbcc3586808ddfedbb00aba259cf39b
|
7
|
+
data.tar.gz: 3e6d679080a879ccf02ab29b3f13839b29c78bfb28cd48793275345ca41b77a61d09231e82d3cc4132319d14eef0ac807e5fa589330a1e0f84486fa534f875a4
|
data/.gitignore
CHANGED
@@ -27,9 +27,9 @@ build/
|
|
27
27
|
|
28
28
|
# for a library or gem, you might want to ignore these files since the code is
|
29
29
|
# intended to run in multiple environments; otherwise, check them in:
|
30
|
-
|
31
|
-
|
32
|
-
|
30
|
+
Gemfile.lock
|
31
|
+
.ruby-version
|
32
|
+
.ruby-gemset
|
33
33
|
|
34
34
|
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
35
35
|
.rvmrc
|
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.3.3 (2021-02-24)
|
7
|
+
* Relaxes Faraday dependency
|
8
|
+
|
6
9
|
## 0.3.2 (2021-02-23)
|
7
10
|
* Creates new properties on initialization
|
8
11
|
|
data/Gemfile
CHANGED
@@ -1,14 +1,3 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
|
3
|
-
# Generated from /Users/alex/development/amplitude-api/amplitude-api.gemspec
|
4
2
|
source "https://rubygems.org"
|
5
|
-
|
6
|
-
gem "faraday", "~> 1.3"
|
7
|
-
|
8
|
-
group :development, :test do
|
9
|
-
gem "pry", "~> 0.12.2"
|
10
|
-
gem "rake", ">= 12.0"
|
11
|
-
gem "rspec", ">= 2.99.0"
|
12
|
-
gem "rubocop", "~> 0.66.0", require: false
|
13
|
-
gem "rubocop-rspec"
|
14
|
-
end
|
3
|
+
gemspec
|
data/amplitude-api.gemspec
CHANGED
@@ -22,6 +22,6 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.add_development_dependency "pry", "~> 0.12.2"
|
23
23
|
spec.add_development_dependency "rake", "~> 12.0", ">= 12.0"
|
24
24
|
spec.add_development_dependency "rspec", "~> 2.99", ">= 2.99.0"
|
25
|
-
spec.add_dependency "faraday", "~> 1.
|
25
|
+
spec.add_dependency "faraday", "~> 1.0"
|
26
26
|
spec.required_ruby_version = ">= 2.4"
|
27
27
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: amplitude-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Rakoczy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-02-
|
11
|
+
date: 2021-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -70,14 +70,14 @@ dependencies:
|
|
70
70
|
requirements:
|
71
71
|
- - "~>"
|
72
72
|
- !ruby/object:Gem::Version
|
73
|
-
version: '1.
|
73
|
+
version: '1.0'
|
74
74
|
type: :runtime
|
75
75
|
prerelease: false
|
76
76
|
version_requirements: !ruby/object:Gem::Requirement
|
77
77
|
requirements:
|
78
78
|
- - "~>"
|
79
79
|
- !ruby/object:Gem::Version
|
80
|
-
version: '1.
|
80
|
+
version: '1.0'
|
81
81
|
description: Provides an integration for sending events to Amplitude
|
82
82
|
email:
|
83
83
|
- arakoczy@gmail.com
|
@@ -92,7 +92,6 @@ files:
|
|
92
92
|
- ".yardopts"
|
93
93
|
- Changelog.md
|
94
94
|
- Gemfile
|
95
|
-
- Gemfile.lock
|
96
95
|
- LICENSE
|
97
96
|
- Rakefile
|
98
97
|
- amplitude-api.gemspec
|
data/Gemfile.lock
DELETED
@@ -1,63 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: https://rubygems.org/
|
3
|
-
specs:
|
4
|
-
ast (2.4.0)
|
5
|
-
coderay (1.1.2)
|
6
|
-
diff-lcs (1.3)
|
7
|
-
faraday (1.3.0)
|
8
|
-
faraday-net_http (~> 1.0)
|
9
|
-
multipart-post (>= 1.2, < 3)
|
10
|
-
ruby2_keywords
|
11
|
-
faraday-net_http (1.0.1)
|
12
|
-
jaro_winkler (1.5.2)
|
13
|
-
method_source (0.9.2)
|
14
|
-
multipart-post (2.1.1)
|
15
|
-
parallel (1.17.0)
|
16
|
-
parser (2.6.2.0)
|
17
|
-
ast (~> 2.4.0)
|
18
|
-
pry (0.12.2)
|
19
|
-
coderay (~> 1.1.0)
|
20
|
-
method_source (~> 0.9.0)
|
21
|
-
psych (3.1.0)
|
22
|
-
rainbow (3.0.0)
|
23
|
-
rake (12.3.3)
|
24
|
-
rspec (3.8.0)
|
25
|
-
rspec-core (~> 3.8.0)
|
26
|
-
rspec-expectations (~> 3.8.0)
|
27
|
-
rspec-mocks (~> 3.8.0)
|
28
|
-
rspec-core (3.8.0)
|
29
|
-
rspec-support (~> 3.8.0)
|
30
|
-
rspec-expectations (3.8.2)
|
31
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
32
|
-
rspec-support (~> 3.8.0)
|
33
|
-
rspec-mocks (3.8.0)
|
34
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
35
|
-
rspec-support (~> 3.8.0)
|
36
|
-
rspec-support (3.8.0)
|
37
|
-
rubocop (0.66.0)
|
38
|
-
jaro_winkler (~> 1.5.1)
|
39
|
-
parallel (~> 1.10)
|
40
|
-
parser (>= 2.5, != 2.5.1.1)
|
41
|
-
psych (>= 3.1.0)
|
42
|
-
rainbow (>= 2.2.2, < 4.0)
|
43
|
-
ruby-progressbar (~> 1.7)
|
44
|
-
unicode-display_width (>= 1.4.0, < 1.6)
|
45
|
-
rubocop-rspec (1.32.0)
|
46
|
-
rubocop (>= 0.60.0)
|
47
|
-
ruby-progressbar (1.10.0)
|
48
|
-
ruby2_keywords (0.0.4)
|
49
|
-
unicode-display_width (1.5.0)
|
50
|
-
|
51
|
-
PLATFORMS
|
52
|
-
ruby
|
53
|
-
|
54
|
-
DEPENDENCIES
|
55
|
-
faraday (~> 1.3)
|
56
|
-
pry (~> 0.12.2)
|
57
|
-
rake (>= 12.0)
|
58
|
-
rspec (>= 2.99.0)
|
59
|
-
rubocop (~> 0.66.0)
|
60
|
-
rubocop-rspec
|
61
|
-
|
62
|
-
BUNDLED WITH
|
63
|
-
1.17.3
|