According to README ```ruby Tamashii::Client.config do use_ssl true end ``` But we got `no method` error, and we should use below code to make it works correctly ```ruby Tamashii::Client.config do |config| config.use_ssl = true end ```
According to README
But we got
no methoderror, and we should use below code to make it works correctly