git-ce 1.5.0 → 1.5.0.1

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -1
  3. data/README.md +22 -1
  4. data/lib/git/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d274c0da6b1ae1db1b1b0157c41d081ced0012ebf3623a059d6a740018e362bc
4
- data.tar.gz: f5ef516ae6892b64aecf6f7db37e5b7c29d22d6bc745bee9bf52f12357dc3508
3
+ metadata.gz: 9bc16bbec18997b4b172dcae8847ac6c4547b5954690bdb76416710db4ce40e4
4
+ data.tar.gz: cd6876f6a7ed5a14a052d8f7909adf6dff9a49cdde045d7007cc100bc4b791fc
5
5
  SHA512:
6
- metadata.gz: 7a19e2ca8afea46f96a24c160c44cd265865eb1855325a6707a1413fd6e8b3bf00a59d31bcfd5a5344ef1ffbf263158ef516d0cbc8de8857b7158c82be9e0c62
7
- data.tar.gz: b0806117c6c7a9102f31ad4835854aba31656208cd0a30f9156abf67f1ae57d8d92b2f4670e120f0bf8382d364a4ccffc53aaee83de0a82d9b304feff09d816f
6
+ metadata.gz: d43fe652cb38b605ae68e13a9510942762c25b13e257996e5388fed1472b4ef7596e2cbdf86b6f8c7c6cc7675a20e7d34fcf414cc99c42596ab1661fde1b76ce
7
+ data.tar.gz: 5b97586870190df8e93bda7550bc7a843c85cdac7c5ff7d68ef956104b2153c2abecd5c074e7b4002bac93132e45712ee50ae0ea24ba005ea0cb9e74ecab2f9d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.5.0.1
4
+
5
+ * Adds the rebase command
6
+
3
7
  ## 1.5.0
4
8
 
5
9
  See https://github.com/ruby-git/ruby-git/releases/tag/v1.5.0
@@ -91,4 +95,3 @@ See https://github.com/ruby-git/ruby-git/releases/tag/v1.4.0
91
95
  ## 1.0.1
92
96
 
93
97
  * Initial version
94
-
data/README.md CHANGED
@@ -2,6 +2,27 @@
2
2
 
3
3
  Library for using Git in Ruby.
4
4
 
5
+ # ruby-git-ce
6
+
7
+ The ruby-git Community Edition is a fork of the awesome but incomplete and
8
+ unmaintained ruby-git gem.
9
+
10
+ The aim of this fork is to accept people's pull requests, then allow to accept
11
+ other pull requests, and so on.
12
+
13
+ With this principle, when I'll not be available next time, this repository will
14
+ not be abandoned, and people can still rely on it.
15
+ I want to be sure this little piece of love, that is this library, will never
16
+ stop growing, even when I'll be on something else.
17
+
18
+ BTW there will be NO stupid bots closing your PRs ! (Who the hell is the stupid
19
+ guy who invented this absurd concept ... 🤦‍)
20
+
21
+ If this kind of ways is working fine, that would be great to creation an
22
+ organisation to group those Community Editions all together.
23
+
24
+ Anyway, it's a new concept I'd like to try ! 😉
25
+
5
26
  ## Homepage
6
27
 
7
28
  Git public hosting of the project source code is at:
@@ -18,7 +39,7 @@ You can install Ruby/Git like this:
18
39
 
19
40
  * [![Build Status](https://travis-ci.org/zedtux/ruby-git-ce.svg?branch=master)](https://travis-ci.org/zedtux/ruby-git-ce)
20
41
  * [![Code Climate](https://codeclimate.com/github/zedtux/ruby-git-ce.png)](https://codeclimate.com/github/zedtux/ruby-git-ce)
21
- * [![Gem Version](https://badge.fury.io/rb/git.png)](http://badge.fury.io/rb/git)
42
+ * [![Gem Version](https://badge.fury.io/rb/git-ce.png)](http://badge.fury.io/rb/git-ce)
22
43
 
23
44
  ## Major Objects
24
45
 
data/lib/git/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Git
2
2
  # The current gem version
3
3
  # @return [String] the current gem version.
4
- VERSION='1.5.0'
4
+ VERSION='1.5.0.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-ce
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Chacon and others