File tree
9 files changed
+14
-8
lines changed- gems
- lib/doc/generators
- source
9 files changed
+14
-8
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
42 | 42 |
| |
43 | 43 |
| |
44 | 44 |
| |
45 |
| - | |
| 45 | + | |
46 | 46 |
| |
47 | 47 |
| |
48 | 48 |
| |
|
- CHANGELOG.md+2
- Gemfile+8-4
- Gemfile.lock+10-10
- lib/cocoapods.rb+15-20
- lib/cocoapods/command.rb+7-6
- lib/cocoapods/command/advanced_linter.rb-276
- lib/cocoapods/command/list.rb+2-3
- lib/cocoapods/command/outdated.rb+3-4
- lib/cocoapods/command/project.rb+10
- lib/cocoapods/command/push.rb+31-20
- lib/cocoapods/command/repo.rb+58-116
- lib/cocoapods/command/search.rb+1-1
- lib/cocoapods/command/setup.rb+96-59
- lib/cocoapods/command/spec.rb+48-32
- lib/cocoapods/config.rb+147-36
- lib/cocoapods/downloader.rb+12-37
- lib/cocoapods/downloader/git.rb-276
- lib/cocoapods/downloader/http.rb-80
- lib/cocoapods/downloader/mercurial.rb-26
- lib/cocoapods/downloader/subversion.rb-42
- lib/cocoapods/executable.rb+94-38
- lib/cocoapods/external_sources.rb+1
- lib/cocoapods/file_list.rb+3-1
- lib/cocoapods/generator/acknowledgements/markdown.rb+1-1
- lib/cocoapods/generator/documentation.rb+9-3
- lib/cocoapods/installer.rb+154-23
- lib/cocoapods/installer/target_installer.rb+93-61
- lib/cocoapods/installer/user_project_integrator.rb+19-11
- lib/cocoapods/library.rb+189
- lib/cocoapods/local_pod.rb+13-2
- lib/cocoapods/local_pod/path_list.rb+4-1
- lib/cocoapods/open_uri.rb+16-14
- lib/cocoapods/project.rb+20-341
- lib/cocoapods/resolver.rb+2-2
- lib/cocoapods/sandbox.rb+22-5
- lib/cocoapods/source.rb-67
- lib/cocoapods/sources_manager.rb+218
- lib/cocoapods/user_interface.rb+24-7
- lib/cocoapods/user_interface/error_report.rb+3-3
- lib/cocoapods/validator.rb+359
- spec/fixtures/mercurial-repo/.hg/00changelog.i
- spec/fixtures/mercurial-repo/.hg/dirstate
- spec/fixtures/mercurial-repo/.hg/hgrc-2
- spec/fixtures/mercurial-repo/.hg/last-message.txt-1
- spec/fixtures/mercurial-repo/.hg/requires-4
- spec/fixtures/mercurial-repo/.hg/store/00changelog.i
- spec/fixtures/mercurial-repo/.hg/store/00manifest.i
- spec/fixtures/mercurial-repo/.hg/store/data/_r_e_a_d_m_e.i
- spec/fixtures/mercurial-repo/.hg/store/fncache-1
- spec/fixtures/mercurial-repo/.hg/store/undo
- spec/fixtures/mercurial-repo/.hg/undo.bookmarks
- spec/fixtures/mercurial-repo/.hg/undo.branch-1
- spec/fixtures/mercurial-repo/.hg/undo.desc-2
- spec/fixtures/mercurial-repo/.hg/undo.dirstate
- spec/fixtures/mercurial-repo/README-1
- spec/fixtures/spec-repos/master+1-1
- spec/functional/command/list_spec.rb+1-1
- spec/functional/command/push_spec.rb+30-24
- spec/functional/command/repo_spec.rb+2-52
- spec/functional/command/search_spec.rb+8-23
- spec/functional/command/setup_spec.rb+45-51
- spec/functional/command/spec_spec.rb+150-138
- spec/functional/downloader/git_spec.rb-301
- spec/functional/downloader_spec.rb-90
- spec/functional/user_interface_spec.rb+36-34
- spec/spec_helper.rb-11
- spec/spec_helper/user_interface.rb+7
- spec/unit/command/advanced_linter_spec.rb-61
- spec/unit/command/repo_spec.rb-41
- spec/unit/downloader_spec.rb-58
- spec/unit/http_spec.rb-87
- spec/unit/installer/target_installer_spec.rb+137-112
- spec/unit/installer/user_project_integrator_spec.rb+113-181
- spec/unit/installer_spec.rb+40-36
- spec/unit/library_spec.rb+78
- spec/unit/project_spec.rb-221
- spec/unit/resolver_spec.rb+4-5
- spec/unit/source_spec.rb-32
- spec/unit/sources_manager_spec.rb+118
- spec/unit/validator_spec.rb+125
- .gitignore-2
- lib/cocoapods-core.rb+6-5
- lib/cocoapods-core/core_ui.rb+19
- lib/cocoapods-core/source.rb+2-2
- lib/cocoapods-core/specification.rb+4-4
- lib/cocoapods-core/specification/dsl/attribute.rb+20
- lib/cocoapods-core/specification/linter.rb+22-29
- spec/fixtures/BananaLib.podspec+1
- spec/fixtures/spec-repos/test_repo/BananaLib/1.0/BananaLib.podspec+1
- spec/lockfile_spec.rb+2-2
- spec/specification/dsl/attribute_spec.rb+7
- spec/specification/linter_spec.rb+11-7
- spec/specification/yaml_spec.rb+1
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + |
Lines changed: 3 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
| 12 | + | |
12 | 13 |
| |
13 | 14 |
| |
14 | 15 |
| |
| |||
100 | 101 |
| |
101 | 102 |
| |
102 | 103 |
| |
103 |
| - | |
104 |
| - | |
| 104 | + | |
| 105 | + | |
105 | 106 |
| |
106 | 107 |
| |
107 | 108 |
| |
|
Lines changed: 4 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
62 | 62 |
| |
63 | 63 |
| |
64 | 64 |
| |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
65 | 69 |
| |
66 | 70 |
| |
67 | 71 |
| |
|
Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
0 commit comments