clerk-sdk-ruby icon indicating copy to clipboard operation
clerk-sdk-ruby copied to clipboard

Access the Clerk Backend API from Ruby

Results 12 clerk-sdk-ruby issues
Sort by recently updated
recently updated
newest added

Fixes https://github.com/clerk/clerk-sdk-ruby/issues/61

Needed to add a `to_i` in lib/clerk/authenticate_request.rb as the `auth_context.client_uat` is a string for me, so `

Something prevents ActionCable from working well with `clerk-sdk-ruby` gem. This config worked for me as a temporary workaround. Otherwise, web socket connections fail without any errors in the logs. It's...

I'm not sure if this is a library issue or a Docker issue but https://api.clerk.dev/v1/jwks fails sometimes with the error given in the title. Looks like a DNS issue but...

I ran into this issue trying to match the error code `form_identifier_exists` in my `Clerk::Errors::Fatal` handler. ``` begin clerk_sdk.users.create(....) rescue Clerk::Errors::Fatal => e e.errors # NoMethodError for 'errors' e.message #...

We have a Rails app with clerk setup for our admin dashboard which uses ActiveAdmin. When we submit an update/create form, sometimes (~25%) the form data is lost and the...

Update the Ruby SDK to use the correct nomenclature of `secret_key` (vs `api_key`) Fixes ECO-177

Ensure that `helper_method` isn't called if it isn't required. This is the case from within Rails API-only applications. Fixes ECO-183

Hi there! I'm using the `include Clerk::Authenticatable` in my controllers and a `before_action` filter to require authentication. How can I mock the SDK or the Rack middleware to test my...