Skip to content

Commit ae3e539

Browse files
authored
Merge pull request #54 from appwrite/dev
2 parents 1e81e01 + 150cd58 commit ae3e539

435 files changed

Lines changed: 1997 additions & 35 deletions

File tree

Some content is hidden

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

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## 21.1.0
4+
5+
* Fix doc examples with proper formatting
6+
* Add support for the new `Backups` service
7+
38
## 21.0.0
49

510
* Add array-based enum parameters (e.g., `permissions: Array<BrowserPermission>`).
@@ -60,4 +65,4 @@
6065

6166
## 14.0.0
6267

63-
* Fix pong response & chunked upload
68+
* Fix pong response & chunked upload

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
77
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
88

9-
**This SDK is compatible with Appwrite server version 1.8.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-ruby/releases).**
9+
**This SDK is compatible with Appwrite server version latest. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-ruby/releases).**
1010

1111
Appwrite is an open-source backend as a service server that abstracts and simplifies complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Ruby SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
1212

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 = '21.0.0'
4+
spec.version = '21.1.0'
55
spec.license = 'BSD-3-Clause'
66
spec.summary = 'Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API'
77
spec.author = 'Appwrite Team'

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```ruby
12
require 'appwrite'
23

34
include Appwrite
@@ -10,3 +11,4 @@ client = Client.new
1011
account = Account.new(client)
1112

1213
result = account.create_anonymous_session()
14+
```

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```ruby
12
require 'appwrite'
23

34
include Appwrite
@@ -13,3 +14,4 @@ result = account.create_email_password_session(
1314
email: 'email@example.com',
1415
password: 'password'
1516
)
17+
```

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```ruby
12
require 'appwrite'
23

34
include Appwrite
@@ -14,3 +15,4 @@ result = account.create_email_token(
1415
email: 'email@example.com',
1516
phrase: false # optional
1617
)
18+
```

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```ruby
12
require 'appwrite'
23

34
include Appwrite
@@ -12,3 +13,4 @@ account = Account.new(client)
1213
result = account.create_email_verification(
1314
url: 'https://example.com'
1415
)
16+
```

docs/examples/account/create-jwt.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```ruby
12
require 'appwrite'
23

34
include Appwrite
@@ -12,3 +13,4 @@ account = Account.new(client)
1213
result = account.create_jwt(
1314
duration: 0 # optional
1415
)
16+
```

docs/examples/account/create-magic-url-token.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```ruby
12
require 'appwrite'
23

34
include Appwrite
@@ -15,3 +16,4 @@ result = account.create_magic_url_token(
1516
url: 'https://example.com', # optional
1617
phrase: false # optional
1718
)
19+
```

docs/examples/account/create-mfa-authenticator.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```ruby
12
require 'appwrite'
23

34
include Appwrite
@@ -13,3 +14,4 @@ account = Account.new(client)
1314
result = account.create_mfa_authenticator(
1415
type: AuthenticatorType::TOTP
1516
)
17+
```

0 commit comments

Comments
 (0)