-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsoftware_version.gemspec
More file actions
23 lines (19 loc) · 918 Bytes
/
software_version.gemspec
File metadata and controls
23 lines (19 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path('../lib', __FILE__)
$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', '~> 1.16'
s.add_development_dependency 'rake', '~> 12.3'
s.add_development_dependency 'rspec', '~> 3.7'
s.add_development_dependency 'rubocop', '~> 0.52'
end