Skip to content

matsubo/spike-ruby

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spike-ruby Gem Version build status

SPIKE API Client for Ruby.

Installation

Add this line to your application's Gemfile:

gem 'spike-ruby'

And then execute:

$ bundle

Or install it yourself as:

$ gem install spike-ruby

Usage

Example: Create charge

require 'spike'

spike = Spike.new(spike_secret_api_key)

token_params = {
  'card[number]' => '4444333322221111',
  'card[exp_month]' => '3',
  'card[exp_year]' => '2017',
  'card[cvc]' => '111',
  'card[name]' => 'TARO SPIKE',
  'currency' => 'JPY',
  'email' => '[email protected]'
}

token = spike.token.create(token_params)

request_params = {
  mount: 1000,
  currency: "JPY",
  card: token.id
}

products = [{
  title: "item title",
  description: "item description",
  price: 1000,
  stock: 10,
  language: "JA",
  count: 1,
  currency: "JPY",
  id: "00001"
}]

spike.charge.create(request_params, products)

Contributing

  1. Fork it ( https://github.com/spice-life/spike-ruby/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Pass tests (bundle exec rspec)
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create a new Pull Request