Skip to content

Commit f106c80

Browse files
committed
update twitter link
1 parent 69a9851 commit f106c80

File tree

152 files changed

+4531
-1638
lines changed

Some content is hidden

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

152 files changed

+4531
-1638
lines changed

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
source 'https://rubygems.org'
22

3-
gem 'mime-types', '~> 3.3.1'
43
gemspec

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![License](https://img.shields.io/github/license/appwrite/sdk-for-ruby.svg?style=flat-square)
44
![Version](https://img.shields.io/badge/api%20version-0.11.0-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)
6-
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite_io?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite_io)
6+
[![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

99
**This SDK is compatible with Appwrite server version 0.11.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-ruby/releases).**
@@ -17,7 +17,7 @@ Appwrite is an open-source backend as a service server that abstract and simplif
1717
To install via [Gem](https://rubygems.org/):
1818

1919
```bash
20-
gem install appwrite --save
20+
gem install appwrite
2121
```
2222

2323

@@ -93,4 +93,4 @@ This library is auto-generated by Appwrite custom [SDK Generator](https://github
9393

9494
## License
9595

96-
Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information.
96+
Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information.

appwrite.gemspec

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
Gem::Specification.new do |s|
2-
3-
s.name = 'appwrite'
4-
s.version = '2.4.1'
5-
s.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"
6-
s.author = 'Appwrite Team'
7-
s.homepage = 'https://appwrite.io/support'
8-
s.email = 'team@appwrite.io'
9-
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
10-
1+
Gem::Specification.new do |spec|
2+
3+
spec.name = 'appwrite'
4+
spec.version = '2.4.1'
5+
spec.license = 'BSD-3-Clause'
6+
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'
7+
spec.author = 'Appwrite Team'
8+
spec.homepage = 'https://appwrite.io/support'
9+
spec.email = 'team@appwrite.io'
10+
spec.files = Dir['lib/**/*.rb']
11+
12+
spec.add_dependency 'mime-types', '~> 3.3.1'
1113
end
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
require 'appwrite'
22

3-
client = Appwrite::Client.new()
3+
client = Appwrite::Client.new
44

55
client
66
.set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
77
.set_project('5df5acd0d48c2') # Your project ID
88
.set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9-
;
109

11-
account = Appwrite::Account.new(client);
10+
account = Appwrite::Account.new(client)
1211

13-
response = account.create_recovery(email: 'email@example.com', url: 'https://example.com');
12+
response = account.create_recovery(email: 'email@example.com', url: 'https://example.com')
1413

15-
puts response
14+
puts response.inspect
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
require 'appwrite'
22

3-
client = Appwrite::Client.new()
3+
client = Appwrite::Client.new
44

55
client
66
.set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
77
.set_project('5df5acd0d48c2') # Your project ID
88
.set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9-
;
109

11-
account = Appwrite::Account.new(client);
10+
account = Appwrite::Account.new(client)
1211

13-
response = account.create_verification(url: 'https://example.com');
12+
response = account.create_verification(url: 'https://example.com')
1413

15-
puts response
14+
puts response.inspect
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
require 'appwrite'
22

3-
client = Appwrite::Client.new()
3+
client = Appwrite::Client.new
44

55
client
66
.set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
77
.set_project('5df5acd0d48c2') # Your project ID
88
.set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9-
;
109

11-
account = Appwrite::Account.new(client);
10+
account = Appwrite::Account.new(client)
1211

13-
response = account.delete_session(session_id: '[SESSION_ID]');
12+
response = account.delete_session(session_id: '[SESSION_ID]')
1413

15-
puts response
14+
puts response.inspect
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
require 'appwrite'
22

3-
client = Appwrite::Client.new()
3+
client = Appwrite::Client.new
44

55
client
66
.set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
77
.set_project('5df5acd0d48c2') # Your project ID
88
.set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9-
;
109

11-
account = Appwrite::Account.new(client);
10+
account = Appwrite::Account.new(client)
1211

13-
response = account.delete_sessions();
12+
response = account.delete_sessions()
1413

15-
puts response
14+
puts response.inspect

docs/examples/account/delete.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
require 'appwrite'
22

3-
client = Appwrite::Client.new()
3+
client = Appwrite::Client.new
44

55
client
66
.set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
77
.set_project('5df5acd0d48c2') # Your project ID
88
.set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9-
;
109

11-
account = Appwrite::Account.new(client);
10+
account = Appwrite::Account.new(client)
1211

13-
response = account.delete();
12+
response = account.delete()
1413

15-
puts response
14+
puts response.inspect

docs/examples/account/get-logs.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
require 'appwrite'
22

3-
client = Appwrite::Client.new()
3+
client = Appwrite::Client.new
44

55
client
66
.set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
77
.set_project('5df5acd0d48c2') # Your project ID
88
.set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9-
;
109

11-
account = Appwrite::Account.new(client);
10+
account = Appwrite::Account.new(client)
1211

13-
response = account.get_logs();
12+
response = account.get_logs()
1413

15-
puts response
14+
puts response.inspect

docs/examples/account/get-prefs.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
require 'appwrite'
22

3-
client = Appwrite::Client.new()
3+
client = Appwrite::Client.new
44

55
client
66
.set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
77
.set_project('5df5acd0d48c2') # Your project ID
88
.set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9-
;
109

11-
account = Appwrite::Account.new(client);
10+
account = Appwrite::Account.new(client)
1211

13-
response = account.get_prefs();
12+
response = account.get_prefs()
1413

15-
puts response
14+
puts response.inspect

0 commit comments

Comments
 (0)