Edit

thodg/mpd_client/mpd_client.gemspec

Branch :

  • Show log

    Commit

  • Author : Anton Maminov
    Date : 2018-07-31 17:31:06
    Hash : 141cc085
    Message : Rename MPDClient to MPD::Client (#6) * Rename MPDClient to MPD::Client * remove redundants return * Avoid single-line method definitions * nothing special * update readme * add idle example * add rubocop * add .hound.yml * add travis config * add badges to readme * remove rakefile * add rake * revert rakefile * ichange gemspec * add rspec * change travis config * remove rakefile * remove rack-test * add spec * add test * fix rubocop * update badges

  • 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.name          = 'mpd_client'
      gem.require_paths = ['lib']
      gem.version       = MPD::Client::VERSION
    
      gem.add_development_dependency 'bundler', '~> 1.16'
    end