survey-gizmo-ruby 7.1.0 → 7.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: abb1fc732914368016f3957ab6656bdae5a26d2c244ed74e63918e1e1ffe2121
4
- data.tar.gz: ee4d9d163be112583890f73c6584ed3561c8c2aa0fc23006582a58c6ed8a4686
3
+ metadata.gz: 885d7bfe06ff0c60d6e3552c99b303c12a41415fdf057c709c0eca44d1bbb470
4
+ data.tar.gz: da030f365d345dd181969046ef2373dd9102adcc6188f641fb990c7bf678ae67
5
5
  SHA512:
6
- metadata.gz: 63db1d1135d179a1e2b87dba812e367ef9dbca6817071333a82cc623946a45228a07f1daa3f7fdf55152661d365575caf6b944a100815c9d443d4a3ac129c733
7
- data.tar.gz: ce48bf573258b3efb6e2bf8600246ffab48669c0de69c4e95128bacf4bcd3eee658b9d330615b81cf792b37574b53766c21211d68ee0639ca57cf5083648bf4f
6
+ metadata.gz: 6a7e75961d1605cb8df0e03a8d5fab08aa83a6851c5ec5952e1098cbff4971568203959650db5f070801af4394ccceb82ab43375523a9cbd06721cc6316ac779
7
+ data.tar.gz: 8f950a44439153f49494d664529addb91e07b632d0cc8276dadca837572793bfbd6557b25a98b1b6902e8ec99c0dd45a80eb792d170003c05aae02e804376e9a
@@ -1,5 +1,9 @@
1
1
  # Versions
2
2
 
3
+ ## 7.1.1
4
+ * Add missing `subtype` parameter to `Campain` required at creation
5
+ * Fix use of deprecated Faraday error class (#110)
6
+
3
7
  ## 7.1.0
4
8
  * Loosen dependencies on ActiveSupport and other gems to support Rails 6
5
9
  * Minor fix to `SurveyGizmo::Configuration#region=` to raise proper error when region is invalid
@@ -6,6 +6,7 @@ module SurveyGizmo::API
6
6
  attribute :name, String
7
7
  attribute :type, String
8
8
  attribute :_type, String
9
+ attribute :subtype, String
9
10
  attribute :_subtype, String
10
11
  attribute :__subtype, String
11
12
  attribute :status, String
@@ -65,7 +65,7 @@ module SurveyGizmo
65
65
  tries: 4,
66
66
  on: [
67
67
  Errno::ETIMEDOUT,
68
- Faraday::Error::ClientError,
68
+ Faraday::ClientError,
69
69
  Net::ReadTimeout,
70
70
  SurveyGizmo::BadResponseError,
71
71
  SurveyGizmo::RateLimitExceededError
@@ -1,3 +1,3 @@
1
1
  module SurveyGizmo
2
- VERSION = '7.1.0'
2
+ VERSION = '7.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: survey-gizmo-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.1.0
4
+ version: 7.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kabari Hendrick
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2019-12-05 00:00:00.000000000 Z
14
+ date: 2020-04-10 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: activesupport
@@ -246,7 +246,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
246
246
  - !ruby/object:Gem::Version
247
247
  version: '0'
248
248
  requirements: []
249
- rubygems_version: 3.0.3
249
+ rubygems_version: 3.1.2
250
250
  signing_key:
251
251
  specification_version: 4
252
252
  summary: Gem to use the SurveyGizmo.com REST API, v3+