Olivier

Results 14 comments of Olivier

@mdeering would be great to get this one merged. Thanks

Get rid of the dependency with a simple helper ``` hash = Digest::MD5.hexdigest(email) "https://secure.gravatar.com/avatar/#{hash}.png?height=#{size}&width=#{size}" ```

Workaround: Change your controller tests to inherit from `ActionController::TestCase`. Rails 5 tests inherit from `ActionDispatch::IntegrationTest`. That being said, you will also need to convert your tests back to the previous...

Alternative: in `test_helper.rb`, add: ``` ruby def authenticate_user(user = users(:admin)) post sessions_url, params: { session: { email: user.email, password: "123123" } } assert_redirected_to workflows_path assert_equal session[:user_id].to_i, user.id end ``` Then,...

@joshbuker can you allow to run CI please

Heroku button support would be awesome indeed. https://www.heroku.com/elements/buttons

Thanks @mAAdhaTTah Yep, would need to provide the ability to configure external storage (S3...) I saw quickly a reference to SQLite which is not supported by Heroku either. Web app...

The idea is to delegate min, max and step to the browser. Chrome handles it pretty well. For the rest (angular validation) that could come later. So the intent is...

hello @picandocodigo Is it reasonable to expect the 6.x branch to support Ruby 3? note for later: if merged, need to update CI matrix.