Sha256: 91ff03a9a11fc6240ef5deabfaf7800ee7ac8861a63bb9120007192d213045b5

Contents?: true

Size: 1005 Bytes

Versions: 3

Compression:

Stored size: 1005 Bytes

Contents

# Cas
Short description and motivation.

## Usage

How to use my plugin.

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'cas'
```

### Setup

**Engine:** Cas is mounted in your main Rails application. Say your application
is called MyBlog, you make can make it accessible at `myblog.com/admin`
by setting the following in the `config/routes.rb` file in your main
application:

```ruby
Rails.application.routes.draw do
   mount Cas::Engine, at: "/admin"

   # ... other routes
end
```

**S3:** you need S3 credentials to use Cas (for file uploads). Set the
following ENV vars (e.g paste in your `~/.bash_profile` or use the `dotenv`
gem in your main Rails application):

    export S3_ACCESS_KEY_ID="value"
    export S3_SECRET_ACCESS_KEY="value"
    export S3_REGION="value"
    export S3_BUCKET="value"

## Contributing
Contribution directions go here.

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cas-cms-0.1.3 README.md
cas-cms-0.1.2 README.md
cas-cms-0.1.1 README.md