7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

gemのGitHubリポジトリへ簡単にアクセスできるChromeエクステンションを作りました(英語)

Last updated at Posted at 2015-01-03

I created a chrome extension for easy navigating to gem pages in Github.

Wherever you browse 'Gemfile' or '.gemspec' file on Github, clicking on gem name takes you to it's Github repository page.

Demo.gif

Uses destino (written in Elixir) under-hood.

@ma2ge gets repository name from GitHub url:

repo = Regex.scan(~r/\Ahttps?:\/\/github.com\/(.+\/.+)/, url)
       |> List.flatten
       |> List.last

Deployed on heroku: http://sla.herokuapp.com

Examples:

http://sla.herokuapp.com/rails
http://sla.herokuapp.com/rspec

Source code: https://github.com/narkoz/destino
Source code of extension: https://github.com/narkoz/crank-for-rubygems

I hope you find it useful!

7
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?