chargehound 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a8cdd2963d9a13ce6a5acc47fc2b87e3a7bdf243
4
- data.tar.gz: 45cbe62923b0a463870ac45d8f8ed2020d0fe507
3
+ metadata.gz: cc3692e584c7dfe853a29517a10c60b74322d00e
4
+ data.tar.gz: de5c9b2889d28675fac4a7ba358704826c806c0d
5
5
  SHA512:
6
- metadata.gz: c8f66046cf127db5a9c59d023c1c98c96ec9b76937505026d4ed5e7ef4dd4a0b9a92b28654626ecf4c846d2a1fe38465101199043dd965ec94409ed3fbdc978b
7
- data.tar.gz: d950e221a03c6764ac41923f777bd16980632999dc1263e8580fa4e885e6a7b4980168b6b60ff85d9de379e801aa711ee4956d2480c44d44ea46aceffe3c1188
6
+ metadata.gz: 4d2b77fdb5d3683f7ee37b6acc1b001a5bfd9c379e30fc001f3cd6abfd13b56fa5533796192adbe5ba4d1a9e1aa09caabe509b3006c3cf749d961f9f27c9d190
7
+ data.tar.gz: 837f66cad7b39e4326e851f259423b3a21e86c663044f5602093e28d9857e71ca6893e8c7e7d500e9c60f825d976ac3bb8a0b1bd2d7d270d38e548e18f0b4611
data/Gemfile CHANGED
@@ -1,4 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in lob.gemspec
4
3
  gemspec
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
- # Chargehound ruby bindings
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
- <!-- ## Installation
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
- <!-- ## Resources
18
+ ## Resources
19
19
 
20
- [Disputes](https://www.chargehound.com/docs/?ruby#disputes) -->
20
+ [Disputes](https://www.chargehound.com/docs/api/index.html?ruby#disputes)
21
21
 
22
22
  ## Development
23
23
 
@@ -26,4 +26,5 @@ Gem::Specification.new do |spec|
26
26
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
27
27
  spec.test_files = spec.files.grep(%r{^test/})
28
28
  spec.require_paths = ['lib']
29
+ spec.extra_rdoc_files = ['README.md']
29
30
  end
@@ -1,3 +1,3 @@
1
1
  module Chargehound
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'.freeze
3
3
  end
@@ -3,14 +3,14 @@ require 'test_helper'
3
3
  get_headers = {
4
4
  'Accept' => 'application/json',
5
5
  'Authorization' => 'Basic QVBJX0tFWTo=',
6
- 'User-Agent' => 'Chargehound/v1 RubyBindings/1.0.0'
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' => 'Chargehound/v1 RubyBindings/1.0.0'
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.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