hopo-ruby 0.0.2 → 0.0.3
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 +4 -4
- data/README.md +2 -1
- data/hopo-ruby.gemspec +1 -1
- data/lib/hopo.rb +11 -0
- data/lib/hopo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b34282ca742a9099545aca5a1a6b78fc27e2f4ae
|
|
4
|
+
data.tar.gz: 481f7a504f2c52b2441a8cff252afad40a502387
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a60da54656a03fe9f2b971672129820b532d17a5f0f4059b1d67c1ec499645fa4f57a523dcf4d34c2fe656fdd07910694cbd4e14961bf029acb6b0bc045fbe8
|
|
7
|
+
data.tar.gz: b6944e1d8bf643cad2ea7284fafa56a81961a7607db00320ae431de716ff04c70d8dbe4e700dda40ab5cd602ec0602ecb9c8d5b75fe8ab4464f077ce44c84145
|
data/README.md
CHANGED
data/hopo-ruby.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["mike@honestpolicy.com"]
|
|
11
11
|
spec.summary = %q{A simple library for communicating with the Honest Policy API}
|
|
12
12
|
spec.description = %q{Easily connect to multiple Honest Policy APIs including the Rater, Leads, Vehicles and Carrier Quality}
|
|
13
|
-
spec.homepage = ""
|
|
13
|
+
spec.homepage = "https://github.com/mikereinmiller/hopo-ruby"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
data/lib/hopo.rb
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
#####################################################
|
|
2
|
+
#
|
|
3
|
+
# TODO:
|
|
4
|
+
# => RSpec Test
|
|
5
|
+
# => Better Documentation both GEM & API
|
|
6
|
+
# => Add Leads API, Vehicle API, Quality API
|
|
7
|
+
# => Clean Up Base Code
|
|
8
|
+
#
|
|
9
|
+
#####################################################
|
|
10
|
+
|
|
11
|
+
|
|
1
12
|
# Hopo Ruby libs
|
|
2
13
|
require 'net/http'
|
|
3
14
|
require 'uri'
|
data/lib/hopo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hopo-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Reinmiller
|
|
@@ -78,7 +78,7 @@ files:
|
|
|
78
78
|
- lib/hopo/rater/auto_rater.rb
|
|
79
79
|
- lib/hopo/rater/home_rater.rb
|
|
80
80
|
- lib/hopo/version.rb
|
|
81
|
-
homepage:
|
|
81
|
+
homepage: https://github.com/mikereinmiller/hopo-ruby
|
|
82
82
|
licenses:
|
|
83
83
|
- MIT
|
|
84
84
|
metadata: {}
|