-
Notifications
You must be signed in to change notification settings - Fork 1
/
omnigollum.gemspec
27 lines (23 loc) · 1.11 KB
/
omnigollum.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
Gem::Specification.new do |s|
s.name = "omnigollum-bibanon"
s.version = '0.1.1'
s.date = Time.now.strftime('%Y-%m-%d')
s.summary =
"Omnigollum makes it easy to use OmniAuth with Gollum"
s.homepage = "https://github.com/arr2036/omnigollum"
s.email = "[email protected]"
s.authors = [ "Arran Cudbard-Bell", "Lawrence Wu" ]
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[Readme.md LICENSE]
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("public/**/*")
s.files += Dir.glob("templates/**/*")
s.files += Dir.glob("views/**/*")
s.add_dependency('gollum')
s.add_dependency('omniauth')
s.add_dependency('mustache-bibanon')
s.description = <<desc
Omnigollum adds support for OmniAuth in Gollum. It executes an OmniAuth::Builder proc/block to figure out which providers you've configured, then passes it on to omniauth to create the actual omniauth configuration.
See https://github.com/arr2036/omnigollum for usage instructions.
desc
end