quaderno 3.0.0 → 3.0.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: 110d06dbefd7137c90b3446ba4fbd0e6cb967e215244de1c7a1f54d9beecf46c
4
- data.tar.gz: 5f484fa04535448a06fd960e0656ab29b1abefea9db2dfa7e672f83511891af4
3
+ metadata.gz: 8a29206374ced036160b0d633dee03e276d0cc54f438894840afddfa55e75cc5
4
+ data.tar.gz: 90095158c915a928ea8e09f9d4c9f17b6b57eda506d01bbeacba89ee4d21e839
5
5
  SHA512:
6
- metadata.gz: 925cbcdacf1bfa00b11c3b3f3e9f5791da6295f550d1feac7dd37d00dc2d5963752840c66cfb9e88d9e56d6e6d1fe4175ba4a1c084b83ba295971862056e0d64
7
- data.tar.gz: 5439f1cb10b38539450c5351a256117fa39d906245a985533fc56a49d78ce456634aa1963f97fcbef57ce0f28227082a717b154618d987e3f5cd857e4c434552
6
+ metadata.gz: e14dbf990fcea09846042f6c2eb298862cc368b93e018384e046fd2590e826d0cff939b7c939269dce0f2908c1b3728c323b8ccc1110498f7ef6e661291027e0
7
+ data.tar.gz: 3343ac63b1f26657b7e695305cbf48f92ff2e67a4d5edb80321a50d4cfe6ccbc721b16ca31a8612addbef7d0d03ca371dc15ab7a0547c5706cd1e25095ba2e60
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Quaderno-ruby is a ruby wrapper for the [Quaderno API](https://developers.quaderno.io/api).
4
4
 
5
- Current version is 3.0.0 → See the changelog [here](https://github.com/quaderno/quaderno-ruby/blob/master/changelog.md).
5
+ Current version is 3.0.1 → See the changelog [here](https://github.com/quaderno/quaderno-ruby/blob/master/changelog.md).
6
6
 
7
7
  To learn more about our API and ecosystem, check [developers.quaderno.io](https://developers.quaderno.io).
8
8
 
@@ -21,19 +21,19 @@ To configure just add this to your initializers
21
21
  config.auth_token = 'my_authenticate_token'
22
22
  config.url = 'https://my_subdomain.quadernoapp.com/api/'
23
23
  config.api_version = API_VERSION # Optional, defaults to the API version set in your account
24
- config.user_agent_header = 'my custom user agent' # Optional, will make support for your account more efficient if you are doing oauth integrations
24
+ config.user_agent_header = 'my custom user agent' # Optional, will make support for your account more efficient if you are doing OAuth integrations
25
25
  end
26
26
  ```
27
27
 
28
28
  ## Quaderno Sandbox
29
29
 
30
- Quaderno Sandbox is our public staging environment, a safe space to experiment with our set of APIs and products. As a complete separate environment, it has it's own URL https://sandbox-quadernoapp.com and credentials.
30
+ Quaderno Sandbox is our public staging environment, a safe space to experiment with our set of APIs and products. As a completely separate environment, it has its own URL https://sandbox-quadernoapp.com and credentials.
31
31
 
32
- It's perfect for your first steps with our tools. Please check https://developers.quaderno.io/dev_tools/sandbox to learn about its test data and limitations.
32
+ It's perfect for your first steps with our tools. Please check https://developers.quaderno.io/developer-tools/sandbox/ to learn about its test data and limitations.
33
33
 
34
34
  ## Get authorization data
35
35
 
36
- You can get your account subdomain by grabbing it from your account url or by calling the authorization method with your personal api token.
36
+ You can get your account subdomain by grabbing it from your account URL or by calling the authorization method with your personal API token.
37
37
 
38
38
  ```ruby
39
39
  response = Quaderno::Base.authorization 'my_authenticate_token', environment #=> Quaderno::Base
@@ -42,7 +42,7 @@ You can get your account subdomain by grabbing it from your account url or by ca
42
42
 
43
43
  Note that `environment` is an optional argument. By passing `:sandbox`, you will retrieve your credentials for the sandbox environment and not for production.
44
44
 
45
- This will return a hash with the information about your api url, which includes the account subdomain.
45
+ This will return a hash with the information about your API URL, which includes the account subdomain.
46
46
 
47
47
  ## Ping the service
48
48
 
data/changelog.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.0.1
4
+ * Security: update development dependency activesupport to 6.1.7.3
5
+
3
6
  ## 3.0.0
4
7
  * Added support for accounts API
5
8
  * Added support for addresses API
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Quaderno
4
- VERSION = "3.0.0"
4
+ VERSION = "3.0.1"
5
5
  end
data/quaderno.gemspec CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
  spec.extra_rdoc_files = %w(LICENSE.txt README.md)
23
23
 
24
24
  spec.add_dependency('httparty', '~> 0.21')
25
- spec.add_development_dependency('activesupport', '~> 4.2.0')
25
+ spec.add_development_dependency('activesupport', '~> 6.1.7.3')
26
26
  spec.add_development_dependency('bundler', '~> 2.2')
27
27
  spec.add_development_dependency('rake', '>= 12.3.3')
28
28
  spec.add_development_dependency('rdoc', '>= 6.3.1')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quaderno
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Recrea
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 4.2.0
33
+ version: 6.1.7.3
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 4.2.0
40
+ version: 6.1.7.3
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -196,7 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
196
196
  - !ruby/object:Gem::Version
197
197
  version: '0'
198
198
  requirements: []
199
- rubygems_version: 3.1.6
199
+ rubygems_version: 3.4.10
200
200
  signing_key:
201
201
  specification_version: 4
202
202
  summary: Ruby wrapper for the Quaderno API (https://quaderno.io/docs/api)