-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathgithub_lda.gemspec
27 lines (23 loc) · 1.07 KB
/
github_lda.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'github_lda/version'
Gem::Specification.new do |gem|
gem.name = "github_lda"
gem.version = GithubLda::VERSION
gem.authors = ["Naoki Orii"]
gem.email = ["[email protected]"]
gem.description = %q{Collaborative Topic Modeling for Github Repos}
gem.summary = %q{Collaborative Topic Modeling for Github Repos}
gem.homepage = "https://github.com/mrorii/github_lda"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency 'rake', '>= 0.9.2.2'
gem.add_development_dependency 'fakefs', '>= 0.4.0'
gem.add_runtime_dependency 'grit', '>= 2.5.0'
gem.add_runtime_dependency 'github-linguist', '>= 2.3.4'
gem.add_runtime_dependency 'nokogiri', '>= 1.5.5'
gem.add_runtime_dependency 'parallel', '>= 0.5.19'
end