From 191d31c32eafafc2e4d728053a81937175e96859 Mon Sep 17 00:00:00 2001 From: SHIBATA Hiroshi Date: Sat, 21 Apr 2018 09:36:36 +0900 Subject: [PATCH] ordered --- gems.gemspec | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/gems.gemspec b/gems.gemspec index a8dde06..758b275 100644 --- a/gems.gemspec +++ b/gems.gemspec @@ -5,17 +5,20 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'gems/version' Gem::Specification.new do |spec| - spec.add_dependency 'json' - spec.add_development_dependency 'bundler', '~> 1.0' - spec.authors = ['Erik Michaels-Ober'] + spec.version = Gems::VERSION + spec.name = 'gems' spec.description = 'Ruby wrapper for the RubyGems.org API' + spec.summary = spec.description + + spec.authors = ['Erik Michaels-Ober'] spec.email = ['sferik@gmail.com'] + spec.files = %w[.yardopts CONTRIBUTING.md LICENSE.md README.md gems.gemspec] + Dir['lib/**/*.rb'] spec.homepage = 'https://github.com/rubygems/gems' spec.licenses = %w[MIT] - spec.name = 'gems' spec.require_paths = %w[lib] spec.required_ruby_version = '>= 2.1.9' - spec.summary = spec.description - spec.version = Gems::VERSION + + spec.add_dependency 'json' + spec.add_development_dependency 'bundler', '~> 1.0' end