Sha256: 8b349047f7a07dcd16c31c53111f1d6373947870c8e6a4bd68d1db4892fe6dfc

Contents?: true

Size: 1.13 KB

Versions: 2

Compression:

Stored size: 1.13 KB

Contents

# Git URL Rewriter

A simple gem that will allow the rewriting of Cocoapods git dependency URLs just before they are downloaded. This can be useful if certain network access is blocked.

## Installation

Add this line to your application's Gemfile:

`gem 'cocoapods-git_url_rewriter', '1.0.0'`

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install cocoapods-git_url_rewriter

## Usage

Intended usage of this Cocoapods plugin is as follows. It it designed to be used as an inline declaration with your projects Podfile.

```ruby
plugin 'cocoapods-git_url_rewriter', {
  "string literal to match against" => "replacement string literal"
}
```

A more concrete example would be as follows

```ruby
plugin 'cocoapods-git_url_rewriter', {
    'git@git.my-cool-company.com:' => 'https://sekrittoken@my-cool-company.com/'
}
```

## Contributing

1. Fork it ( https://github.com/brianmichel/cocoapods-git_url_rewriter/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cocoapods-git_url_rewriter-1.0.1 README.md
cocoapods-git_url_rewriter-1.0.0 README.md