forked from rcoder/ohloh_scm
-
Notifications
You must be signed in to change notification settings - Fork 18
/
ohloh_scm.gemspec
25 lines (22 loc) · 1.17 KB
/
ohloh_scm.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
# frozen_string_literal: true
$LOAD_PATH << File.expand_path('lib', __dir__)
require 'ohloh_scm/version'
Gem::Specification.new do |gem|
gem.name = 'ohloh_scm'
gem.version = OhlohScm::Version::STRING
gem.authors = ['OpenHub Team at Synopsys']
gem.email = ['info@openhub.net']
gem.summary = 'Source Control Management'
gem.description = 'The OpenHub source control management library for \
interacting with Git, SVN, CVS, Hg and Bzr repositories.'
gem.homepage = 'https://github.com/blackducksoftware/ohloh_scm/'
gem.license = 'GPL-2.0'
gem.files = `git ls-files -z`.split("\x0")
gem.test_files = gem.files.grep(/^spec\//)
gem.require_paths = %w[lib]
gem.post_install_message = "Ohloh SCM is depending on Git #{OhlohScm::Version::GIT}, "\
"SVN #{OhlohScm::Version::SVN}, CVSNT #{OhlohScm::Version::CVSNT}, "\
"Mercurial #{OhlohScm::Version::HG} and Bazaar "\
"#{OhlohScm::Version::BZR}. If the installed version is different, "\
'Ohloh SCM may not operate as expected.'
end