We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eee346d + 5484ef0 commit 0d86e4fCopy full SHA for 0d86e4f
.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
@@ -16,9 +16,8 @@ def initialize
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'
+ 'x-appwrite-response-format' => '1.6.0'
20
}
21
-
@endpoint = 'https://cloud.appwrite.io/v1'
end
0 commit comments