ueberauth / ueberauth_google

Google OAuth2 Strategy for Überauth.
MIT License
166 stars 85 forks source link

hexdocs has a bug in it #7

Closed Trevoke closed 8 years ago

Trevoke commented 8 years ago

The hexdocs show

config :ueberauth, Ueberauth,
  providers: [
    google: [ { Ueberauth.Strategy.Google, [] } ]
  ]

It should be, like in the README,

config :ueberauth, Ueberauth,
  providers: [
    google: { Ueberauth.Strategy.Google, [] }
  ]
doomspork commented 8 years ago

Good catch @Trevoke, could you open a PR with the fix?

Trevoke commented 8 years ago

Of course. I just don't know where the hexdocs are stored. Point me in the right direction and I'll fix it.

Trevoke commented 8 years ago

It looks like one of the maintainers may need to run mix hex.docs. I don't think I can do this. Sorry.

https://hex.pm/docs/tasks#hex_docs

doomspork commented 8 years ago

I pushed the updated docs, it's fixed now @Trevoke.

Thanks again for the heads up :+1:

Trevoke commented 8 years ago

Awesome, thank you!

And you're welcome; isn't this what open source is all about? :)