audc-gerry 0.1.8 → 0.1.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cdd416d7090678970f5d1a5f04d4a0827133e2e070269465054e08f314b64e20
4
- data.tar.gz: 969930379685fd48a5bbb1b638a7e417f26609e04a3ee61b63527766d5b0ff65
3
+ metadata.gz: 68befca41d077ba88543191cac2f8d2eaf684cab13acd57d05bcc4bf3a24c844
4
+ data.tar.gz: aca48387915a28fc772a1dc59d682d2ee05823e4268039c5009f8560507275a1
5
5
  SHA512:
6
- metadata.gz: 87c0d98150ae7eb2e434ea8f16a9e2eb0b09012a165f60da73aaf51875dbdb154a74faef3ff5fb399403fad52870dbae977c5e2a4295abfe97ad4248caf52070
7
- data.tar.gz: 0e9db5dd62742df26d1cd9a8f1b4f3eb63c2b161f02822e875defd6a3bfd112a5e706bf96b1f9fb82247fe010c6f9efbb614d405ca69235450dc600f6dfe0743
6
+ metadata.gz: 5b2eef71fd78d28b96044ce8602318041f2daa2a2c35bcbe4c0b0b6ee33ea1876a9bbee5ca8b630e51c54d57a5aea65b600ff2a88a51d9067b8e425da3daeeff
7
+ data.tar.gz: ffab9898ff180fe3fcd3caf6a3c906394f328513cd91aa157d22b4e2a9c53cca426634d8b523e988d16b954c82f794fb8392fd5d9a5ac07c71a3102106a19cac
data/README.md CHANGED
@@ -1,13 +1,7 @@
1
- # gerry[![Build Status](https://travis-ci.org/trumant/gerry.svg)][travis]
2
-
3
- Base Gerrit Version V2.14.6
4
-
5
1
  Simple Ruby wrapper for the Gerrit Code Review REST-API.
6
2
 
7
3
  ![Gary from spongebob square pants](http://en.spongepedia.org/images/3/37/Garry.jpg)
8
4
 
9
- [travis]: https://travis-ci.org/trumant/gerry
10
-
11
5
  ## Documentation
12
6
  [http://rdoc.info/github/trumant/gerry][documentation]
13
7
 
@@ -41,10 +35,6 @@ client.changes(['q=is:open'])
41
35
  => [{"project"=>"awesome", "branch"=>"master", "id"=>"Ibfedd978...."}]
42
36
  ```
43
37
 
44
- ### Authentication type
45
- Since 2.14, Gerrit no longer supports digest authentication.
46
- Gerry uses basic authentication against gerrit.
47
-
48
38
  ## Licence
49
39
  The MIT Licence
50
40
 
@@ -1,7 +1,7 @@
1
1
  require_relative 'gerry/client'
2
2
 
3
3
  module Gerry
4
- class << self
4
+ class << self
5
5
  # Alias for Gerry::Client.new
6
6
  #
7
7
  # @return [Gerry::Client]
@@ -9,4 +9,4 @@ module Gerry
9
9
  Gerry::Client.new(url, username, password)
10
10
  end
11
11
  end
12
- end
12
+ end
data/lib/gerry/version.rb CHANGED
@@ -1,5 +1,3 @@
1
1
  module Gerry
2
-
3
- VERSION = "0.1.8"
4
-
2
+ VERSION = "0.1.9"
5
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: audc-gerry
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fabian Mettler
@@ -148,7 +148,7 @@ extra_rdoc_files: []
148
148
  files:
149
149
  - README.md
150
150
  - Rakefile
151
- - lib/gerry.rb
151
+ - lib/audc-gerry.rb
152
152
  - lib/gerry/api/access.rb
153
153
  - lib/gerry/api/accounts.rb
154
154
  - lib/gerry/api/branches.rb