ugc 0.9.5 → 0.9.6

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: de5f3e9cfb59b53bbec64d408176b97b4e0f62ce
4
- data.tar.gz: 68ee0cc98343e6ff79e60bfa12fa63bb7ed3d8ba
3
+ metadata.gz: 2de6f9a810c981581443996bf47e3ac53cb8036e
4
+ data.tar.gz: 8450dc5bcc2b7961d18e73c9714954453fe7f075
5
5
  SHA512:
6
- metadata.gz: 3c0d7f44181589679feef0ad6541a70610ab69c90aa30b1a3d7ea8c781989fdbb7c8d8d55e3c8c14df4737af6e50e68720b8a824e5422f07e4c2ac4602c76157
7
- data.tar.gz: cdf9ec47d8d167a06e114565701e1557a8f0ddd504576670c63c1e157d83ad870883c4c485f1223046365bf4baf70c807c0c9bd30957e4b7016cf701485b4a1f
6
+ metadata.gz: 765320f2b9967f9bdbb73c2cfc8cca24ec4815e37606c47b8d345601547b572b370629376f223f87c5c23dbb1f4aa7206673883900c27ea2c6c6a6b2701621c2
7
+ data.tar.gz: cc643a643c7caa9e8905a77ff059035ef867e2723cb0d843810a9c2b5791e50c2600fc2a9208e0ef387a9a7c7de4d416a6853ee8ad107a578aab41d86948bada
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ugc (0.9.5)
4
+ ugc (0.9.6)
5
5
  command_line_reporter
6
6
  gli
7
7
  highline
data/README.md CHANGED
@@ -178,6 +178,10 @@ If you specify column names in your query, you will be unable to reference the r
178
178
 
179
179
  ## Release notes
180
180
 
181
+ ### 0.9.6
182
+ * Bug Fixes
183
+ 1. url encode url for curl
184
+
181
185
  ### 0.9.5
182
186
  * Bug Fixes
183
187
  1. Allow for complex matrixed queries including spaces
@@ -17,5 +17,5 @@ def puts_curl(command, resource, payload=nil, file=nil)
17
17
  else
18
18
  curl = %Q[#{curl} -d '#{payload}'] if (payload)
19
19
  end
20
- puts "#{curl} '#{resource.url}'"
20
+ puts "#{curl} '#{URI::encode resource.url}'"
21
21
  end
@@ -1,3 +1,3 @@
1
1
  module Ugc
2
- VERSION = '0.9.5'
2
+ VERSION = '0.9.6'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ugc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 0.9.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Ganyo