mollie-api-ruby 1.1.3 → 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e715e8bb3f17bcb8273f8de4d317f8e997509f0e
4
- data.tar.gz: ee5baaa31d4386ef9a6530b7d15f06eae22cde93
3
+ metadata.gz: 3ab9bd15a6bf961d4a38cf82fc9d66ce3c7e7b7e
4
+ data.tar.gz: e3a3b6cec31c08f365a465cd130f0fa395f82cda
5
5
  SHA512:
6
- metadata.gz: cccda5a9e67201819b9024e9764d254209b3d3e6647255b6683ecaea60484b0c52e3e56a3e0a588f29abfa8b1019bda486ceff136a6b2aef742e650f1c3a84ea
7
- data.tar.gz: be187c4a79959128e3e41881c4fd67960ae27103224c4f1b493afb35c5a926e736ab07a00ee5ca6ae156b9b6b6b520dfd3b4734b3c71ba2e0091749f144f4d81
6
+ metadata.gz: 84be0808645c95383e8c174e09341981bdf83358feacb109bbfe25246d26fd37729bae8238aa271e4df8bc049b2e3f9e01cd64e5eb139f382b7b52b388a7eca5
7
+ data.tar.gz: 68aa434859c9db37762c6c3959279c00a514eff280f747cd2eca7621e63a389ab13f0d5266f38ba392499fb94cbf8585d6e8518f79cbde2c34d8dce81986c241
@@ -2,7 +2,7 @@
2
2
 
3
3
  # Mollie API client for Ruby #
4
4
 
5
- Accepting [iDEAL](https://www.mollie.com/nl/ideal), [Mister Cash](https://www.mollie.com/nl/mistercash), [Creditcard](https://www.mollie.com/nl/creditcard), [PayPal](https://www.mollie.com/nl/paypal), [Bank transfer](https://www.mollie.com/nl/banktransfer), [Bitcoin](https://www.mollie.com/nl/bitcoin), [SOFORT Banking](https://www.mollie.com/nl/sofort) and [paysafecard](https://www.mollie.com/nl/paysafecard) online payments without fixed monthly costs or any punishing registration procedures. Just use the Mollie API to receive payments directly on your website.
5
+ Accepting [iDEAL](https://www.mollie.com/ideal/), [Bancontact/Mister Cash](https://www.mollie.com/mistercash/), [SOFORT Banking](https://www.mollie.com/sofort/), [Creditcard](https://www.mollie.com/creditcard/), [SEPA Bank transfer](https://www.mollie.com/overboeking/), [Bitcoin](https://www.mollie.com/bitcoin/), [PayPal](https://www.mollie.com/paypal/), [Belfius Direct Net](https://www.mollie.com/belfiusdirectnet/) and [paysafecard](https://www.mollie.com/paysafecard/) online payments without fixed monthly costs or any punishing registration procedures. Just use the Mollie API to receive payments directly on your website or easily refund transactions to your customers.
6
6
 
7
7
  ## Requirements ##
8
8
  To use the Mollie API client, the following things are required:
@@ -87,20 +87,24 @@ The examples require [Sinatra](http://rubygems.org/gems/sinatra) so you will nee
87
87
  $ ruby examples/app.rb
88
88
  ```
89
89
 
90
+ ## API documentation ##
91
+ If you wish to learn more about our API, please visit the [Mollie Developer Portal](https://www.mollie.com/developer/). API Documentation is available in both Dutch and English.
92
+
90
93
  ## License ##
91
94
  [BSD (Berkeley Software Distribution) License](http://www.opensource.org/licenses/bsd-license.php).
92
- Copyright (c) 2014, Mollie B.V.
95
+ Copyright (c) 2014-2015, Mollie B.V.
93
96
 
94
97
  ## Support ##
95
- Contact: [www.mollie.nl](http://www.mollie.nl) — info@mollie.nl — +31 20-612 88 55
96
-
97
- + [More information about iDEAL via Mollie](https://www.mollie.com/nl/ideal)
98
- + [More information about Creditcard via Mollie](https://www.mollie.com/nl/creditcard)
99
- + [More information about Mister Cash via Mollie](https://www.mollie.com/nl/mistercash)
100
- + [More information about Bank transfer via Mollie](https://www.mollie.com/nl/overboeking)
101
- + [More information about PayPal via Mollie](https://www.mollie.com/nl/paypal)
102
- + [More information about Bitcoin via Mollie](https://www.mollie.com/nl/bitcoin)
103
- + [More information about SOFORT Banking via Mollie](https://www.mollie.com/nl/sofort)
104
- + [More information about paysafecard via Mollie](https://www.mollie.com/nl/paysafecard)
105
-
106
- ![Powered By Mollie](http://www.mollie.nl/images/badge-betaling-medium.png)
98
+ Contact: [www.mollie.com](https://www.mollie.com) — info@mollie.com — +31 20-612 88 55
99
+
100
+ + [More information about iDEAL via Mollie](https://www.mollie.com/ideal/)
101
+ + [More information about credit card via Mollie](https://www.mollie.com/creditcard/)
102
+ + [More information about Bancontact/Mister Cash via Mollie](https://www.mollie.com/mistercash/)
103
+ + [More information about SOFORT Banking via Mollie](https://www.mollie.com/sofort/)
104
+ + [More information about SEPA Bank transfer via Mollie](https://www.mollie.com/overboeking/)
105
+ + [More information about Bitcoin via Mollie](https://www.mollie.com/bitcoin/)
106
+ + [More information about PayPal via Mollie](https://www.mollie.com/paypal/)
107
+ + [More information about Belfius Direct Net via Mollie](https://www.mollie.com/belfiusdirectnet/)
108
+ + [More information about paysafecard via Mollie](https://www.mollie.com/paysafecard/)
109
+
110
+ ![Powered By Mollie](https://www.mollie.com/images/badge-betaling-medium.png)
@@ -17,7 +17,7 @@ require "rest_client"
17
17
  module Mollie
18
18
  module API
19
19
  class Client
20
- CLIENT_VERSION = "1.1.3"
20
+ CLIENT_VERSION = "1.1.4"
21
21
  API_ENDPOINT = "https://api.mollie.nl"
22
22
  API_VERSION = "v1"
23
23
 
@@ -10,6 +10,7 @@ module Mollie
10
10
  PAYSAFECARD = "paysafecard"
11
11
  BITCOIN = "bitcoin"
12
12
  SOFORT = "sofort"
13
+ BELFIUS = "belfius"
13
14
 
14
15
  attr_accessor :id,
15
16
  :description,
@@ -11,9 +11,9 @@ spec = Gem::Specification.new do |s|
11
11
  s.email = ['info@mollie.nl']
12
12
  s.homepage = 'https://github.com/mollie/mollie-api-ruby'
13
13
  s.license = 'BSD'
14
- s.required_ruby_version = '>= 1.9.2'
14
+ s.required_ruby_version = '>= 1.9.3'
15
15
 
16
- s.add_dependency('rest-client', '~> 1.6')
16
+ s.add_dependency('rest-client', '~> 1.8')
17
17
  s.add_dependency('json', '~> 1.8')
18
18
 
19
19
  s.files = `git ls-files`.split("\n")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mollie-api-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rick Wong
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-29 00:00:00.000000000 Z
11
+ date: 2015-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.6'
19
+ version: '1.8'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.6'
26
+ version: '1.8'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: json
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -86,7 +86,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - ">="
88
88
  - !ruby/object:Gem::Version
89
- version: 1.9.2
89
+ version: 1.9.3
90
90
  required_rubygems_version: !ruby/object:Gem::Requirement
91
91
  requirements:
92
92
  - - ">="