We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bec791c commit c60b890Copy full SHA for c60b890
.github/workflows/publish.yml
@@ -22,7 +22,7 @@ jobs:
22
echo -e "---\n:rubygems_api_key: $RUBYGEMS_TOKEN\n" > ~/.gem/credentials
23
chmod 0600 ~/.gem/credentials
24
env:
25
- RUBYGEMS_TOKEN: $
+ RUBYGEMS_TOKEN: ${{ secrets.RUBYGEMS_TOKEN }}
26
27
- name: Build gem
28
run: gem build appwrite.gemspec
lib/appwrite/client.rb
@@ -15,10 +15,7 @@ def initialize
15
'x-sdk-name'=> 'Ruby',
16
'x-sdk-platform'=> 'server',
17
'x-sdk-language'=> 'ruby',
18
- 'x-sdk-version'=> '13.0.0',
19
- 'X-Appwrite-Response-Format' => '1.6.0'
20
- }
21
-
+ 'x-sdk-version'=> '13.0.0', 'X-Appwrite-Response-Format' => '1.6.0' }
@endpoint = 'https://cloud.appwrite.io/v1'
end
0 commit comments