File tree
7 files changed
+7
-11
lines changed- gems
- lib/doc/generators
7 files changed
+7
-11
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 |
| - | |
| 5 | + | |
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
|
Lines changed: 0 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
24 | 24 |
| |
25 | 25 |
| |
26 | 26 |
| |
27 |
| - | |
28 | 27 |
| |
29 | 28 |
| |
30 | 29 |
| |
| |||
99 | 98 |
| |
100 | 99 |
| |
101 | 100 |
| |
102 |
| - | |
103 |
| - | |
104 | 101 |
| |
105 | 102 |
| |
106 | 103 |
| |
| |||
121 | 118 |
| |
122 | 119 |
| |
123 | 120 |
| |
124 |
| - | |
125 | 121 |
|
- .gitignore+2
- .gitmodules+1
- CHANGELOG.md+73-17
- Gemfile.lock-121
- README.md+2-2
- cocoapods.gemspec+8-13
- examples/Example.podspec+1-1
- lib/cocoapods.rb+4-3
- lib/cocoapods/command.rb+15-3
- lib/cocoapods/command/list.rb+2
- lib/cocoapods/command/outdated.rb+20-14
- lib/cocoapods/command/project.rb+9-6
- lib/cocoapods/command/push.rb+8-1
- lib/cocoapods/command/setup.rb-1
- lib/cocoapods/command/spec.rb+204-32
- lib/cocoapods/config.rb+107-69
- lib/cocoapods/downloader.rb+41-3
- lib/cocoapods/executable.rb+11-10
- lib/cocoapods/external_sources.rb+10-10
- lib/cocoapods/gem_version.rb+7
- lib/cocoapods/generator/acknowledgements.rb-6
- lib/cocoapods/generator/acknowledgements/markdown.rb+4-3
- lib/cocoapods/generator/acknowledgements/plist.rb+4-3
- lib/cocoapods/generator/documentation.rb+7-4
- lib/cocoapods/generator/prefix_header.rb+13-6
- lib/cocoapods/generator/target_header.rb+57
- lib/cocoapods/generator/xcconfig.rb+1-3
- lib/cocoapods/installer.rb+241-550
- lib/cocoapods/installer/analyzer.rb+544
- lib/cocoapods/installer/target_installer.rb+191-123
- lib/cocoapods/installer/user_project_integrator.rb+12-10
- lib/cocoapods/library.rb+51-54
- lib/cocoapods/local_pod.rb+75-53
- lib/cocoapods/local_pod/path_list.rb+8-10
- lib/cocoapods/open_uri.rb+1-1
- lib/cocoapods/project.rb+5-11
- lib/cocoapods/resolver.rb+79-77
- lib/cocoapods/sandbox.rb+168-158
- lib/cocoapods/user_interface.rb+7-3
- lib/cocoapods/user_interface/error_report.rb+2-2
- lib/cocoapods/validator.rb+10-11
- spec/functional/command/install_spec.rb-12
- spec/functional/command/list_spec.rb-1
- spec/functional/command/outdated_spec.rb-1
- spec/functional/command/project_spec.rb+33
- spec/functional/command/push_spec.rb-5
- spec/functional/command/repo_spec.rb-1
- spec/functional/command/search_spec.rb+1-1
- spec/functional/command/setup_spec.rb+1-1
- spec/functional/command/spec_spec.rb+24-24
- spec/functional/command/update_spec.rb-22
- spec/integration_spec.rb+367-407
- spec/spec_helper.rb+51-25
- spec/spec_helper/bacon.rb+1-1
- spec/spec_helper/command.rb-2
- spec/spec_helper/github.rb+2
- spec/spec_helper/pre_flight.rb+10-2
- spec/spec_helper/temporary_directory.rb-29
- spec/spec_helper/temporary_repos.rb-5
- spec/spec_helper/user_interface.rb+3
- spec/unit/config_spec.rb+57-38
- spec/unit/external_sources_spec.rb+97-32
- spec/unit/generator/acknowledgements/markdown_spec.rb+3-2
- spec/unit/generator/acknowledgements/plist_spec.rb+3-2
- spec/unit/generator/acknowledgements_spec.rb+3-5
- spec/unit/generator/bridge_support_spec.rb+13-8
- spec/unit/generator/dummy_source_spec.rb+12-20
- spec/unit/generator/prefix_header_spec.rb+13-1
- spec/unit/generator/target_header_spec.rb+20
- spec/unit/generator/xcconfig_spec.rb+2-2
- spec/unit/installer/analyzer_spec.rb+386
- spec/unit/installer/target_installer_spec.rb+47-6
- spec/unit/installer/user_project_integrator_spec.rb+6-5
- spec/unit/installer_spec.rb+27-58
- spec/unit/library_spec.rb+20-25
- spec/unit/local_pod/path_list_spec.rb+9-4
- spec/unit/local_pod_spec.rb+273-238
- spec/unit/project_spec.rb+2-10
- spec/unit/resolver_spec.rb+87-264
- spec/unit/sandbox_spec.rb+108-93
- spec/unit/sources_manager_spec.rb-2
- spec/unit/validator_spec.rb+5-6
- Gemfile.lock+12-9
- cocoapods-core.gemspec+4-3
- lib/cocoapods-core.rb+14-27
- lib/cocoapods-core/core_ui.rb+1-1
- lib/cocoapods-core/dependency.rb+16-26
- lib/cocoapods-core/gem_version.rb+1-2
- lib/cocoapods-core/lockfile.rb+87-27
- lib/cocoapods-core/platform.rb+28-3
- lib/cocoapods-core/podfile/dsl.rb+15-7
- lib/cocoapods-core/requirement.rb+15
- lib/cocoapods-core/source.rb+8-7
- lib/cocoapods-core/specification.rb+293-250
- lib/cocoapods-core/specification/consumer.rb+349
- lib/cocoapods-core/specification/dsl.rb+180-360
- lib/cocoapods-core/specification/dsl/attribute.rb+24-324
- lib/cocoapods-core/specification/dsl/attribute_support.rb+76
- lib/cocoapods-core/specification/dsl/deprecations.rb+47
- lib/cocoapods-core/specification/dsl/platform_proxy.rb+67
- lib/cocoapods-core/specification/linter.rb+82-37
- lib/cocoapods-core/specification/root_attribute_accessors.rb+152
- lib/cocoapods-core/specification/set.rb+1-1
- lib/cocoapods-core/specification/yaml.rb+43-49
- lib/cocoapods-core/vendor.rb+56
- lib/cocoapods-core/vendor/dependency.rb+264
- lib/cocoapods-core/vendor/requirement.rb+208
- lib/cocoapods-core/vendor/version.rb+333
- lib/cocoapods-core/version.rb+8-5
- spec/fixtures/BananaLib.podspec+21-6
- spec/fixtures/BananaLib.podspec.yaml+54
- spec/fixtures/spec-repos/test_repo/YAMLSpec/0.9/YAMLSpec.podspec+4
- spec/fixtures/spec-repos/test_repo/YAMLSpec/0.9/YAMLSpec.podspec.yaml+3
- spec/fixtures/spec-repos/test_repo/YAMLSpec/1.0/YAMLSpec.podspec.yaml+3
- spec/lockfile_spec.rb+25-16
- spec/platform_spec.rb+26
- spec/source_spec.rb+19-1
- spec/spec_helper/bacon.rb+38-14
- spec/specification/consumer_spec.rb+504
- spec/specification/dsl/attribute_spec.rb+22-310
- spec/specification/dsl/attribute_support_spec.rb+57
- spec/specification/dsl/deprecations_spec.rb+61
- spec/specification/dsl/platform_proxy_spec.rb+62
- spec/specification/dsl_spec.rb+130-351
- spec/specification/linter_spec.rb+27-7
- spec/specification/root_attribute_accessors_spec.rb+122
- spec/specification/set_spec.rb+2-1
- spec/specification/yaml_spec.rb+73-85
- spec/specification_spec.rb+167-138
- Gemfile+2
- Gemfile.lock+15-8
- README.md+4-11
- Rakefile+5
- ext/xcodeproj/xcodeproj_ext.c+3-5
- lib/xcodeproj.rb+1-1
- lib/xcodeproj/command/show.rb+2-1
- lib/xcodeproj/config.rb+17-10
- lib/xcodeproj/constants.rb+8
- lib/xcodeproj/project.rb+87-43
- lib/xcodeproj/project/object/group.rb+8-2
- lib/xcodeproj/project/object/native_target.rb+17-5
- spec/config_spec.rb+5
- spec/project/object/group_spec.rb+2-1
- spec/project/object/native_target_spec.rb+5-8
- spec/project_spec.rb+21-8
- spec/spec_helper.rb+4-7
- spec/spec_helper/bacon.rb+147
- spec/spec_helper/color_output.rb-43
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + |
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
81 | 81 |
| |
82 | 82 |
| |
83 | 83 |
| |
84 |
| - | |
| 84 | + | |
85 | 85 |
| |
86 | 86 |
| |
87 | 87 |
| |
88 |
| - | |
| 88 | + | |
89 | 89 |
| |
90 | 90 |
| |
91 | 91 |
| |
|
0 commit comments