chargehound 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +0 -1
- data/README.md +6 -6
- data/chargehound.gemspec +1 -0
- data/lib/chargehound/version.rb +1 -1
- data/test/disputes_test.rb +2 -2
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc3692e584c7dfe853a29517a10c60b74322d00e
|
4
|
+
data.tar.gz: de5c9b2889d28675fac4a7ba358704826c806c0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d2b77fdb5d3683f7ee37b6acc1b001a5bfd9c379e30fc001f3cd6abfd13b56fa5533796192adbe5ba4d1a9e1aa09caabe509b3006c3cf749d961f9f27c9d190
|
7
|
+
data.tar.gz: 837f66cad7b39e4326e851f259423b3a21e86c663044f5602093e28d9857e71ca6893e8c7e7d500e9c60f825d976ac3bb8a0b1bd2d7d270d38e548e18f0b4611
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
# Chargehound
|
1
|
+
# Chargehound Ruby bindings
|
2
2
|
|
3
|
-
[![Build Status](https://travis-ci.org/chargehound/chargehound-ruby.svg?branch=master)](https://travis-ci.org/chargehound/chargehound-ruby)
|
3
|
+
[![Build Status](https://travis-ci.org/chargehound/chargehound-ruby.svg?branch=master)](https://travis-ci.org/chargehound/chargehound-ruby) [![Gem Version](https://badge.fury.io/rb/chargehound.svg)](https://badge.fury.io/rb/chargehound)
|
4
4
|
|
5
|
-
|
5
|
+
## Installation
|
6
6
|
|
7
|
-
`gem install chargehound`
|
7
|
+
`gem install chargehound`
|
8
8
|
|
9
9
|
## Usage
|
10
10
|
|
@@ -15,9 +15,9 @@ require 'chargehound'
|
|
15
15
|
Chargehound.api_key = '{ YOUR_API_KEY }'
|
16
16
|
```
|
17
17
|
|
18
|
-
|
18
|
+
## Resources
|
19
19
|
|
20
|
-
[Disputes](https://www.chargehound.com/docs
|
20
|
+
[Disputes](https://www.chargehound.com/docs/api/index.html?ruby#disputes)
|
21
21
|
|
22
22
|
## Development
|
23
23
|
|
data/chargehound.gemspec
CHANGED
data/lib/chargehound/version.rb
CHANGED
data/test/disputes_test.rb
CHANGED
@@ -3,14 +3,14 @@ require 'test_helper'
|
|
3
3
|
get_headers = {
|
4
4
|
'Accept' => 'application/json',
|
5
5
|
'Authorization' => 'Basic QVBJX0tFWTo=',
|
6
|
-
'User-Agent' =>
|
6
|
+
'User-Agent' => "Chargehound/v1 RubyBindings/#{Chargehound::VERSION}"
|
7
7
|
}
|
8
8
|
|
9
9
|
post_headers = {
|
10
10
|
'Accept' => 'application/json',
|
11
11
|
'Authorization' => 'Basic QVBJX0tFWTo=',
|
12
12
|
'Content-Type' => 'application/json',
|
13
|
-
'User-Agent' =>
|
13
|
+
'User-Agent' => "Chargehound/v1 RubyBindings/#{Chargehound::VERSION}"
|
14
14
|
}
|
15
15
|
|
16
16
|
dispute_update = {
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chargehound
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chargehound
|
@@ -99,7 +99,8 @@ email:
|
|
99
99
|
- support@chargehound.com
|
100
100
|
executables: []
|
101
101
|
extensions: []
|
102
|
-
extra_rdoc_files:
|
102
|
+
extra_rdoc_files:
|
103
|
+
- README.md
|
103
104
|
files:
|
104
105
|
- .gitignore
|
105
106
|
- .rubocop.yml
|