URI::Git
An URI scheme handler for git:// protocol
Installation
Add this line to your application's Gemfile:
gem 'uri-git'
And then execute:
$ bundle
Or install it yourself as:
$ gem install uri-git
Usage
require 'uri/git'
uri = URI.parse 'git://github.com/takady/uri-git.git'
p uri.scheme # => "git"
p uri.host # => "github.com"
p uri.port # => 9418
p uri.path # => "/takady/uri-git.git"
Contributing
- Fork it ( https://github.com/takady/uri-git/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request