forked from gollum/rugged_adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rugged_adapter.gemspec
36 lines (31 loc) · 1.08 KB
/
rugged_adapter.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "rugged_adapter/version"
Gem::Specification.new do |s|
s.name = "gollum-rugged_adapter"
s.version = Gollum::Lib::Git::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Bart Kamphorst, Dawa Ometto"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/gollum/rugged_adapter"
s.summary = %q{Adapter for Gollum to use Rugged (libgit2) at the backend.}
s.description = %q{Adapter for Gollum to use Rugged (libgit2) at the backend.}
s.license = "MIT"
s.add_runtime_dependency 'rugged', '~> 0.23.3', '>=0.21.3'
s.add_runtime_dependency 'mime-types', '>= 1.15'
s.add_development_dependency "rspec", "3.4.0"
s.files = Dir['lib/**/*.rb'] + ["README.md", "Gemfile"]
s.require_paths = ["lib"]
# = MANIFEST =
s.files = %w(
Gemfile
LICENSE
README.md
Rakefile
lib/rugged_adapter.rb
lib/rugged_adapter/git_layer_rugged.rb
lib/rugged_adapter/version.rb
rugged_adapter.gemspec
)
# = MANIFEST =
end