OSDN Git Service

Disable SSL validation and version bump. v0.0.6
authorTatsuki Sugiura <sugi@nemui.org>
Wed, 16 Mar 2016 14:33:39 +0000 (23:33 +0900)
committerTatsuki Sugiura <sugi@nemui.org>
Wed, 16 Mar 2016 14:33:39 +0000 (23:33 +0900)
ChangeLog
lib/osdn/cli/runner.rb
lib/osdn/cli/version.rb

index b5f02c4..a5746b9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2016-03-16  Tatsuki Sugiura  <sugi@nemui.org>
 
+       * Version 0.0.6
+       * Disable SSL validation temporarily.
+
+2016-03-16  Tatsuki Sugiura  <sugi@nemui.org>
+
        * Version 0.0.5
        * Default loglevel has been changed to INFO.
        * Add release and relfile command.
index a5bc3be..9fe7f41 100644 (file)
@@ -14,8 +14,9 @@ module OSDN
         OSDNClient.configure do |config|
           ENV['OSDN_API_OVERRIDE_HOST'] and
             config.host = ENV['OSDN_API_OVERRIDE_HOST']
-          ENV['OSDN_API_SKIP_SSL_VERIFY'].to_s =~ /^(1|t(rue)?|y(es)?)$/ and
-            config.verify_ssl = false
+          #ENV['OSDN_API_SKIP_SSL_VERIFY'].to_s =~ /^(1|t(rue)?|y(es)?)$/i and
+          #  config.verify_ssl = false
+          config.verify_ssl = false
         end
       end
       attr_reader :logger
index 4231a6a..e3fd4f3 100644 (file)
@@ -1,5 +1,5 @@
 module OSDN
   module CLI
-    VERSION = "0.0.5"
+    VERSION = "0.0.6"
   end
 end