Skip to content
View vhorb's full-sized avatar

Block or report vhorb

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. mini-sftp-client mini-sftp-client Public

    Forked from anikitenko/mini-sftp-client

    Mini web sFTP client written on Go using Revel Framework with API support

    Go

  2. CircleCI config to re-run failed rsp... CircleCI config to re-run failed rspec tests
    1
          - run:
    2
              name: run feature tests
    3
              command: |
    4
                TEST_FILES="$(circleci tests glob "spec/features/*_spec.rb" | circleci tests split --split-by=timings)"
    5
                echo Tests run on Google Chrome version: `google-chrome --version`
  3. Capybara register new driver for test Capybara register new driver for test
    1
    # Typically this faile named capybara.rb and needed for browser configuration.
    2
    # This file related to capybara 3.22.0 and webdriver 3.8.0
    3
    
                  
    4
    require 'capybara/rspec'
    5
    require 'capybara-screenshot/rspec'
  4. Custom waits for selenium Custom waits for selenium
    1
    module WaitHelper
    2
      def wait_for_ajax
    3
        Timeout.timeout(60) do
    4
          sleep(0.7) until Capybara.page.evaluate_script('jQuery.active').zero?
    5
        end
  5. sidekiq_rspec_spec.rb sidekiq_rspec_spec.rb
    1
    require "sidekiq/api"
    2
    require "rails_helper"
    3
    
                  
    4
    feature "List of queues in Sidekiq." do
    5
      scenario "should equal to given array" do
  6. Delete local GIT branches that were ... Delete local GIT branches that were deleted on remotly
    1
    git remote update origin --prune
    2
    git branch -vv | grep ': gone]'|  grep -v "\*" | awk '{ print $1; }' | xargs -r git branch -d