Chris Oliver
Chris Oliver
Maintainer?
@ctran would you like some help maintaining the gem and releasing updates? I use annotate in almost every app (thank you!) and maintain ActsAsTenant and several other gems. Just want...
Show how to login in a user in your tests. ```ruby class ActionDispatch::IntegrationTest include Devise::Test::IntegrationHelpers end ```
```ruby require "application_system_test_case" class LoginTest < ApplicationSystemTestCase test "can login" do Capybara.app_host = 'http://subdomain.lvh.me' Capybara.always_include_port = true visit new_user_session_path fill_in 'user[email]', with: users(:one).email fill_in 'user[password]', with: 'password' find('input[name="commit"]').click assert_selector "p",...
Assert I18n strings makes tests more reliable because it doesn't matter if the actual text changes, tests will still pass.
```ruby host! "#{@account.subdomain}.example.com" ```
Hey there! I'm new to FCM, but I was curious are these the two responses we should be using to remove tokens when they're invalid? >Make sure to detect invalid...
In order to properly support Stripe Tax, we have implemented refunds via CreditNotes for Charges with an Invoice ID. We need to sync the CreditNotes for the invoice in order...
1. When a `account.updated` event comes through, request the Account through the API. 2. Look at requirements.currently_due to see if there are any 3. Change onboarding_complete to a state [pending,...
This PR fixes the situation when you've got something like a path config set in bundler. ``` ± bundle config path vendor/bundle ± bundle exec appraisal true >> bundle check...
Was just trying to compile this and ran into an error when I run `make web` ```bash $ make web emcc -o wasm/js/olaf.html -s WASM=1 -s ALLOW_MEMORY_GROWTH=1 -s EXPORTED_FUNCTIONS="['_malloc','_free']" -s...