forked from librariesio/bibliothecary
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bibliothecary.gemspec
39 lines (34 loc) · 1.46 KB
/
bibliothecary.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
28
29
30
31
32
33
34
35
36
37
38
39
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "bibliothecary/version"
Gem::Specification.new do |spec|
spec.name = "bibliothecary"
spec.version = Bibliothecary::VERSION
spec.authors = ["Andrew Nesbitt"]
spec.email = ["[email protected]"]
spec.summary = "Find and parse manifests"
spec.homepage = "https://github.com/librariesio/bibliothecary"
spec.license = "AGPL-3.0"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "tomlrb"
spec.add_dependency "librariesio-gem-parser"
spec.add_dependency "ox", ">= 2.8.1"
spec.add_dependency "typhoeus"
spec.add_dependency "deb_control"
spec.add_dependency "sdl4r"
spec.add_dependency "commander"
spec.add_dependency "strings-ansi" # NB this is also pegged to a git sha in Gemfile temporarily.
spec.add_dependency "strings"
spec.add_dependency "packageurl-ruby"
spec.add_development_dependency "pry"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "webmock"
spec.add_development_dependency "vcr"
spec.add_development_dependency "rubocop"
spec.add_development_dependency "rubocop-rails"
end