testcloud-billing-ruby 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f25d46c63d454a9546bb872d34c6e484ed72b4c6
4
+ data.tar.gz: 9e0bdc04d2159f6a1ce06e95620334baf5e30731
5
+ SHA512:
6
+ metadata.gz: d526cb4f9fb219653069844e00e0fbe4e7b687a029415c476ffa7de27da2c685bc65ef05589d10829f94006d7fb47400e8cc4b193c402adcba0d75c12375dd77
7
+ data.tar.gz: b1c732b0722b311eb23c89540c06e5bb0dc60162182d016e71db953da168b9e86650b71819e961978094c9172c6cd3865358e76851756ec7078842e917450e28
@@ -0,0 +1,16 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
15
+ .ruby-version
16
+ .ruby-gemset
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in testcloud-billing-ruby.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Jan Schwenzien
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,87 @@
1
+ # Testcloud::Billing::Ruby
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'testcloud-billing-ruby'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install testcloud-billing-ruby
20
+
21
+ ## Usage
22
+
23
+ Configure the client (e.g. in an initializer):
24
+
25
+ Testcloud::Billing.setup url: 'http(s)://api.example.com', api_key: 'your_api_key'
26
+
27
+
28
+ Create a Customer (in this case with SEPA direct debit payment):
29
+
30
+ customer = Testcloud::Billing::Customer.create(
31
+ company: "testCloud.de GmbH", # this or 'name' is required
32
+ address_line_one: "Boxhagenerstr. 76/78",
33
+ zip: "10245",
34
+ city: "Berlin",
35
+ country: "DE",
36
+ email: "billing@testcloud.io",
37
+ vatid: "DE279558871", # required if in EU but outside DE
38
+ locale: "en",
39
+ timezone: "Berlin",
40
+ payment_method: "sepa_debit",
41
+ sepa_data_attributes: {
42
+ iban: "DEAVALIDIBAN",
43
+ bic: "AVALIDBIC"
44
+ }
45
+ )
46
+
47
+ For credit card customers use this:
48
+
49
+ ...
50
+ timezone: "Berlin",
51
+ payment_method: "credit_card",
52
+ credit_card_data_attributes: {
53
+ stripe_token: "THESTRIPETOKEN", # from Stripe.js
54
+ last4: "4242",
55
+ brand: "visa",
56
+ exp_month: "05",
57
+ exp_year: "2020",
58
+ name: "Name on card", # optional
59
+ country: "DE" # optional
60
+ }
61
+
62
+
63
+ To bill a customer:
64
+
65
+ bill = Testcloud::Billing::Bill.create(
66
+ customer_id: customer.id,
67
+ currency: 'EUR',
68
+ month: 5,
69
+ year: 2014,
70
+ bill_items_attributes: [
71
+ {
72
+ title: 'A month of service',
73
+ price_for_one: 99.25,
74
+ quantity: 1,
75
+ description: '' # optional
76
+ }
77
+ ]
78
+ )
79
+
80
+
81
+ ## Contributing
82
+
83
+ 1. Fork it ( https://github.com/[my-github-username]/testcloud-billing-ruby/fork )
84
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
85
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
86
+ 4. Push to the branch (`git push origin my-new-feature`)
87
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,24 @@
1
+ require 'her'
2
+
3
+ module Testcloud
4
+ module Billing
5
+
6
+ HER = Her::API.new
7
+ DEFAULT_URL = 'https://bapi.testcloud.io'
8
+
9
+ def self.setup(options={})
10
+ options[:url] ||= DEFAULT_URL
11
+ HER.setup url: options[:url] do |c|
12
+ # Authentication
13
+ c.use Testcloud::Billing::Authentication, api_key: options[:api_key]
14
+ # Request
15
+ c.use Faraday::Request::UrlEncoded
16
+ # Response
17
+ c.use Her::Middleware::DefaultParseJSON
18
+ # Adapter
19
+ c.use Faraday::Adapter::NetHttp
20
+ end
21
+ end
22
+
23
+ end
24
+ end
@@ -0,0 +1,17 @@
1
+ module Testcloud
2
+ module Billing
3
+ class Authentication < Faraday::Middleware
4
+
5
+ def initialize(app, options={})
6
+ @app = app
7
+ @options = options
8
+ end
9
+
10
+ def call(env)
11
+ env[:request_headers]["X-Testcloud-Token"] = @options[:api_key]
12
+ @app.call(env)
13
+ end
14
+
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,12 @@
1
+ module Testcloud
2
+ module Billing
3
+ class Bill
4
+
5
+ include Her::Model
6
+ use_api Testcloud::Billing::HER
7
+
8
+ collection_path "/customers/:customer_id/bills"
9
+
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ module Testcloud
2
+ module Billing
3
+ class Customer
4
+
5
+ include Her::Model
6
+ use_api Testcloud::Billing::HER
7
+
8
+ has_many :bills
9
+
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,8 @@
1
+
2
+ require "testcloud/billing/ruby/version"
3
+
4
+ require "testcloud/billing"
5
+ require "testcloud/billing/authentication"
6
+
7
+ require "testcloud/billing/customer"
8
+ require "testcloud/billing/bill"
@@ -0,0 +1,7 @@
1
+ module Testcloud
2
+ module Billing
3
+ module Ruby
4
+ VERSION = "0.0.1"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'testcloud/billing/ruby/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "testcloud-billing-ruby"
8
+ spec.version = Testcloud::Billing::Ruby::VERSION
9
+ spec.authors = ["Jan Schwenzien"]
10
+ spec.email = ["jan.schwenzien@testcloud.io"]
11
+ spec.summary = %q{Ruby client for the testCloud billing app.}
12
+ spec.description = %q{Ruby client for the testCloud billing app built on Her.}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+
24
+ spec.add_runtime_dependency "her", "~> 0.7"
25
+ end
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: testcloud-billing-ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jan Schwenzien
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-09-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: her
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.7'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.7'
55
+ description: Ruby client for the testCloud billing app built on Her.
56
+ email:
57
+ - jan.schwenzien@testcloud.io
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - Gemfile
64
+ - LICENSE.txt
65
+ - README.md
66
+ - Rakefile
67
+ - lib/testcloud/billing.rb
68
+ - lib/testcloud/billing/authentication.rb
69
+ - lib/testcloud/billing/bill.rb
70
+ - lib/testcloud/billing/customer.rb
71
+ - lib/testcloud/billing/ruby.rb
72
+ - lib/testcloud/billing/ruby/version.rb
73
+ - testcloud-billing-ruby.gemspec
74
+ homepage: ''
75
+ licenses:
76
+ - MIT
77
+ metadata: {}
78
+ post_install_message:
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ requirements: []
93
+ rubyforge_project:
94
+ rubygems_version: 2.2.2
95
+ signing_key:
96
+ specification_version: 4
97
+ summary: Ruby client for the testCloud billing app.
98
+ test_files: []