Skip to content

Commit 9fe8a98

Browse files
authored
Merge pull request #19 from appwrite/dev
Fix null params
2 parents dd56d3d + 3653109 commit 9fe8a98

File tree

181 files changed

+358
-356
lines changed

Some content is hidden

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

181 files changed

+358
-356
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2023 Appwrite (https://appwrite.io) and individual contributors.
1+
Copyright (c) 2024 Appwrite (https://appwrite.io) and individual contributors.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Appwrite Ruby SDK
22

33
![License](https://img.shields.io/github/license/appwrite/sdk-for-ruby.svg?style=flat-square)
4-
![Version](https://img.shields.io/badge/api%20version-1.4.12-blue.svg?style=flat-square)
4+
![Version](https://img.shields.io/badge/api%20version-1.4.13-blue.svg?style=flat-square)
55
[![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
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)

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 = '10.1.0'
4+
spec.version = '10.1.1'
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-phone-verification.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'Appwrite'
1+
require 'appwrite'
22

33
include Appwrite
44

@@ -11,4 +11,4 @@ account = Account.new(client)
1111

1212
response = account.create_phone_verification()
1313

14-
puts response.inspect
14+
puts response.inspect

docs/examples/account/create-recovery.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'Appwrite'
1+
require 'appwrite'
22

33
include Appwrite
44

@@ -11,4 +11,4 @@ account = Account.new(client)
1111

1212
response = account.create_recovery(email: '[email protected]', url: 'https://example.com')
1313

14-
puts response.inspect
14+
puts response.inspect

docs/examples/account/create-verification.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'Appwrite'
1+
require 'appwrite'
22

33
include Appwrite
44

@@ -11,4 +11,4 @@ account = Account.new(client)
1111

1212
response = account.create_verification(url: 'https://example.com')
1313

14-
puts response.inspect
14+
puts response.inspect

docs/examples/account/delete-identity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'Appwrite'
1+
require 'appwrite'
22

33
include Appwrite
44

@@ -11,4 +11,4 @@ account = Account.new(client)
1111

1212
response = account.delete_identity(identity_id: '[IDENTITY_ID]')
1313

14-
puts response.inspect
14+
puts response.inspect

docs/examples/account/delete-session.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'Appwrite'
1+
require 'appwrite'
22

33
include Appwrite
44

@@ -11,4 +11,4 @@ account = Account.new(client)
1111

1212
response = account.delete_session(session_id: '[SESSION_ID]')
1313

14-
puts response.inspect
14+
puts response.inspect

docs/examples/account/delete-sessions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'Appwrite'
1+
require 'appwrite'
22

33
include Appwrite
44

@@ -11,4 +11,4 @@ account = Account.new(client)
1111

1212
response = account.delete_sessions()
1313

14-
puts response.inspect
14+
puts response.inspect

docs/examples/account/get-prefs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'Appwrite'
1+
require 'appwrite'
22

33
include Appwrite
44

@@ -11,4 +11,4 @@ account = Account.new(client)
1111

1212
response = account.get_prefs()
1313

14-
puts response.inspect
14+
puts response.inspect

0 commit comments

Comments
 (0)