git_dump.gemspec in git_dump-0.1.0 vs git_dump.gemspec in git_dump-0.1.1

- old
+ new

@@ -1,22 +1,26 @@ # encoding: UTF-8 Gem::Specification.new do |s| s.name = 'git_dump' - s.version = '0.1.0' + s.version = '0.1.1' s.summary = %q{Distributed versioned store using git} s.homepage = "http://github.com/toy/#{s.name}" s.authors = ['Ivan Kuchin'] s.license = 'MIT' - s.rubyforge_project = s.name + s.metadata = { + 'bug_tracker_uri' => "https://github.com/toy/#{s.name}/issues", + 'documentation_uri' => "https://www.rubydoc.info/gems/#{s.name}/#{s.version}", + 'source_code_uri' => "https://github.com/toy/#{s.name}", + } s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = %w[lib] s.add_development_dependency 'rspec', '~> 3.0' - if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('1.9.3') - s.add_development_dependency 'rubocop', '~> 0.27' + if RUBY_VERSION >= '2.1' + s.add_development_dependency 'rubocop', '~> 0.52' end end