Skip to content

Commit

Permalink
Update references to xcbuddy
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Piñera committed Jun 10, 2018
1 parent bfc5be1 commit 1ad8b07
Show file tree
Hide file tree
Showing 129 changed files with 17,353 additions and 1,905 deletions.
5 changes: 2 additions & 3 deletions .jazzy.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
author: xcbuddy
author: xcode-project-manager
module: xcodeproj
module_version: 0.0.1
github_url: https://github.com/xcbuddy/xcodeproj
github_url: https://github.com/xcode-project-manager/xcodeproj
copyright: 'Copyright © from 2018 Pedro Piñera Buendía. All rights reserved.'
readme: ABOUT.md
documentation: guides/*.md
Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Check out the organization [CODE OF CONDUCT](https://github.com/xcbuddy/contributors/blob/master/CODE_OF_CONDUCT.md)
Check out the organization [CODE OF CONDUCT](https://github.com/xcode-project-manager/contributors/blob/master/CODE_OF_CONDUCT.md)
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<a href="https://swift.org/package-manager">
<img src="https://img.shields.io/badge/spm-compatible-brightgreen.svg?style=flat" alt="Swift Package Manager"/>
</a>
<a href="https://github.com/xcbuddy/xcodeproj/releases">
<img src="https://img.shields.io/github/release/xcbuddy/xcodeproj.svg"/>
<a href="https://github.com/xcode-project-manager/xcodeproj/releases">
<img src="https://img.shields.io/github/release/xcode-project-manager/xcodeproj.svg"/>
</a>
<a href="https://opensource.org/licenses/MIT">
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License" />
Expand All @@ -19,12 +19,12 @@ xcodeproj is a library written in Swift for parsing and working with Xcode proje

## Continuous Integration

- **Master:** [![Build Status](https://travis-ci.com/xcbuddy/xcodeproj.svg?branch=master)](https://travis-ci.com/xcbuddy/xcodeproj)
- **Integration:** [![Build Status](https://travis-ci.com/xcbuddy/xcodeproj.svg?branch=integration)](https://travis-ci.com/xcbuddy/xcodeproj)
- **Master:** [![Build Status](https://travis-ci.com/xcode-project-manager/xcodeproj.svg?branch=master)](https://travis-ci.com/xcode-project-manager/xcodeproj)
- **Integration:** [![Build Status](https://travis-ci.com/xcode-project-manager/xcodeproj.svg?branch=integration)](https://travis-ci.com/xcode-project-manager/xcodeproj)

## Contribute

1. Git clone the repository `[email protected]:xcbuddy/xcodeproj.git`.
1. Git clone the repository `[email protected]:xcode-project-manager/xcodeproj.git`.
2. Generate xcodeproj with `swift package generate-xcodeproj`.
3. Open `xcodeproj.xcodeproj`.

Expand All @@ -38,7 +38,7 @@ Add the dependency in your `Package.swift` file:
let package = Package(
name: "myproject",
dependencies: [
.package(url: "https://github.com/xcbuddy/xcodeproj.git", .upToNextMajor(from: "5.0.0")),
.package(url: "https://github.com/xcode-project-manager/xcodeproj.git", .upToNextMajor(from: "5.0.0")),
],
targets: [
.target(
Expand All @@ -62,7 +62,7 @@ One of those additions is an improvement on how references are managed.
When new objects are added to the project, you get the object reference. The reference is an instance that should be used to refer that object from any other. **The value of that reference is an implementation detail that has been abstracted away from you.**

## Documentation 📄
You can check out the documentation on the following [link](https://xcbuddy.github.io/xcodeproj/index.html). The documentation is automatically generated in every release by using [Jazzy](https://github.com/realm/jazzy) from [Realm](https://realm.io).
You can check out the documentation on the following [link](https://xcode-project-manager.github.io/xcodeproj/index.html). The documentation is automatically generated in every release by using [Jazzy](https://github.com/realm/jazzy) from [Realm](https://realm.io).

## References 📚

Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ In this documents you'll find all the necessary steps to release a new version o
2. Update the `CHANGELOG.md` adding a new entry at the top with the next version. Make sure that all the changes in the version that is about to be released are properly formatted. Commit the changes in `CHANGELOG.md`.
3. Validate the state of the project by executing `bundle exec rake ci`
4. Generate the release with `RELEASE_TYPE=minor bundle exec rake release`.
5. Create a new release on [GitHub](https://github.com/xcbuddy/xcodeproj) including the information from the last entry in the `CHANGELOG.md`.
5. Create a new release on [GitHub](https://github.com/xcode-project-manager/xcodeproj) including the information from the last entry in the `CHANGELOG.md`.
6. Rebase the `release/x.x.x` branch into `master` and push it to remote.

### Notes
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ task :deploy_to_integration do
if git.current_branch == "master" || ENV["TRAVIS_BRANCH"] == "master"
token = ENV["GITHUB_TOKEN"]
return abort("GITHUB_TOKEN environment variable is missing") unless token
git.add_remote("origin-travis", "https://#{token}@github.com/xcbuddy/xcodeproj.git")
git.add_remote("origin-travis", "https://#{token}@github.com/xcode-project-manager/xcodeproj.git")
git.push("origin-travis", "master:integration")
end
end
Expand Down
Loading

0 comments on commit 1ad8b07

Please sign in to comment.