-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstoor.gemspec
26 lines (24 loc) · 1.1 KB
/
stoor.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
$LOAD_PATH.unshift File.expand_path(File.join('..', 'lib'), __FILE__)
require 'stoor/version'
Gem::Specification.new do |s|
s.name = 'stoor'
s.version = Stoor::VERSION
s.date = Time.now.utc.strftime('%Y-%m-%d')
s.summary = 'Front-end for Gollum'
s.description = 'Stoor is an app to bring up a local Gollum (wiki software) against a Git repo with bells and whistles like auth.'
s.license = 'MIT'
s.authors = ['John G. Norman']
s.email = '[email protected]'
s.files = `git ls-files`.split("\n")
s.homepage = 'https://github.com/jgn/stoor'
s.rdoc_options = ['--charset=UTF-8']
s.require_paths = ['lib']
s.test_files = `git ls-files spec`.split("\n")
s.executables << 'stoor'
s.add_dependency 'thin', '~> 1.5.1'
s.add_dependency 'gollum', '~> 2.5.2'
s.add_dependency 'sinatra_auth_github', '~> 1.0.0'
s.add_development_dependency 'warden-github', '~> 1.0.0'
s.add_development_dependency 'rack-test', '~> 0.6.2'
s.add_development_dependency 'rspec', '~> 2.14.1'
end