git_clone_url 0.1.1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -2
- data/changelog.md +6 -0
- data/lib/git_clone_url/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: 852737429ac3b8c963bf58508f865bfd2017d38d
|
4
|
+
data.tar.gz: 7910e4a70cbc97ab108d140eb8691d63c9a792c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9fed153b30178a75cea34988cef673606467ffc4882a97fdc4978001543a23889a1c4b9ef5a770804b81900109cd491cf1b6f4b21206fe7e494afcfd1b1dab45
|
7
|
+
data.tar.gz: 5ba39bb380718f67be7742341541698b4bda7e8e74467fd5b5e9eceac0d8a46a5f63fe16293e0c380de1db24014c42acbf5970f3cebffd6ece24c0d5b543f5c7
|
data/README.md
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# GitCloneUrl
|
2
2
|
|
3
|
-
[![Gem
|
4
|
-
[![Build Status](http://img.shields.io/travis/packsaddle/ruby-git_clone_url/master.svg?style=flat)](https://travis-ci.org/packsaddle/ruby-git_clone_url)
|
3
|
+
[![Gem version][gem-image]][gem-url] [![Travis-CI Status][travis-image]][travis-url] [![yard docs][docs-image]][docs-url]
|
5
4
|
|
6
5
|
> Easy to parse git repository-ish url.
|
7
6
|
|
@@ -75,6 +74,8 @@ Type: `string`
|
|
75
74
|
|
76
75
|
Git repository-ish url.
|
77
76
|
|
77
|
+
*[details][docs-url]*.
|
78
|
+
|
78
79
|
|
79
80
|
## Installation
|
80
81
|
|
@@ -105,3 +106,10 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
105
106
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
106
107
|
4. Push to the branch (`git push origin my-new-feature`)
|
107
108
|
5. Create a new Pull Request
|
109
|
+
|
110
|
+
[travis-url]: https://travis-ci.org/packsaddle/ruby-git_clone_url
|
111
|
+
[travis-image]: https://img.shields.io/travis/packsaddle/ruby-git_clone_url/master.svg?style=flat-square&label=build%20%28linux%29
|
112
|
+
[gem-url]: https://rubygems.org/gems/git_clone_url
|
113
|
+
[gem-image]: http://img.shields.io/gem/v/git_clone_url.svg?style=flat-square
|
114
|
+
[docs-url]: http://www.rubydoc.info/gems/git_clone_url
|
115
|
+
[docs-image]: https://img.shields.io/badge/yard-docs-blue.svg?style=flat-square
|
data/changelog.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
<a name="1.0.0"></a>
|
2
|
+
# [1.0.0](https://github.com/packsaddle/ruby-git_clone_url/compare/v0.1.1...v1.0.0) (2015-11-21)
|
3
|
+
|
4
|
+
* This module is stable :)
|
5
|
+
|
6
|
+
|
1
7
|
<a name="0.1.1"></a>
|
2
8
|
## [0.1.1](https://github.com/packsaddle/ruby-git_clone_url/compare/v0.1.0...v0.1.1) (2015-11-21)
|
3
9
|
|