Michael Cordell

Results 14 issues of Michael Cordell

Hi @jethrokuan thank you for all your hardwork on org-roam. I have a similar setup to you for exporting to hugo, I'm curious if you know why some references generate...

The hardcoded URLs in HttpService will redirect, which plain Net::HTTP cannot handle. By wrapping Net::HTTP with [OpenURI](http://ruby-doc.org/stdlib-2.1.0/libdoc/open-uri/rdoc/OpenURI.html), HttpService will be able to handle these redirects. Fixes #4

[Test::Unit is old](http://www.ruby-doc.org/stdlib-2.1.1/libdoc/test/unit/rdoc/Test/Unit.html) and is often replaced by MiniTest or Rspec. This PR replaces the existing test suite with an Rspec suite.

Allows for flexible configuration of the gem through passing a block `(NOAA.configure { |config| config.station = 'TAPA' }` or by direct calls to the configuration object `(NOAA.configuration.station = 'TAPA')`

Provides a way to customize the resource presentation, see README docs. Fixes #38, #46

[See this](https://github.com/mcordell/grape_token_auth/issues/19#issue-111531199) DTA has the key hardcoded in: https://github.com/lynndylanhurley/devise_token_auth/blob/e0b4dff6bc76ad7f3021e579cfa23477752140ff/app/controllers/devise_token_auth/concerns/set_user_by_token.rb#L29. I don't see a reason why it couldn't be configured but I'm going to think on this a bit. Likely this...

enhancement

Order of APIs (omniauth) can break the routes of other APIs, need a more robust solution to this.

bug