Skip to content

Commit

Permalink
Lock version of dependency gems to backward compatibilty
Browse files Browse the repository at this point in the history
  • Loading branch information
tomohiro committed May 9, 2014
1 parent a9c2fe5 commit 81d9eb5
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 30 deletions.
59 changes: 31 additions & 28 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,21 @@ PATH
remote: .
specs:
airplayer (0.0.9)
airplay (= 1.0.2)
mime-types
airplay (~> 1.0.2)
http (~> 0.5.0)
mime-types (= 2.0)
nokogiri
rack
reel (~> 0.4.0)
reel-rack (~> 0.1.0)
ruby-progressbar
thor

GEM
remote: https://rubygems.org/
specs:
CFPropertyList (2.2.6)
airplay (1.0.2)
CFPropertyList (2.2.7)
airplay (1.0.3)
CFPropertyList (~> 2.2.0)
celluloid (>= 0.15.0)
cuba (~> 3.1.0)
Expand All @@ -36,37 +39,38 @@ GEM
simplecov (>= 0.7)
term-ansicolor
thor
cuba (3.1.0)
cuba (3.1.1)
rack
diff-lcs (1.2.5)
dnssd (2.0)
docile (1.1.2)
fakefs (0.5.0)
docile (1.1.3)
fakefs (0.5.2)
ffi (1.9.3)
formatador (0.2.4)
guard (2.3.0)
guard (2.6.1)
formatador (>= 0.2.4)
listen (~> 2.1)
listen (~> 2.7)
lumberjack (~> 1.0)
pry (>= 0.9.12)
thor (>= 0.18.1)
guard-rspec (4.2.4)
guard-rspec (4.2.8)
guard (~> 2.1)
rspec (>= 2.14, < 4.0)
http (0.5.0)
http_parser.rb
http_parser.rb (0.6.0)
listen (2.4.0)
listen (2.7.4)
celluloid (>= 0.15.2)
celluloid-io (>= 0.15.0)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
log4r (1.1.10)
lumberjack (1.0.4)
lumberjack (1.0.5)
method_source (0.8.2)
micromachine (1.0.4)
mime-types (2.0)
mini_portile (0.5.2)
multi_json (1.8.4)
mini_portile (0.5.3)
multi_json (1.10.0)
net-http-digest_auth (1.2.1)
net-ptth (0.0.17)
celluloid-io (>= 0.15.0)
Expand All @@ -75,14 +79,14 @@ GEM
nio4r (1.0.0)
nokogiri (1.6.1)
mini_portile (~> 0.5.0)
pry (0.9.12.4)
pry (0.9.12.6)
coderay (~> 1.0)
method_source (~> 0.8)
slop (~> 3.4)
rack (1.5.2)
rake (10.1.1)
rake (10.3.1)
rb-fsevent (0.9.4)
rb-inotify (0.9.3)
rb-inotify (0.9.4)
ffi (>= 0.5.0)
reel (0.4.0)
celluloid (>= 0.15.1)
Expand All @@ -99,24 +103,23 @@ GEM
rspec-core (~> 2.14.0)
rspec-expectations (~> 2.14.0)
rspec-mocks (~> 2.14.0)
rspec-core (2.14.7)
rspec-expectations (2.14.4)
rspec-core (2.14.8)
rspec-expectations (2.14.5)
diff-lcs (>= 1.1.3, < 2.0)
rspec-mocks (2.14.4)
ruby-progressbar (1.4.0)
rspec-mocks (2.14.6)
ruby-progressbar (1.4.2)
simplecov (0.8.2)
docile (~> 1.1.0)
multi_json
simplecov-html (~> 0.8.0)
simplecov-html (0.8.0)
slop (3.4.7)
term-ansicolor (1.2.2)
tins (~> 0.8)
thor (0.18.1)
slop (3.5.0)
term-ansicolor (1.3.0)
tins (~> 1.0)
thor (0.19.1)
timers (1.1.0)
tins (0.13.1)
websocket_parser (0.1.5)
http
tins (1.1.0)
websocket_parser (0.1.6)

PLATFORMS
ruby
Expand Down
7 changes: 5 additions & 2 deletions airplayer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,12 @@ Gem::Specification.new do |spec|

spec.add_runtime_dependency 'thor'
spec.add_runtime_dependency 'ruby-progressbar'
spec.add_runtime_dependency 'airplay', '= 1.0.2'
spec.add_runtime_dependency 'rack'
spec.add_runtime_dependency 'mime-types'
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 'airplay', '~> 1.0.2'
spec.add_runtime_dependency 'mime-types', '= 2.0'
spec.add_runtime_dependency 'nokogiri'

spec.add_development_dependency 'bundler'
Expand Down

0 comments on commit 81d9eb5

Please sign in to comment.