• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ably / ably-ruby
99%
master: 98%

Build:
Build:
LAST BUILD BRANCH: laura/endpoint-option
DEFAULT BRANCH: master
Repo Added 12 Apr 2015 05:35PM CUT
Files 102
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH code-style-coverage-and-editor-conventions
branch: code-style-coverage-and-editor-conventions
CHANGE BRANCH
x
Reset
  • code-style-coverage-and-editor-conventions
  • 0-8-master
  • 0-9-master
  • 0-9-rest
  • 0-9-spec-codes-for-tests
  • 0.8-final-spec
  • 1-0-master
  • RSC15f-remember-fallback
  • ably-java-531-encryption-investigations
  • account-for-frozen-strings
  • add-details-to-contributing
  • add-jwt-test
  • add-new-release
  • add-new-ruby-versions-to-travis-tests
  • add-request-id-fix-for-bulk-publishes
  • add-request-id-to-path
  • add-requestid-attribute-documentation
  • add-supported-platforms-to-readme
  • adding-maintainer
  • attach-reattach-0.9
  • auth-callback-consistency
  • auth-params-fix
  • bugfix/fix-specs
  • bugfix/remove-until_attach-option
  • ci-fixes-2015-08
  • ci-logger
  • client-id-and-other-spec-updates
  • clientId-on-init
  • connection-state-freshness-check-on-resume-RTN15g
  • coveralls.io
  • develop
  • dns-resolution-blocked
  • docs-update
  • editorconfig
  • em-issue-756-workaround-wip
  • ensure-connections-are-always-closed-in-tests
  • eventmachine-upgrade
  • fallback-fixes
  • fallback-host-improvements
  • fallback-on-timeout-spec
  • faraday-1.0-support-test
  • faraday-timeout-tests
  • feature/default-customer-environment-fallbacks
  • feature/http2-support
  • feature/rename-master-to-main
  • feature/update-license
  • fix-channel-history-tests
  • fix-failing-auth-test
  • fix-history-pagination-test
  • fix-presence-history-test
  • fix-tests-with-custom-loggers
  • generate-error-codes
  • globsort
  • history-since-attach
  • idempotent-publishing
  • improvement/add-support-for-delete-patch-put-in-request
  • improvement/implement-transport_params
  • improvement/update_ruby_versions
  • improvement/upgrade-statesman
  • intermittent-test-failure-resolution
  • issues/msg-serial-reset-bug-issue-179
  • json-value-types
  • known-limitations
  • laura/endpoint-option
  • main
  • master
  • message-interoperability-tests
  • minor-test-fixes
  • native-heartbeats-enabled
  • new-paginated-resource
  • parallel-tests
  • patch-1
  • presence_error
  • proxy-support
  • publish-params
  • push-notifications
  • realtime-publish-multiple
  • reauthorise
  • redirect-support
  • reject-invalid-payload-type
  • resolve-travis-erratic-issues
  • rest-presence-encoding-fixture-tests
  • safe-message-emitter-callbacks
  • separate-token-params-for-auth
  • spec-update-sep-2015
  • test-local
  • test-which-todos-skipped-tests-work
  • testing-against-staging-echo-server
  • token-details-request-from-json
  • token-naming-refactor
  • transient-publishing-issue-164
  • trivialfixes
  • v0.7.6
  • v0.8.0
  • v0.8.10
  • v0.8.11
  • v0.8.12
  • v0.8.13
  • v0.8.14
  • v0.8.15
  • v0.8.2
  • v0.8.3
  • v0.8.4
  • v0.8.5
  • v0.8.6
  • v0.8.7
  • v0.8.9
  • v0.9-rest
  • v1-1-release
  • v1.0.0
  • v1.0.1
  • v1.0.2
  • v1.0.3
  • v1.0.4
  • v1.0.5
  • v1.0.6
  • v1.0.7
  • v1.1.0
  • v1.1.0-beta.push.1
  • v1.1.1
  • v1.1.2
  • v1.1.3
  • v1.1.4.rc
  • view-state-sequence-when-reattaching
  • websocket-hartbeat-fallback-fixes

pending completion
1051

Pull #149

travis-ci

web-flow
rubocop: Style fixes through auto-correct

61 offenses left:

```
Offenses:

Rakefile:41:5: C: Style/MultilineBlockChain: Avoid multi-line chains of blocks.
    end.each do |code, const_name|
    ^^^^^^^^
Rakefile:43:5: C: Style/MultilineBlockChain: Avoid multi-line chains of blocks.
    end.map do |code, const_name|
    ^^^^^^^
Rakefile:58:1: C: Naming/HeredocDelimiterNaming: Use meaningful heredoc delimiters.
    EOF
^^^^^^^
spec/acceptance/realtime/client_spec.rb:423:22: C: Performance/TimesMap: Use Array.new((Ably::Realtime::Connection::MAX_PROTOCOL_MESSAGE_BATCH_SIZE + 1)) with a block instead of .times.map only if (Ably::Realtime::Connection::MAX_PROTOCOL_MESSAGE_BATCH_SIZE + 1) is always 0 or more.
          messages = (Ably::Realtime::Connection::MAX_PROTOCOL_MESSAGE_BATCH_SIZE + 1).times.map do ...
                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
spec/acceptance/realtime/presence_spec.rb:4:1: C: Metrics/BlockLength: Block has too many lines. [2427/2392]
describe Ably::Realtime::Presence, :event_machine do ...
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
spec/acceptance/realtime/presence_spec.rb:7:3: C: Metrics/BlockLength: Block has too many lines. [2424/2392]
  vary_by_protocol do ...
  ^^^^^^^^^^^^^^^^^^^
spec/acceptance/realtime/auth_spec.rb:1162:13: C: Naming/VariableName: Use snake_case for variable names.
            tokenResponse = Faraday.get "#{auth_url}?keyName=#{key_name}&keySecret=#{key_secret}&expiresIn=5"
            ^^^^^^^^^^^^^
spec/acceptance/realtime/auth_spec.rb:1191:15: C: Naming/VariableName: Use snake_case for variable names.
              tokenResponse = Faraday.get "#{auth_url}?keyName=#{key_name}&keySecret=#{key_secret}&expiresIn=35"
              ^^^^^^^^^^^^^
spec/acceptance/realtime/auth_spec.rb:1238:95: W: Lint/UriEscapeUnescape: URI.escape method is obsolete and should not be used. Instead, use CGI.escape, URI.encode_www_form or URI.encode_www_form_compo... (continued)
Pull Request #149: Code style coverage and editor conventions

61 of 61 new or added lines in 27 files covered. (100.0%)

16955 of 17203 relevant lines covered (98.56%)

27766.62 hits per line

Relevant lines Covered
Build:
Build:
17203 RELEVANT LINES 16955 COVERED LINES
27766.62 HITS PER LINE
Source Files on code-style-coverage-and-editor-conventions
  • List 0
  • Changed 124
  • Source Changed 60
  • Coverage Changed 111
Loading...
Coverage∆FileLinesRelevantCoveredMissedHits/Line
No data available in table
Showing 0 to 0 of 0 entries
  • Previous
  • Next

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
1051 code-style-coverage-and-editor-conventions rubocop: Style fixes through auto-correct 61 offenses left: ``` Offenses: Rakefile:41:5: C: Style/MultilineBlockChain: Avoid multi-line chains of blocks. end.each do |code, const_name| ^^^^^^^^ Rakefile:43:5: C: Style/MultilineBlockChai... Pull #149 26 Jun 2019 06:52PM CUT web-flow travis-ci pending completion  
1050 code-style-coverage-and-editor-conventions rubocop: Style fixes through auto-correct 61 offenses left: ``` Offenses: Rakefile:41:5: C: Style/MultilineBlockChain: Avoid multi-line chains of blocks. end.each do |code, const_name| ^^^^^^^^ Rakefile:43:5: C: Style/MultilineBlockChai... push 26 Jun 2019 06:11PM CUT mattheworiordan travis-ci pending completion  
1046 code-style-coverage-and-editor-conventions Include Rubocop in CI builds push 26 Jun 2019 06:02PM CUT mattheworiordan travis-ci pending completion  
816 code-style-coverage-and-editor-conventions Include Rubocop in CI builds push 28 Apr 2018 06:26PM CUT mattheworiordan travis-ci pending completion  
812 code-style-coverage-and-editor-conventions Add support for Rubocop Result: ``` 188 files inspected, 6703 offenses detected ``` push 28 Apr 2018 05:29PM CUT mattheworiordan travis-ci pending completion  
See All Builds (1053)
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc