-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgemika.gemspec
24 lines (22 loc) · 989 Bytes
/
gemika.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
$:.push File.expand_path("../lib", __FILE__)
require "gemika/version"
Gem::Specification.new do |s|
s.name = 'gemika'
s.version = Gemika::VERSION
s.authors = ["Henning Koch"]
s.email = '[email protected]'
s.homepage = 'https://github.com/makandra/gemika'
s.summary = 'Helpers for testing Ruby gems'
s.description = s.summary
s.license = 'MIT'
s.metadata = {
'source_code_uri' => s.homepage,
'bug_tracker_uri' => 'https://github.com/makandra/gemika/issues',
'changelog_uri' => 'https://github.com/makandra/gemika/blob/master/CHANGELOG.md',
'rubygems_mfa_required' => 'true',
}
s.files = `git ls-files`.split("\n").reject { |path| !File.exist?(path) || File.lstat(path).symlink? }
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n").reject { |path| !File.exist?(path) || File.lstat(path).symlink? }
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end