forked from fwininger/software-version
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsoftware_version.gemspec
More file actions
24 lines (20 loc) · 966 Bytes
/
software_version.gemspec
File metadata and controls
24 lines (20 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |s|
s.name = 'software_version'
s.version = '1.0.0'
s.summary = 'Compare two software versions'
s.description = 'Compare two software versions with the full pattern for Linux Packages (Centos, Redhat, Arch, Debian Ubuntu) and Windows Applications'
s.authors = ['Florian Wininger']
s.email = 'fw.centrale@gmail.com'
s.homepage = 'https://github.com/fwininger/sofware-version'
s.license = 'MIT'
s.require_paths = ['lib']
s.files = `git ls-files -z`.split("\x0")
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.add_development_dependency 'bundler', '~> 2.3'
s.add_development_dependency 'rspec', '~> 3.7'
s.add_development_dependency 'rubocop', '~> 1.57.0'
s.add_development_dependency 'rubocop-performance'
s.add_development_dependency 'rubocop-rspec'
end