Sha256: 6594d0dac51c9d65b7a509c3ff4c42ee258816642f2eb9831b9ed06adc2e3c43

Contents?: true

Size: 1.06 KB

Versions: 18

Compression:

Stored size: 1.06 KB

Contents

# Aem::Deploy

Simple Ruby wrapper for deploying to AEM

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'aem-deploy'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install aem-deploy

## Usage

Intialize the object (crx host, user, and pass are required )

    $ client = Aem::Deploy.new({host: '192.168.0.1', user: 'admin', pass: 'admin'})

Easy Install to CRX (uploads and installs). 

    $ client.easy_install('/Users/meaton/Desktop/centre.zip')

Upload a package to CRX.

    $ client.upload_package('/Users/meaton/Desktop/centre.zip')

Install a package already on CRX.

    $ client.install_package('/Users/meaton/Desktop/centre.zip')

Recompile JSP's

    $ client.recompile_jsps


## Development

This project is brand new. I plan to incorporate many other methods here.
## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/docker_compose_ruby.


## License

The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
aem-deploy-0.1.26 README.md
aem-deploy-0.1.25 README.md
aem-deploy-0.1.24 README.md
aem-deploy-0.1.23 README.md
aem-deploy-0.1.22 README.md
aem-deploy-0.1.21 README.md
aem-deploy-0.1.20 README.md
aem-deploy-0.1.19 README.md
aem-deploy-0.1.18 README.md
aem-deploy-0.1.17 README.md
aem-deploy-0.1.16 README.md
aem-deploy-0.1.15 README.md
aem-deploy-0.1.14 README.md
aem-deploy-0.1.13 README.md
aem-deploy-0.1.12 README.md
aem-deploy-0.1.11 README.md
aem-deploy-0.1.9 README.md
aem-deploy-0.1.8 README.md