httparty 0.15.0 → 0.15.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 623e3c0f072b6dbd7ac990ec0eed857fb6639ea1
4
- data.tar.gz: 19d364f6fe90c6ab731df0900e22eab28ae8792f
3
+ metadata.gz: 8b7aae8b17e2c9fa5ca630c604ed80eff6fa7512
4
+ data.tar.gz: 0df863c0629bc72414e4cbad7029059b12d4a25d
5
5
  SHA512:
6
- metadata.gz: 900978930b87670ca410e9ecc634dc1846e47b3d1da5abf4f599d598e70ea4d640b0aa03ed6cbfb66f88109d18b8f84da845720d124b0e944ad8ec37509004ec
7
- data.tar.gz: 5f7795609a87edf4b28f1b2a9db1b37d9d2be1a75d228e6e6545b9520b3225bbce00e27a0d8a1f0c558edd4f7daf8feb40cc7b6851ca17cccb8065b0589141c9
6
+ metadata.gz: 52c0cc5d3a7770bbfd050077e9ad90fbdd57b10279204bcf776d2102bc0ad80712de4a2e9b0666ea992ebcf2deca0631fea9ca6335573cba0043f41ba1028ff4
7
+ data.tar.gz: 9df9c16ff1b9054b5b56c71c371319196fb7d72ebb658cda338eaa1f189863ee3f437dbdee725d6c22da97b568706e0a791ace9855c4b6a904b338ed776669a5
data/History.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 0.15.1
2
+
3
+ Fixed
4
+
5
+ * Stop including test files in gem. Fixes installation issues on windows due to symlink in spec dir.
6
+
1
7
  ## 0.15.0
2
8
 
3
9
  Breaking Changes
@@ -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
- s.files = `git ls-files`.split("\n")
24
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
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
@@ -1,3 +1,3 @@
1
1
  module HTTParty
2
- VERSION = "0.15.0"
2
+ VERSION = "0.15.1"
3
3
  end
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.0
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-11 00:00:00.000000000 Z
12
+ date: 2017-05-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: multi_xml