From 97e5102a485d50c349bc1d8e3ef4971bd50e4720 Mon Sep 17 00:00:00 2001 From: iMacTia Date: Fri, 8 May 2020 08:54:38 +0100 Subject: [PATCH] Moves Faraday dependency into gemspec. Set version to 1.0.0 --- Gemfile | 4 ---- faraday-http.gemspec | 1 + lib/faraday/http/version.rb | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Gemfile b/Gemfile index a990bc9..d5f0f18 100644 --- a/Gemfile +++ b/Gemfile @@ -4,10 +4,6 @@ source 'https://rubygems.org' gemspec -gem 'faraday', - git: 'https://github.com/lostisland/faraday.git', - branch: 'master' - # Required gems to run all Faraday tests gem 'multipart-parser' diff --git a/faraday-http.gemspec b/faraday-http.gemspec index 00353c7..fde7cca 100644 --- a/faraday-http.gemspec +++ b/faraday-http.gemspec @@ -24,6 +24,7 @@ Gem::Specification.new do |spec| spec.files = Dir.glob('lib/**/*') + %w[README.md LICENSE] spec.require_paths = ['lib'] + spec.add_dependency 'faraday', '~> 1.0' spec.add_dependency 'http', '~> 4.0' spec.add_development_dependency 'bundler', '~> 2.0' diff --git a/lib/faraday/http/version.rb b/lib/faraday/http/version.rb index 9169777..3a16ef1 100644 --- a/lib/faraday/http/version.rb +++ b/lib/faraday/http/version.rb @@ -2,6 +2,6 @@ module Faraday module Http - VERSION = '0.1.0' + VERSION = '1.0.0' end end