AK

Results 15 comments of AK

hi @floatinghotpot As I progress, i see more and more issues. that will be hard to achieve just by pull requests, a few places needs overall up-down changes. Here are...

I meant I want to use this component for normal hyperlinks but don't want to put @ or # or http:// url. I want to define a phrase to a...

I see that you added a label for this. Are you planning to do it? If so, can you please update the progress for it. I have this requirement in...

nope it works the same way. /users paths works as https enabled but api.example.com ended in a redirect loop.

why is except_hosts set to api.example.com and only_hosts set to api.example.org?

ok I forked and checked with api.example.org at both place and tests are passing fine. But in Rails app it's not working. Is there a way to define the both...

@rymai I guess above isn't silly thought :), if i define 2 statements in test case, rather than one array. ``` setup { mock_app :only_hosts => %r{api.example.org} mock_app :except_hosts =>...

Here's my rack_ssl_config.rb from /config/initializers directory ``` ruby Website::Application.configure do if AppConfig.ssl.enabled config.middleware.use Rack::SslEnforcer, only_hosts: AppConfig.api.host config.middleware.use Rack::SslEnforcer, except_hosts: AppConfig.api.host, only: %r{/users}, ignore: %r{/assets}, strict: true end end ``` I've...

oh now i studied the mock_app method. My bad. Sorry for above. But there is one problem with tests, you've to add one more test that when someone access the...