Sha256: 31f24ca3089180f0c7d299a6e4583b49070e6024f9d05ba6627603aa69e49802

Contents?: true

Size: 1.77 KB

Versions: 7

Compression:

Stored size: 1.77 KB

Contents

## The stripe_controller is a work in progress and things will be changing very rapidly. BEWARE!

# CatarseStripe

Catarse Stripe integration with [Catarse](http://github.com/danielweinmann/catarse) crowdfunding platform

## Installation

Add this lines to your Catarse application's Gemfile:

    gem 'catarse_stripe'

And then execute:

    $ bundle

## Usage

Configure the routes for your Catarse application. Add the following lines in the routes file (config/routes.rb):

    mount CatarseStripe::Engine => "/", :as => "catarse_stripe"

### Configurations

Create this configurations into Catarse database:

    stripe_api_key, stripe_secret_key and stripe_test (boolean)

In Rails console, run this:

    Configuration.create!(name: "stripe_api_key", value: "API_KEY")
    Configuration.create!(name: "stripe_secret_key", value: "SECRET_KEY")
    Configuration.create!(name: "stripe_test", value: "TRUE/FALSE")

    NOTE: Be sure to add the correct keys from the API section of your Stripe account settings. Stripe_Test: TRUE = Using Stripe Test Server/Sandbox Mode / FALSE = Using Stripe live server.  

## Development environment setup

Clone the repository:

    $ git clone git://github.com/lvxn0va/catarse_stripe.git

Add the catarse code into test/dummy:

    $ git submodule init
    $ git submodule update

And then execute:

    $ bundle

## Troubleshooting in development environment

Remove the admin folder from test/dummy application to prevent a weird active admin bug:

    $ rm -rf test/dummy/app/admin

## Contributing

1. Fork it
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 new Pull Request


This project rocks and uses MIT-LICENSE.

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
catarse_stripe-0.0.8 README.md
catarse_stripe-0.0.7 README.md
catarse_stripe-0.0.6 README.md
catarse_stripe-0.0.5 README.md
catarse_stripe-0.0.3 README.md
catarse_stripe-0.0.2 README.md
catarse_stripe-0.0.1 README.md