Skip to content

Commit 38b1f04

Browse files
committed
Release candidate for 1.5.x
1 parent a8f4058 commit 38b1f04

File tree

261 files changed

+349
-870
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

261 files changed

+349
-870
lines changed

appwrite.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |spec|
22

33
spec.name = 'appwrite'
4-
spec.version = '11.0.0-rc.5'
4+
spec.version = '11.0.0-rc.6'
55
spec.license = 'BSD-3-Clause'
66
spec.summary = 'Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API'
77
spec.author = 'Appwrite Team'

docs/examples/account/add-authenticator.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ client = Client.new
1010

1111
account = Account.new(client)
1212

13-
response = account.add_authenticator(
13+
result = account.add_authenticator(
1414
type: AuthenticatorType::TOTP
1515
)
16-
17-
puts response.inspect

docs/examples/account/create-anonymous-session.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,4 @@ client = Client.new
88

99
account = Account.new(client)
1010

11-
response = account.create_anonymous_session()
12-
13-
puts response.inspect
11+
result = account.create_anonymous_session()

docs/examples/account/create-challenge.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ client = Client.new
99

1010
account = Account.new(client)
1111

12-
response = account.create_challenge(
12+
result = account.create_challenge(
1313
factor: AuthenticationFactor::TOTP
1414
)
15-
16-
puts response.inspect

docs/examples/account/create-email-password-session.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ client = Client.new
88

99
account = Account.new(client)
1010

11-
response = account.create_email_password_session(
11+
result = account.create_email_password_session(
1212
email: 'email@example.com',
1313
password: 'password'
1414
)
15-
16-
puts response.inspect

docs/examples/account/create-email-token.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,8 @@ client = Client.new
88

99
account = Account.new(client)
1010

11-
response = account.create_email_token(
11+
result = account.create_email_token(
1212
user_id: '<USER_ID>',
1313
email: 'email@example.com',
1414
phrase: false # optional
1515
)
16-
17-
puts response.inspect

docs/examples/account/create-j-w-t.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,4 @@ client = Client.new
88

99
account = Account.new(client)
1010

11-
response = account.create_jwt()
12-
13-
puts response.inspect
11+
result = account.create_jwt()

docs/examples/account/create-magic-u-r-l-token.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ client = Client.new
88

99
account = Account.new(client)
1010

11-
response = account.create_magic_url_token(
11+
result = account.create_magic_url_token(
1212
user_id: '<USER_ID>',
1313
email: 'email@example.com',
1414
url: 'https://example.com', # optional
1515
phrase: false # optional
1616
)
17-
18-
puts response.inspect

docs/examples/account/create-o-auth2session.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

docs/examples/account/create-o-auth2token.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,9 @@ client = Client.new
99

1010
account = Account.new(client)
1111

12-
response = account.create_o_auth2_token(
12+
result = account.create_o_auth2_token(
1313
provider: OAuthProvider::AMAZON,
1414
success: 'https://example.com', # optional
1515
failure: 'https://example.com', # optional
1616
scopes: [] # optional
1717
)
18-
19-
puts response.inspect

0 commit comments

Comments
 (0)