raph.gemspec in raph-0.0.1 vs raph.gemspec in raph-0.0.2

- old
+ new

@@ -1,26 +1,29 @@ -# coding: utf-8 -lib = File.expand_path('../lib', __FILE__) -$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) -require 'raph/version' - -Gem::Specification.new do |spec| - spec.name = 'raph' - spec.version = Raph::VERSION - spec.authors = ['Vitalii Elenhaupt'] - spec.email = ['velenhaupt@gmail.com'] - spec.summary = 'Ruby Argument Parsing for Humans.' - spec.description = 'Simple argument parser.' - spec.homepage = 'https://github.com/veelenga/raph' - spec.license = 'MIT' - - spec.files = `git ls-files`.split($RS) - spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) } - spec.test_files = spec.files.grep(/^spec\//) - spec.require_paths = ['lib'] - - spec.required_ruby_version = '>= 1.9.3' - - spec.add_development_dependency 'bundler', '~> 1.7' - spec.add_development_dependency 'rake', '~> 10.0' - spec.add_development_dependency 'rspec', '~> 3.0' -end +# coding: utf-8 +lib = File.expand_path('../lib', __FILE__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require 'raph/version' + +Gem::Specification.new do |spec| + spec.name = 'raph' + spec.version = Raph::VERSION + spec.authors = ['Vitalii Elenhaupt'] + spec.email = ['velenhaupt@gmail.com'] + spec.summary = 'Ruby Argument Parsing for Humans.' + spec.description = <<-DESC + Lightweight argument parsing with flexible structure. + Add your parser in few minutes. + DESC + spec.homepage = 'https://github.com/veelenga/raph' + spec.license = 'MIT' + + spec.files = `git ls-files`.split($RS) + spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) } + spec.test_files = spec.files.grep(/^spec\//) + spec.require_paths = ['lib'] + + spec.required_ruby_version = '>= 1.9.3' + + spec.add_development_dependency 'bundler', '~> 1.7' + spec.add_development_dependency 'rake', '~> 10.0' + spec.add_development_dependency 'rspec', '~> 3.0' +end