pansophy 0.5.3 → 0.5.4

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: 58e64041c73ec84a3370415b6b8bc05c4270307f
4
- data.tar.gz: ea02f2bdc043dea370396f55039482da9cca01d7
3
+ metadata.gz: 596cc01c0c1835530d8a77e94ef7c44457e47acf
4
+ data.tar.gz: b434b16bcd961fcc4b76e66e3c424511b1ed6bc2
5
5
  SHA512:
6
- metadata.gz: 03b75f1b073c98e1e2eedb5f3f98ac44d40e39e165572f6c0641358785f4c0f6b114db207375d8eb6e40c37d839b6fc76857e31e60920e940bbc5d08a4ec1415
7
- data.tar.gz: e295eeeeca1b18851550fd4e474917397b32c67111795c958da60db8407a12b241f97f4026c2f5b0171d58b3a6c39ad65453c05580bfa84c8a69191abd6f7938
6
+ metadata.gz: 05d401000dbe979fffcd92fc2d455c6d359768e4f434c808bfe944d7bf3e1076ae27c02240aa8caee24d77db9b79cfdec4e191ff2108fd31d8574b23d8198024
7
+ data.tar.gz: 680fdf1fd940183412a045dfa9da152811051d845eefbde2e7887238b951d47bb5d2ee6f5f99bd5b4ed4f9a90b56f1dda3fca7734e7cf942d93a4dff16f93e41
@@ -1 +1 @@
1
- 2.3.0
1
+ 2.3.4
@@ -2,9 +2,14 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.5.4]
6
+ ### Fixed
7
+ - Fix issue when writing files that contain unicode characters
8
+
5
9
  ## [0.5.3]
6
10
  ### Changed
7
11
  - Use coverage kit to enforce maximum coverage
12
+
8
13
  ### Fixed
9
14
  - [TT-1616] Reset Excon cipher list to the default which fixes connection issue from JRuby
10
15
 
data/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  Pansophy allows different applications to share knowledge via a centralised remote repository
10
10
 
11
- The current version only works wit AWS S3 buckets and allows:
11
+ The current version only works with AWS S3 buckets and allows:
12
12
  * pulling a remote directory to a local directory
13
13
  * merging a remote directory with a local directory
14
14
  * pushing a local directory to a remote directory
@@ -11,7 +11,9 @@ module Pansophy
11
11
  def call(options = {})
12
12
  prevent_overwrite! unless options[:overwrite]
13
13
  @pathname.dirname.mkpath
14
- ::File.write(@pathname, @body)
14
+ ::File.open(@pathname, 'wb') do |f|
15
+ f.write @body
16
+ end
15
17
  end
16
18
 
17
19
  private
@@ -1,3 +1,3 @@
1
1
  module Pansophy
2
- VERSION = '0.5.3'
2
+ VERSION = '0.5.4'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pansophy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alessandro Berardi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-12-07 00:00:00.000000000 Z
11
+ date: 2017-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-aws
@@ -269,7 +269,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
269
269
  version: '0'
270
270
  requirements: []
271
271
  rubyforge_project:
272
- rubygems_version: 2.4.5.1
272
+ rubygems_version: 2.5.2
273
273
  signing_key:
274
274
  specification_version: 4
275
275
  summary: Information sharing via centralised repository