gollum-grit_adapter 0.1.3 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- ZjUyYjVjOGNhYzc4OWRkZTBhZGU4MDRjNjAyOTNlYmMwZTU3NWVlYQ==
5
- data.tar.gz: !binary |-
6
- NzVjZjU3MTU3M2U4OGNjNzcxODdhNTNjMGYxMzk3NzFjNjg1NGIyMg==
2
+ SHA1:
3
+ metadata.gz: 43063f00c4614b243d47134821f054cdcbed3690
4
+ data.tar.gz: 365eb5e0186d10f337313ca04568959fd9a231f2
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- NmRjNjViMjUwYzVlNDM0MmNlNzI2OWQwODNjOGMxYjI1OTg0YzNlMWZkNDgw
10
- MjAyZWRiYTE5YjlkYzY1NGUzZjI5MTVmMDQxMWY5ZGMwZGQ4NWFhNjYwZTYy
11
- OGU3ODczMDU3YTY2MzY4MWY0MzM1YzU1M2FhNWM0OTRjNTNlODI=
12
- data.tar.gz: !binary |-
13
- ZjFmZTZjZTFiZjgyYmU1NmZjZGY2YjgwYzljODc0NDgzNTVkYzkyOGNiNDg4
14
- YzA0ZDQwODI1MmYxZGVjNjExMDFmMGI2M2U4YWJkNWE4ZTQxMDhhOGE1ZmM0
15
- ZGMwNTlmOGQ2M2E2NjdmMDkwZjQzNGUzNzQyZWIwNjJhMzA3OTQ=
6
+ metadata.gz: 3bf48e19853d1e7940bae14976b280e491dd1a9aed110805ca5f72cd687b09a585b2c662ad88d32ecfecdeafbddd49d0f12ab0a9b8a646002d8553078d9c2e0f
7
+ data.tar.gz: 364f9d2c333905b48fd6117a70a2599442d433f68f3d2e129f07029f3e3eabc25d60b3672e6fa684eeffe0903a616e9e820757a61b95b355b83318f33c997bae
@@ -204,6 +204,14 @@ module Gollum
204
204
  end
205
205
  end
206
206
 
207
+ def push(remote, branch, options = {})
208
+ @git.push(options, remote, branch)
209
+ end
210
+
211
+ def pull(remote, branch, options = {})
212
+ @git.pull(options, remote, branch)
213
+ end
214
+
207
215
  private
208
216
 
209
217
  def log(path = nil, ref = nil, options = nil, *args)
@@ -1,7 +1,7 @@
1
1
  module Gollum
2
2
  module Lib
3
3
  module Git
4
- VERSION = '0.1.3'
4
+ VERSION = '1.0.0'
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gollum-grit_adapter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bart Kamphorst, Dawa Ometto
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-27 00:00:00.000000000 Z
11
+ date: 2015-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gitlab-grit
@@ -17,7 +17,7 @@ dependencies:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
19
  version: '2.7'
20
- - - ! '>='
20
+ - - '>='
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.7.1
23
23
  type: :runtime
@@ -27,7 +27,7 @@ dependencies:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
29
  version: '2.7'
30
- - - ! '>='
30
+ - - '>='
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.7.1
33
33
  - !ruby/object:Gem::Dependency
@@ -66,17 +66,17 @@ require_paths:
66
66
  - lib
67
67
  required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
- - - ! '>='
69
+ - - '>='
70
70
  - !ruby/object:Gem::Version
71
71
  version: '0'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - ! '>='
74
+ - - '>='
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
78
  rubyforge_project:
79
- rubygems_version: 2.4.1
79
+ rubygems_version: 2.2.2
80
80
  signing_key:
81
81
  specification_version: 4
82
82
  summary: Adapter for Gollum to use Grit at the backend.