From 76a3062da50be2cccad99251280d2cc9217d216e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Justin=20L=C3=A9ger?= <juslleg@gmail.com>
Date: Wed, 31 Jan 2018 17:08:14 -0500
Subject: [PATCH] added httparty gemspec

---
 Gemfile.lock    | 6 +++++-
 bin/quotify     | 1 -
 quotify.gemspec | 1 +
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/Gemfile.lock b/Gemfile.lock
index 44f29ce..1d2056e 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,7 +1,8 @@
 PATH
   remote: .
   specs:
-    quotify (0.2.0)
+    quotify (0.3.0)
+      httparty
       json
 
 GEM
@@ -12,11 +13,14 @@ GEM
       simplecov
       url
     docile (1.1.5)
+    httparty (0.15.6)
+      multi_xml (>= 0.5.2)
     json (2.1.0)
     metaclass (0.0.4)
     minitest (5.11.3)
     mocha (1.3.0)
       metaclass (~> 0.0.1)
+    multi_xml (0.6.0)
     rake (12.3.0)
     simplecov (0.15.1)
       docile (~> 1.1.0)
diff --git a/bin/quotify b/bin/quotify
index 7da9222..da02eb5 100755
--- a/bin/quotify
+++ b/bin/quotify
@@ -3,7 +3,6 @@
 require 'quotify'
 require 'HTTParty'
 require 'yaml'
-require 'pry'
 
 if ARGV[0] == 'update' || ARGV[0] == 'u'
   puts "-------------------------------------\n"\
diff --git a/quotify.gemspec b/quotify.gemspec
index 8cb889c..8d0eb3d 100644
--- a/quotify.gemspec
+++ b/quotify.gemspec
@@ -17,6 +17,7 @@ Gem::Specification.new do |s|
   }
 
   s.add_dependency 'json'
+  s.add_dependency 'httparty'
   s.add_development_dependency 'rake'
   s.add_development_dependency 'mocha'
   s.add_development_dependency 'minitest'