Edit

thodg/mpd_client/mpd_client.gemspec

Branch :

  • Show log

    Commit

  • Author : Anton Maminov
    Date : 2022-05-05 21:40:56
    Hash : 2070c73e
    Message : Update mpd_client.gemspec

  • mpd_client.gemspec
  • # frozen_string_literal: true
    
    lib = File.expand_path('lib', __dir__)
    $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
    require 'mpd_client/version'
    
    Gem::Specification.new do |gem|
      gem.authors       = ['Anton Maminov']
      gem.email         = ['anton.linux@gmail.com']
      gem.description   = 'Yet another Ruby MPD client library'
      gem.summary       = 'Simple Music Player Daemon library written entirely in Ruby'
      gem.homepage      = 'https://github.com/mamantoha/mpd_client'
    
      gem.files         = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
      gem.executables   = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
      gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
      gem.required_ruby_version = '>= 2.6.6'
      gem.name          = 'mpd_client'
      gem.require_paths = ['lib']
      gem.version       = MPD::Client::VERSION
      gem.license       = 'MIT'
    
      gem.add_development_dependency 'bundler'
      gem.metadata['rubygems_mfa_required'] = 'true'
    end