rb-libgit2 0.27.7

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.
@@ -0,0 +1,3 @@
1
+ module Git2
2
+ VERSION = '0.27.7'
3
+ end
data/lib/git2.rb ADDED
@@ -0,0 +1,2 @@
1
+ require 'git2/git2'
2
+ require 'git2/version'
@@ -0,0 +1,16 @@
1
+ $:.unshift File.dirname(__FILE__)
2
+
3
+ require 'lib/git2/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = 'rb-libgit2'
7
+ s.version = Git2::VERSION
8
+ s.date = '2019-02-27'
9
+ s.summary = "libgit2 for ruby"
10
+ s.description = "JRuby-compatible bindings for libgit2"
11
+ s.authors = ["Liam P. White"]
12
+ s.email = 'liamwhite@users.noreply.github.com'
13
+ s.files = `git ls-files`.split("\n")
14
+ s.homepage = 'https://github.com/liamwhite/rb-libgit2'
15
+ s.license = 'Nonstandard'
16
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rb-libgit2
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.27.7
5
+ platform: ruby
6
+ authors:
7
+ - Liam P. White
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-02-27 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: JRuby-compatible bindings for libgit2
14
+ email: liamwhite@users.noreply.github.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - ".gitignore"
20
+ - COPYING
21
+ - README.md
22
+ - lib/git2.rb
23
+ - lib/git2/git2.rb
24
+ - lib/git2/version.rb
25
+ - rb-libgit2.gemspec
26
+ homepage: https://github.com/liamwhite/rb-libgit2
27
+ licenses:
28
+ - Nonstandard
29
+ metadata: {}
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubyforge_project:
46
+ rubygems_version: 2.7.6
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: libgit2 for ruby
50
+ test_files: []