Skip to content

Commit

Permalink
[Gemfile] Update rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
kylef committed Jan 4, 2015
1 parent c05aef0 commit a5a642e
Show file tree
Hide file tree
Showing 8 changed files with 3 additions and 14 deletions.
6 changes: 3 additions & 3 deletions Gemfile.lock
Expand Up @@ -32,7 +32,7 @@ GEM
mocha (>= 0.13.0)
multi_json (1.10.1)
notify (0.5.2)
parser (2.2.0.pre.7)
parser (2.2.0.1)
ast (>= 1.1, < 3.0)
slop (~> 3.4, >= 3.4.5)
powerpack (0.0.9)
Expand All @@ -45,13 +45,13 @@ GEM
ffi (>= 0.5.0)
rb-kqueue (0.2.3)
ffi (>= 0.5.0)
rubocop (0.27.1)
rubocop (0.28.0)
astrolabe (~> 1.3)
parser (>= 2.2.0.pre.7, < 3.0)
powerpack (~> 0.0.6)
rainbow (>= 1.99.1, < 3.0)
ruby-progressbar (~> 1.4)
ruby-progressbar (1.7.0)
ruby-progressbar (1.7.1)
safe_yaml (1.0.4)
simplecov (0.9.1)
docile (~> 1.1.0)
Expand Down
2 changes: 0 additions & 2 deletions lib/cocoapods-downloader/http.rb
Expand Up @@ -62,8 +62,6 @@ def type_with_url(url)
:tbz
elsif path =~ /.(txz|tar\.xz)$/
:txz
else
nil
end
end

Expand Down
1 change: 0 additions & 1 deletion spec/bazaar_spec.rb
Expand Up @@ -3,7 +3,6 @@
module Pod
module Downloader
describe 'Bazaar' do

before do
tmp_folder.rmtree if tmp_folder.exist?
end
Expand Down
2 changes: 0 additions & 2 deletions spec/cocoapods-downloaders_spec.rb
Expand Up @@ -3,7 +3,6 @@
module Pod
module Downloader
describe Downloader do

before do
@subject = Downloader
end
Expand Down Expand Up @@ -40,7 +39,6 @@ module Downloader
end

describe '::for_target' do

it 'returns the Git downloader' do
concrete = @subject.for_target(tmp_folder, :git => 'url')
concrete.class.should == @subject::Git
Expand Down
1 change: 0 additions & 1 deletion spec/git_spec.rb
Expand Up @@ -3,7 +3,6 @@
module Pod
module Downloader
describe 'Git' do

def fixture_url(name)
'file://' + fixture(name).to_s
end
Expand Down
1 change: 0 additions & 1 deletion spec/http_spec.rb
Expand Up @@ -3,7 +3,6 @@
module Pod
module Downloader
describe 'HTTP' do

before do
tmp_folder.rmtree if tmp_folder.exist?
@fixtures_url = 'file://' + fixture('http').to_s
Expand Down
3 changes: 0 additions & 3 deletions spec/mercurial_spec.rb
Expand Up @@ -3,7 +3,6 @@
module Pod
module Downloader
describe 'Mercurial' do

before do
tmp_folder.rmtree if tmp_folder.exist?
end
Expand Down Expand Up @@ -56,7 +55,6 @@ module Downloader
downloader.download
tmp_folder_with_quotes('README').read.strip.should == 'fourth commit'
end

end

it 'returns the checked out revision' do
Expand Down Expand Up @@ -101,7 +99,6 @@ module Downloader
:revision => '61118fa8988c2b2eae826f48abd1e3340dae0c6b',
}
end

end
end
end
1 change: 0 additions & 1 deletion spec/subversion_spec.rb
Expand Up @@ -3,7 +3,6 @@
module Pod
module Downloader
describe 'Subversion' do

before do
tmp_folder.rmtree if tmp_folder.exist?
end
Expand Down

0 comments on commit a5a642e

Please sign in to comment.