quaderno 2.1.1 → 2.1.3

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: f2a54020a3dc74c8a5e2404f97a769d1543a50fefe6ecb96525b9e9813dbf3c9
4
- data.tar.gz: 266177a86d010c6ab328415ad48922c38114aff87c75d5033af90518eead03da
3
+ metadata.gz: 3b72b840488a77aa9debc644d902aa6ce0aadbaa1019decc45f8e39647a15348
4
+ data.tar.gz: 9c9fb8d00bfa50a463a7becb9fb67dc604778f657f02f34e7b8723ad67978f4d
5
5
  SHA512:
6
- metadata.gz: 59597e1a56992dd3c1175dff0d3b6d7321870b04e990900a573945b10f827907d74ae89c6da565dd6ac18d6ed46f3e07af72533d5fdb23063194e0321e0e0a1e
7
- data.tar.gz: 9ed734de5dd0490047b61dfe0f0a644dc071c1f0cd5bcf9ff3a51dd876990aa1966710b5c354f18ebe98170410af7d9bc9a1f6032e949bca0245599f9e1d3c79
6
+ metadata.gz: 78ac1a824eefa80f83c1b66f60cc3ea01ab4ef8788cab8a393cf840ccbbd3c1c2ff2cd8326eabd90baccf1731c10b4ae8fa00e372d03e50f883065e1dfdde604
7
+ data.tar.gz: 0e9fbc1193e4ecaf2b18fed0809ab3c0895bac882fed76fbcfe0ece38d969cc68ed534971eaf9120bb5d8984a921c96e56ebb1a03c996f1cbd9f8fcaf0c7d408
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Quaderno-ruby is a ruby wrapper for [Quaderno API] (https://github.com/quaderno/quaderno-api).
4
4
 
5
- Current version is 2.1.1 See the changelog [here](https://github.com/quaderno/quaderno-ruby/blob/master/changelog.md)
5
+ Current version is 2.1.2 See the changelog [here](https://github.com/quaderno/quaderno-ruby/blob/master/changelog.md)
6
6
 
7
7
  ## Installation & Configuration
8
8
 
@@ -706,7 +706,7 @@ Remember this is only a ruby wrapper for the original API. If you want more info
706
706
  ## License
707
707
  (The MIT License)
708
708
 
709
- Copyright © 2013-2015 Quaderno
709
+ Copyright © 2013-2023 Quaderno
710
710
 
711
711
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
712
712
 
data/changelog.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.1.3
4
+ * Bumped dependency httparty to 0.21.0 by [**adamgiounas**](https://github.com/adamgiounas): https://github.com/quaderno/quaderno-ruby/pull/28
5
+
6
+ ## 2.1.2
7
+ * Fixed a reference to non-existent variable by [**@fwitzke**](https://github.com/fwitzke)
3
8
  ## 2.1.1
4
9
  * Added assign operator to the user_agent_header
5
10
 
@@ -54,7 +54,7 @@ module Quaderno::Exceptions
54
54
  raise_exception(Quaderno::Exceptions::HasAssociatedDocuments, party_response.body, party_response) if party_response.response.class == Net::HTTPClientError
55
55
  end
56
56
 
57
- raise_exception(Quaderno::Exceptions::ServerError, 'Server error', response) if party_response.response.is_a?(Net::HTTPServerError)
57
+ raise_exception(Quaderno::Exceptions::ServerError, 'Server error', party_response) if party_response.response.is_a?(Net::HTTPServerError)
58
58
  end
59
59
 
60
60
  def raise_exception(klass, message, response)
@@ -1,3 +1,3 @@
1
1
  class Quaderno
2
- VERSION = "2.1.1"
2
+ VERSION = "2.1.3"
3
3
  end
data/quaderno.gemspec CHANGED
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
  spec.date = '2018-05-07'
22
22
  spec.extra_rdoc_files = %w(LICENSE.txt README.md)
23
23
 
24
- spec.add_dependency('httparty', '~> 0.13')
24
+ spec.add_dependency('httparty', '~> 0.21.0')
25
25
  spec.add_development_dependency('rdoc', '>= 6.3.1')
26
26
  spec.add_development_dependency('activesupport', '~> 4.2.0')
27
27
  spec.add_development_dependency('webmock', '~> 1.22.6')
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quaderno
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Recrea
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2018-05-07 00:00:00.000000000 Z
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.13'
19
+ version: 0.21.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.13'
26
+ version: 0.21.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rdoc
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -173,7 +173,7 @@ homepage: http://github.com/quaderno/quaderno-ruby
173
173
  licenses:
174
174
  - MIT
175
175
  metadata: {}
176
- post_install_message:
176
+ post_install_message:
177
177
  rdoc_options: []
178
178
  require_paths:
179
179
  - lib
@@ -189,7 +189,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
189
189
  version: '0'
190
190
  requirements: []
191
191
  rubygems_version: 3.1.6
192
- signing_key:
192
+ signing_key:
193
193
  specification_version: 4
194
194
  summary: Ruby wrapper for the Quaderno API (https://quaderno.io/docs/api)
195
195
  test_files: []