-
Notifications
You must be signed in to change notification settings - Fork 12
/
gem-compare.gemspec
25 lines (24 loc) · 1.04 KB
/
gem-compare.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
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib'))
require 'rubygems/comparator/version'
Gem::Specification.new do |s|
s.name = 'gem-compare'
s.version = Gem::Comparator::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'RubyGems plugin for comparing gem versions'
s.description = <<-EOF
gem-compare is a RubyGems plugin that helps to compare versions of the given gem.
It searches for differences in metadata as well as in files.
EOF
s.homepage = 'http://github.com/fedora-ruby/gem-compare'
s.licenses = ['MIT']
s.author = 'Josef Stribny'
s.email = '[email protected]'
s.files = Dir['README.md', 'LICENSE', 'Rakefile', 'test/gemfiles/**/*',
'lib/**/*.rb', 'lib/**/**/*.rb', 'test/**/test*.rb']
s.required_ruby_version = '>= 3.0.0'
s.required_rubygems_version = '>= 3.0.0'
s.add_runtime_dependency 'json'
s.add_runtime_dependency 'diffy'
s.add_runtime_dependency 'rainbow'
s.add_runtime_dependency 'gemnasium-parser'
end