Skip to content

Commit

Permalink
RuboCop
Browse files Browse the repository at this point in the history
  • Loading branch information
segiddins committed Jan 7, 2020
1 parent f2dd978 commit 6baa78e
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 39 deletions.
1 change: 0 additions & 1 deletion lib/cocoapods/generate/podfile_generator.rb
Expand Up @@ -142,7 +142,6 @@ def podfile_for_spec(spec)

def transitive_local_dependencies(spec, paths, found_podspecs: {}, include_non_library_subspecs: true)
if include_non_library_subspecs
recursive_subspecs = spec.recursive_subspecs
non_library_specs = spec.recursive_subspecs.select do |ss|
ss.test_specification? || (ss.respond_to?(:app_specification?) && ss.app_specification?)
end
Expand Down
@@ -1,23 +1,22 @@
# frozen_string_literal: true

Pod::Specification.new do |s|
s.name = 'Forkable'
s.version = '9.0.0'

s.authors = %w[Square]
s.homepage = 'https://github.com/Square/cocoapods-generate'
s.source = { git: 'https://github.com/Square/cocoapods-generate' }
s.summary = 'Testing pod'

s.ios.deployment_target = '9.0'
s.macos.deployment_target = '10.10'
s.watchos.deployment_target = '4.0'
s.tvos.deployment_target = '11.0'

s.source_files = 'Forkable/Sources'

s.test_spec 'Tests' do |ts|
ts.source_files = 'Forkable/Tests'
end
s.name = 'Forkable'
s.version = '9.0.0'

s.authors = %w[Square]
s.homepage = 'https://github.com/Square/cocoapods-generate'
s.source = { git: 'https://github.com/Square/cocoapods-generate' }
s.summary = 'Testing pod'

s.ios.deployment_target = '9.0'
s.macos.deployment_target = '10.10'
s.watchos.deployment_target = '4.0'
s.tvos.deployment_target = '11.0'

s.source_files = 'Forkable/Sources'

s.test_spec 'Tests' do |ts|
ts.source_files = 'Forkable/Tests'
end
end
@@ -1,23 +1,22 @@
# frozen_string_literal: true

Pod::Specification.new do |s|
s.name = 'Forkable'
s.version = '9.0.0'

s.authors = %w[Square]
s.homepage = 'https://github.com/Square/cocoapods-generate'
s.source = { git: 'https://github.com/Square/cocoapods-generate' }
s.summary = 'Testing pod'

s.ios.deployment_target = '9.0'
s.macos.deployment_target = '10.10'
s.watchos.deployment_target = '4.0'
s.tvos.deployment_target = '11.0'

s.source_files = 'Forkable/Sources'

s.test_spec 'Tests' do |ts|
ts.source_files = 'Forkable/Tests'
end
s.name = 'Forkable'
s.version = '9.0.0'

s.authors = %w[Square]
s.homepage = 'https://github.com/Square/cocoapods-generate'
s.source = { git: 'https://github.com/Square/cocoapods-generate' }
s.summary = 'Testing pod'

s.ios.deployment_target = '9.0'
s.macos.deployment_target = '10.10'
s.watchos.deployment_target = '4.0'
s.tvos.deployment_target = '11.0'

s.source_files = 'Forkable/Sources'

s.test_spec 'Tests' do |ts|
ts.source_files = 'Forkable/Tests'
end
end

0 comments on commit 6baa78e

Please sign in to comment.