Sha256: 9bcefa0b3420a2e7ef40b4125cbaf6f14081623969bc0ed10e1a325c30f0e692

Contents?: true

Size: 1.25 KB

Versions: 1

Compression:

Stored size: 1.25 KB

Contents

# OmniAuth::StageBloc

OmniAuth strategy for StageBloc.

<!-- trying to be funny, sort of -->
[![Code Climate](https://codeclimate.com/github/TheCodeDeli/omniauth-stagebloc/badges/gpa.svg)](https://codeclimate.com/github/TheCodeDeli/omniauth-stagebloc)

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'omniauth-stagebloc'
```

And then execute:

    $ bundle

## Usage

### Devise

```ruby
config.omniauth :stagebloc, Rails.application.secrets.stageblock_client_id, Rails.application.secrets.stageblock_secret,
                :parse => :stagebloc_parser
```

### OmniAuth (Rails)

```ruby
Rails.application.config.middleware.use OmniAuth::Builder do
  provider :stagebloc, ENV['STAGEBLOC_CLIENT_ID'], ENV['STAGEBLOC_SECRET'],
           :parse => :stagebloc_parser
end
```

### OmniAuth (Rack)

```ruby
use OmniAuth::Builder do
  provider :stagebloc, ENV['STAGEBLOC_CLIENT_ID'], ENV['STAGEBLOC_SECRET'],
           :parse => :stagebloc_parser
end
```

## Contributing

1. Fork it ( https://github.com/TheCodeDeli/omniauth-stagebloc/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

1 entries across 1 versions & 1 rubygems

Version Path
omniauth-stagebloc-0.1.0 README.md