tools/riemann-munin/Rakefile in riemann-tools-1.1.1 vs tools/riemann-munin/Rakefile in riemann-tools-1.2.0

- old
+ new

@@ -9,28 +9,25 @@ ENV['COPY_EXTENDED_ATTRIBUTES_DISABLE'] = 'true' ENV['COPYFILE_DISABLE'] = 'true' # Gemspec gemspec = Gem::Specification.new do |s| - s.rubyforge_project = 'riemann-munin' - s.name = 'riemann-munin' - s.version = '0.1.2' + s.version = '0.1.4' s.author = 'Kyle Kingsbury' s.email = 'aphyr@aphyr.com' s.homepage = 'https://github.com/riemann/riemann-tools' s.platform = Gem::Platform::RUBY s.summary = 'Submits munin stats to riemann.' s.license = 'MIT' - s.add_dependency 'riemann-tools', '>= 0.2.13' - s.add_dependency 'munin-ruby', '>= 0.2.1' + s.add_runtime_dependency 'riemann-tools', '~> 1.0', '>= 1.1.1' + s.add_runtime_dependency 'munin-ruby', '~> 0.2', '>= 0.2.5' - s.files = FileList['bin/*', 'LICENSE', 'README.md'].to_a + s.files = FileList['bin/*', 'lib/**/*.rb', 'LICENSE', 'README.md'].to_a s.executables |= Dir.entries('bin/') - s.has_rdoc = false - s.required_ruby_version = '>= 1.8.7' + s.required_ruby_version = Gem::Requirement.new('>= 2.6.0') end Gem::PackageTask.new gemspec do |p| end