Skip to content

Commit

Permalink
update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
tomohiro committed Sep 20, 2012
1 parent c358716 commit 66d9e1d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
14 changes: 14 additions & 0 deletions Gemfile.lock
Expand Up @@ -3,7 +3,9 @@ PATH
specs:
airplayer (0.0.1)
airplay
rack
ruby-progressbar
thor

GEM
remote: https://rubygems.org/
Expand All @@ -12,13 +14,25 @@ GEM
dnssd (~> 2.0)
net-http-digest_auth (~> 1.2)
net-http-persistent (>= 2.6)
diff-lcs (1.1.3)
dnssd (2.0)
net-http-digest_auth (1.2.1)
net-http-persistent (2.7)
rack (1.4.1)
rspec (2.11.0)
rspec-core (~> 2.11.0)
rspec-expectations (~> 2.11.0)
rspec-mocks (~> 2.11.0)
rspec-core (2.11.1)
rspec-expectations (2.11.3)
diff-lcs (~> 1.1.3)
rspec-mocks (2.11.3)
ruby-progressbar (1.0.1)
thor (0.16.0)

PLATFORMS
ruby

DEPENDENCIES
airplayer!
rspec
14 changes: 9 additions & 5 deletions airplayer.gemspec
Expand Up @@ -2,19 +2,23 @@
require File.expand_path('../lib/airplayer/version', __FILE__)

Gem::Specification.new do |gem|
gem.name = 'airplayer'
gem.version = AirPlayer::VERSION
gem.authors = ['Tomohiro, TAIRA']
gem.email = ['tomohiro.t@gmail.com']
gem.description = %q{Command-line AirPlay video client}
gem.summary = %q{Command-line AirPlay video client}
gem.homepage = ''
gem.description = %q{Command-line AirPlay video client for AppleTV}
gem.summary = %q{Command-line AirPlay video client for AppleTV}
gem.homepage = 'https://github.com/Tomohiro/airplayer'

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

gem.add_runtime_dependency 'thor'
gem.add_runtime_dependency 'ruby-progressbar'
gem.add_runtime_dependency 'airplay'
gem.add_runtime_dependency 'rack'

gem.add_development_dependency 'rspec'
end

0 comments on commit 66d9e1d

Please sign in to comment.