Skip to content

Commit 29eef87

Browse files
authored
Merge pull request #50 from appwrite/dev
feat: Ruby SDK update for version 20.0.0
2 parents 322a408 + 83785bd commit 29eef87

19 files changed

+34
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 20.1.0
4+
5+
* Added ability to create columns and indexes synchronously while creating a table
6+
37
## 20.0.0
48

59
* Rename `VCSDeploymentType` enum to `VCSReferenceType`

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 = '20.0.0'
4+
spec.version = '20.1.0'
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/create-anonymous-session.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ include Appwrite
55
client = Client.new
66
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
77
.set_project('<YOUR_PROJECT_ID>') # Your project ID
8+
.set_session('') # The user session to authenticate with
89

910
account = Account.new(client)
1011

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ include Appwrite
55
client = Client.new
66
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
77
.set_project('<YOUR_PROJECT_ID>') # Your project ID
8+
.set_session('') # The user session to authenticate with
89

910
account = Account.new(client)
1011

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ include Appwrite
55
client = Client.new
66
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
77
.set_project('<YOUR_PROJECT_ID>') # Your project ID
8+
.set_session('') # The user session to authenticate with
89

910
account = Account.new(client)
1011

docs/examples/account/create-jwt.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ include Appwrite
55
client = Client.new
66
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
77
.set_project('<YOUR_PROJECT_ID>') # Your project ID
8+
.set_session('') # The user session to authenticate with
89

910
account = Account.new(client)
1011

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ include Appwrite
55
client = Client.new
66
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
77
.set_project('<YOUR_PROJECT_ID>') # Your project ID
8+
.set_session('') # The user session to authenticate with
89

910
account = Account.new(client)
1011

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ include Appwrite::Enums
66
client = Client.new
77
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
88
.set_project('<YOUR_PROJECT_ID>') # Your project ID
9+
.set_session('') # The user session to authenticate with
910

1011
account = Account.new(client)
1112

docs/examples/account/create-o-auth-2-token.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ include Appwrite::Enums
66
client = Client.new
77
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
88
.set_project('<YOUR_PROJECT_ID>') # Your project ID
9+
.set_session('') # The user session to authenticate with
910

1011
account = Account.new(client)
1112

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ include Appwrite
55
client = Client.new
66
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
77
.set_project('<YOUR_PROJECT_ID>') # Your project ID
8+
.set_session('') # The user session to authenticate with
89

910
account = Account.new(client)
1011

0 commit comments

Comments
 (0)