httparty 0.15.0 → 0.15.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of httparty might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/History.md +6 -0
- data/httparty.gemspec +5 -2
- data/lib/httparty/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: 8b7aae8b17e2c9fa5ca630c604ed80eff6fa7512
|
4
|
+
data.tar.gz: 0df863c0629bc72414e4cbad7029059b12d4a25d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52c0cc5d3a7770bbfd050077e9ad90fbdd57b10279204bcf776d2102bc0ad80712de4a2e9b0666ea992ebcf2deca0631fea9ca6335573cba0043f41ba1028ff4
|
7
|
+
data.tar.gz: 9df9c16ff1b9054b5b56c71c371319196fb7d72ebb658cda338eaa1f189863ee3f437dbdee725d6c22da97b568706e0a791ace9855c4b6a904b338ed776669a5
|
data/History.md
CHANGED
data/httparty.gemspec
CHANGED
@@ -20,8 +20,11 @@ Gem::Specification.new do |s|
|
|
20
20
|
# If this line is removed, all hard partying will cease.
|
21
21
|
s.post_install_message = "When you HTTParty, you must party hard!"
|
22
22
|
|
23
|
-
|
24
|
-
|
23
|
+
all_files = `git ls-files`.split("\n")
|
24
|
+
test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
25
|
+
|
26
|
+
s.files = all_files - test_files
|
27
|
+
s.test_files = test_files
|
25
28
|
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
26
29
|
s.require_paths = ["lib"]
|
27
30
|
end
|
data/lib/httparty/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: httparty
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.15.
|
4
|
+
version: 0.15.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Nunemaker
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-05-
|
12
|
+
date: 2017-05-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: multi_xml
|