compostr 0.1.3 → 0.1.4

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
  SHA256:
3
- metadata.gz: 1e9a8cf002d33aaee6ebed0034a6560d0e8190a71fe03d26a09e4e732300aff9
4
- data.tar.gz: e21ad83cedc1365cdb93e8745e2454c52c2a8bee9ad4489bd058903c6f0f36fb
3
+ metadata.gz: 1e0e60c497f1a77185d48809e600c2b4f9436dd5d28304e210826aea0125bd0f
4
+ data.tar.gz: 7546b3c8d3b73c5857b4308e40e3105c514fc4e0492dfc3ef21137e3ddecd360
5
5
  SHA512:
6
- metadata.gz: 5729c9480095527a7ec4456106f3b8d6c5247646480c837c75ec8f1ae1186e452f579126004ab3e56eee651e727b1240aea7b193b5d02b5750e81b0e51f11585
7
- data.tar.gz: 122fbbbeeaa809f3286387489adb263d26bee7c2dd559f708007dbe95cfd792ae9b5d10cb6bfdc44fe232b1c2d5ab9116012768c0b3f02902a7361f271843c4c
6
+ metadata.gz: d0e1a47ce967801d01d15a286734bab7fcea7ebb9426eefd9726f969eed7739f048ce6db55c2b0370188c45ad2582a1a22d59f781133aa472fb13d04e7b3d9ca
7
+ data.tar.gz: ee7beeb503d4d47d0fd3054ee67ba36be30ff6283e4f31a1e90f09856d62890d38024e16e91f3099f4a5c61f98a8e91f98412fe070ad7d5e2c8a743cf40eb9d2
data/README.md CHANGED
@@ -71,6 +71,7 @@ Global configuration is given in `compostr.conf`, where connection information t
71
71
  password: "buzzword"
72
72
  language_term: "Deutsch"
73
73
  author_id: 1
74
+ use_ssl: true
74
75
 
75
76
  ### Logging/Logger
76
77
 
data/lib/compostr.rb CHANGED
@@ -36,7 +36,8 @@ module Compostr
36
36
  def self.wp
37
37
  @wp ||= Rubypress::Client.new(host: config.host,
38
38
  username: config.username,
39
- password: config.password)
39
+ password: config.password,
40
+ use_ssl: config.use_ssl)
40
41
  end
41
42
 
42
43
  # Access the logger, initialize and memoize it on demand.
@@ -1,3 +1,3 @@
1
1
  module Compostr
2
- VERSION = "0.1.3".freeze
2
+ VERSION = "0.1.4".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compostr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Wolfsteller
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-10-19 00:00:00.000000000 Z
11
+ date: 2018-10-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubypress