Sha256: e06d3b1b196b7f89fa993e1a52842e6dab493f016f3786f36ef42767d240b1e3

Contents?: true

Size: 1.55 KB

Versions: 2

Compression:

Stored size: 1.55 KB

Contents

# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'airplayer/version'

Gem::Specification.new do |spec|
  spec.name          = 'airplayer'
  spec.version       = AirPlayer::VERSION
  spec.authors       = ['Tomohiro TAIRA']
  spec.email         = ['tomohiro.t@gmail.com']
  spec.description   = 'Command-line AirPlay video client for Apple TV'
  spec.summary       = 'Command-line AirPlay video client for Apple TV'
  spec.homepage      = 'https://github.com/Tomohiro/airplayer'

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']

  spec.add_runtime_dependency 'thor'
  spec.add_runtime_dependency 'ruby-progressbar'
  spec.add_runtime_dependency 'rack'
  spec.add_runtime_dependency 'http', '= 0.5.0'
  spec.add_runtime_dependency 'reel', '= 0.4.0'
  spec.add_runtime_dependency 'reel-rack', '= 0.1.0'
  spec.add_runtime_dependency 'celluloid', '= 0.15.2'
  spec.add_runtime_dependency 'celluloid-io', '= 0.15.0'
  spec.add_runtime_dependency 'cuba', '= 3.1.1'
  spec.add_runtime_dependency 'airplay', '~> 1.0.2'
  spec.add_runtime_dependency 'mime-types', '~> 2.4.0'

  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec'
  spec.add_development_dependency 'guard-rspec'
  spec.add_development_dependency 'fakefs'
  spec.add_development_dependency 'coveralls'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
airplayer-1.0.0 airplayer.gemspec
airplayer-1.0.0.pre airplayer.gemspec