Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
b8f32ec3
Commit
b8f32ec3
authored
Feb 03, 2016
by
Marius Rackwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Spec Fixtures] Add spec with subspecs
parent
dd929589
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
73 additions
and
0 deletions
+73
-0
Bar.h
spec/fixtures/matryoshka/Bar/Bar.h
+0
-0
Bar.m
spec/fixtures/matryoshka/Bar/Bar.m
+0
-0
Foo.h
spec/fixtures/matryoshka/Foo/Foo.h
+0
-0
Foo.m
spec/fixtures/matryoshka/Foo/Foo.m
+0
-0
Inner.h
spec/fixtures/matryoshka/Inner/Inner.h
+0
-0
Inner.m
spec/fixtures/matryoshka/Inner/Inner.m
+0
-0
Middle.h
spec/fixtures/matryoshka/Middle/Middle.h
+0
-0
Middle.m
spec/fixtures/matryoshka/Middle/Middle.m
+0
-0
Outer.h
spec/fixtures/matryoshka/Outer/Outer.h
+0
-0
Outer.m
spec/fixtures/matryoshka/Outer/Outer.m
+0
-0
Outmost.h
spec/fixtures/matryoshka/Outmost.h
+0
-0
Outmost.m
spec/fixtures/matryoshka/Outmost.m
+0
-0
matryoshka.podspec
spec/fixtures/matryoshka/matryoshka.podspec
+30
-0
matryoshka.podspec.json
...-repos/test_repo/matryoshka/1.0.0/matryoshka.podspec.json
+43
-0
No files found.
spec/fixtures/matryoshka/Bar/Bar.h
0 → 100644
View file @
b8f32ec3
spec/fixtures/matryoshka/Bar/Bar.m
0 → 100644
View file @
b8f32ec3
spec/fixtures/matryoshka/Foo/Foo.h
0 → 100644
View file @
b8f32ec3
spec/fixtures/matryoshka/Foo/Foo.m
0 → 100644
View file @
b8f32ec3
spec/fixtures/matryoshka/Inner/Inner.h
0 → 100644
View file @
b8f32ec3
spec/fixtures/matryoshka/Inner/Inner.m
0 → 100644
View file @
b8f32ec3
spec/fixtures/matryoshka/Middle/Middle.h
0 → 100644
View file @
b8f32ec3
spec/fixtures/matryoshka/Middle/Middle.m
0 → 100644
View file @
b8f32ec3
spec/fixtures/matryoshka/Outer/Outer.h
0 → 100644
View file @
b8f32ec3
spec/fixtures/matryoshka/Outer/Outer.m
0 → 100644
View file @
b8f32ec3
spec/fixtures/matryoshka/Outmost.h
0 → 100644
View file @
b8f32ec3
spec/fixtures/matryoshka/Outmost.m
0 → 100644
View file @
b8f32ec3
spec/fixtures/matryoshka/matryoshka.podspec
0 → 100644
View file @
b8f32ec3
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
"matryoshka"
s
.
version
=
"1.0.0"
s
.
author
=
{
"Matryona Malyutin"
=>
"matryona@malyutin.local"
}
s
.
summary
=
"👩👩👧"
s
.
description
=
"Four levels: outmost (root), outer, inner"
s
.
homepage
=
"http://httpbin.org/html"
s
.
source
=
{
:git
=>
"http://malyutin.local/matryoshka.git"
,
:tag
=>
s
.
version
.
to_s
}
s
.
license
=
'MIT'
s
.
source_files
=
'Outmost.{h,m}'
s
.
default_subspecs
=
'Outer'
s
.
subspec
'Outer'
do
|
outer_subspec
|
outer_subspec
.
source_files
=
'Outer/Outer.{h,m}'
outer_subspec
.
subspec
'Inner'
do
|
inner_subspec
|
inner_subspec
.
source_files
=
'Inner/Inner.{h,m}'
end
end
s
.
subspec
'Foo'
do
|
ss
|
ss
.
source_files
=
'Foo/Foo.{h,m}'
end
s
.
subspec
'Bar'
do
|
ss
|
ss
.
source_files
=
'Bar/Bar.{h,m}'
end
end
spec/fixtures/spec-repos/test_repo/matryoshka/1.0.0/matryoshka.podspec.json
0 → 100644
View file @
b8f32ec3
{
"name"
:
"matryoshka"
,
"version"
:
"1.0.0"
,
"authors"
:
{
"Matryona Malyutin"
:
"matryona@malyutin.local"
},
"summary"
:
"👩👩👧"
,
"description"
:
"Four levels: outmost (root), outer, inner"
,
"homepage"
:
"http://httpbin.org/html"
,
"source"
:
{
"git"
:
"http://malyutin.local/matroyshka.git"
,
"tag"
:
"1.0.0"
},
"license"
:
"MIT"
,
"source_files"
:
"Outmost.{h,m}"
,
"default_subspecs"
:
"Outer"
,
"platforms"
:
{
"osx"
:
null
,
"ios"
:
null
,
"tvos"
:
null
,
"watchos"
:
null
},
"subspecs"
:
[
{
"name"
:
"Outer"
,
"source_files"
:
"Outer/Outer.{h,m}"
,
"subspecs"
:
[
{
"name"
:
"Inner"
,
"source_files"
:
"Inner/Inner.{h,m}"
}
]
},
{
"name"
:
"Foo"
,
"source_files"
:
"Foo/Foo.{h,m}"
},
{
"name"
:
"Bar"
,
"source_files"
:
"Bar/Bar.{h,m}"
}
]
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment