修訂 | 38728c780620b3ad042ea6e88395839573444fc1 (tree) |
---|---|
時間 | 2016-03-16 23:33:39 |
作者 | Tatsuki Sugiura <sugi@nemu...> |
Commiter | Tatsuki Sugiura |
Disable SSL validation and version bump.
@@ -1,5 +1,10 @@ | ||
1 | 1 | 2016-03-16 Tatsuki Sugiura <sugi@nemui.org> |
2 | 2 | |
3 | + * Version 0.0.6 | |
4 | + * Disable SSL validation temporarily. | |
5 | + | |
6 | +2016-03-16 Tatsuki Sugiura <sugi@nemui.org> | |
7 | + | |
3 | 8 | * Version 0.0.5 |
4 | 9 | * Default loglevel has been changed to INFO. |
5 | 10 | * Add release and relfile command. |
@@ -14,8 +14,9 @@ module OSDN | ||
14 | 14 | OSDNClient.configure do |config| |
15 | 15 | ENV['OSDN_API_OVERRIDE_HOST'] and |
16 | 16 | config.host = ENV['OSDN_API_OVERRIDE_HOST'] |
17 | - ENV['OSDN_API_SKIP_SSL_VERIFY'].to_s =~ /^(1|t(rue)?|y(es)?)$/ and | |
18 | - config.verify_ssl = false | |
17 | + #ENV['OSDN_API_SKIP_SSL_VERIFY'].to_s =~ /^(1|t(rue)?|y(es)?)$/i and | |
18 | + # config.verify_ssl = false | |
19 | + config.verify_ssl = false | |
19 | 20 | end |
20 | 21 | end |
21 | 22 | attr_reader :logger |
@@ -1,5 +1,5 @@ | ||
1 | 1 | module OSDN |
2 | 2 | module CLI |
3 | - VERSION = "0.0.5" | |
3 | + VERSION = "0.0.6" | |
4 | 4 | end |
5 | 5 | end |