http_utilities 1.2.2 → 1.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 65a0ad7b41cc340c3e575d297ffbdafc2ad6a2e6
4
- data.tar.gz: d18e6926186063339987eadb903526f8d68e7ce0
3
+ metadata.gz: 774cb888defe73c5ebb8902a8915aa5350970b1e
4
+ data.tar.gz: 8387ca5e76a00a84a506ed0662cc0ccb8c2e73d3
5
5
  SHA512:
6
- metadata.gz: 82eb90372b72daf4a5499b69269aaae31626a6e755e78884253fab749de3e7e006fb9d5caf8ebef46835574523766f60ee55f9aa6ce074901530abf62ae45595
7
- data.tar.gz: 7014913615f31a96d257f9d261617f2a35eb94ac70ff4ed0ef0040443d0432f4548333bb8b6392a22d5860dde2d64abea8217ffed3f63c3c6453d2fe5f118393
6
+ metadata.gz: 0e4d363c20736b462836155ea717641a34b38d83def074d8455d619335932c8f644f6ca8fceb22544e8a450b1269a7aba3168236bcbf08da73f9f61f67e30f91
7
+ data.tar.gz: 0aff8e5f4a0a0331bb549cb131cb3bc2d09c948a6af5ce6b7e7ff95be14ad52031f776a7baaca93f601df13ccd11bd2cc3ea1c14b2bb03384976acbcd51a8362
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.5
1
+ 1.2.3
@@ -3,7 +3,7 @@ Gem::Specification.new do |s|
3
3
  s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5") if s.respond_to? :required_rubygems_version=
4
4
 
5
5
  s.name = "http_utilities"
6
- s.version = "1.2.2"
6
+ s.version = "1.2.3"
7
7
 
8
8
  s.authors = ["Sebastian Johnsson"]
9
9
  s.description = "Wrapper for Faraday with additional functionality"
@@ -1,6 +1,6 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module HttpUtilities
3
- VERSION = "1.2.2"
3
+ VERSION = "1.2.3"
4
4
 
5
5
  require File.join(File.dirname(__FILE__), 'http_utilities/railtie') if defined?(Rails)
6
6
 
@@ -40,9 +40,9 @@ module HttpUtilities
40
40
  when :synchronous
41
41
  check_proxy(proxy)
42
42
  when :resque
43
- Resque.enqueue(HttpUtilities::Jobs::Resque::Proxies::CheckProxyJob, proxy.id)
43
+ Resque.enqueue(HttpUtilities::Jobs::Resque::Proxies::CheckProxyJob, proxy.id.to_s)
44
44
  when :sidekiq
45
- HttpUtilities::Jobs::Sidekiq::Proxies::CheckProxyJob.perform_async(proxy.id)
45
+ HttpUtilities::Jobs::Sidekiq::Proxies::CheckProxyJob.perform_async(proxy.id.to_s)
46
46
  end
47
47
  end
48
48
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http_utilities
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian Johnsson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-29 00:00:00.000000000 Z
11
+ date: 2016-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri