Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

re-enable rbx build on travis, pending travis being fixed #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ rvm:
- "2.0.0"
- "2.1.0"
- "2.2.0"
# - rbx
- rbx

script:
- bundle exec rubocop --version
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ io_source = StringIO.new("#{input1}\n#{input2}") # source decoder works on any

source_decoder = NMEAPlus::SourceDecoder.new(io_source)
source_decoder.each_complete_message do |message|
puts message_all_checksums_ok? # prints true -- the full message set has good checksums
puts message_all_messages_received? # prints true -- taken care of by each_complete_message
puts message.all_checksums_ok? # prints true -- the full message set has good checksums
puts message.all_messages_received? # prints true -- taken care of by each_complete_message
if "AIVDM" == message.data_type
puts message.ais.message_type # prints 5
puts message.ais.repeat_indicator # prints 0
Expand Down