quaderno 3.0.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +6 -6
- data/changelog.md +3 -0
- data/lib/quaderno-ruby/version.rb +1 -1
- data/quaderno.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8a29206374ced036160b0d633dee03e276d0cc54f438894840afddfa55e75cc5
|
|
4
|
+
data.tar.gz: 90095158c915a928ea8e09f9d4c9f17b6b57eda506d01bbeacba89ee4d21e839
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
|
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
|
|
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/
|
|
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
|
|
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
|
|
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
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', '~>
|
|
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.
|
|
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:
|
|
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:
|
|
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.
|
|
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)
|