uri-ssh_git 0.1.2 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +14 -2
- data/changelog.md +8 -0
- data/lib/uri/ssh_git/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a58a6bccca401b5159ec06127adfcd314afe0e93
|
|
4
|
+
data.tar.gz: 1f16771fe51e246d935e61a89212c019cd9f641e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41970a0b36d5940391edfd89fa2c6c080130834b7bd30556c042e6ba62c4df0a39453812bfe1bfa2fab5d24b8e8182490fe1dd083bcef83e94e930b91b7f7d36
|
|
7
|
+
data.tar.gz: bee976dc4a6efdd6fbac82ddaa5f4f9286d11af40045d192a0f99b62f740f1cf88a9384c2f814e2c67de9377f55702b17a550fc2b3958bae4ac41c5df6c6151d
|
data/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# URI::SshGit
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/packsaddle/ruby-uri-ssh_git)
|
|
3
|
+
[![Gem version][gem-image]][gem-url] [![Travis-CI Status][travis-image]][travis-url] [![yard docs][docs-image]][docs-url]
|
|
5
4
|
|
|
6
5
|
> Parse and build git repository url via ssh protocol.
|
|
7
6
|
|
|
@@ -56,6 +55,11 @@ url.port #=> nil
|
|
|
56
55
|
```
|
|
57
56
|
|
|
58
57
|
|
|
58
|
+
## API
|
|
59
|
+
|
|
60
|
+
*[details][docs-url]*.
|
|
61
|
+
|
|
62
|
+
|
|
59
63
|
## Installation
|
|
60
64
|
|
|
61
65
|
Add this line to your application's Gemfile:
|
|
@@ -85,3 +89,11 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
85
89
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
86
90
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
87
91
|
5. Create a new Pull Request
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
[travis-url]: https://travis-ci.org/packsaddle/ruby-uri-ssh_git
|
|
95
|
+
[travis-image]: https://img.shields.io/travis/packsaddle/ruby-uri-ssh_git/master.svg?style=flat-square&label=build%20%28linux%29
|
|
96
|
+
[gem-url]: https://rubygems.org/gems/uri-ssh_git
|
|
97
|
+
[gem-image]: http://img.shields.io/gem/v/uri-ssh_git.svg?style=flat-square
|
|
98
|
+
[docs-url]: http://www.rubydoc.info/gems/uri-ssh_git
|
|
99
|
+
[docs-image]: https://img.shields.io/badge/yard-docs-blue.svg?style=flat-square
|
data/changelog.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
<a name="1.0.0"></a>
|
|
2
|
+
# [1.0.0](https://github.com/packsaddle/ruby-uri-ssh_git/compare/v0.1.2...v1.0.0) (2015-11-21)
|
|
3
|
+
|
|
4
|
+
(no change)
|
|
5
|
+
|
|
6
|
+
* This module is stable :)
|
|
7
|
+
|
|
8
|
+
|
|
1
9
|
<a name="0.1.2"></a>
|
|
2
10
|
## [0.1.2](https://github.com/packsaddle/ruby-uri-ssh_git/compare/v0.1.1...v0.1.2) (2015-11-21)
|
|
3
11
|
|
data/lib/uri/ssh_git/version.rb
CHANGED