Merge pull request #9 from github/integer-unification

Ruby 2.4 support
This commit is contained in:
Charlie Somerville 2017-01-12 12:12:09 +11:00 коммит произвёл GitHub
Родитель 83ffa7f301 3c96b8154c
Коммит 0dcc7eee8f
4 изменённых файлов: 13 добавлений и 8 удалений

Просмотреть файл

@ -7,11 +7,14 @@ GEM
remote: https://rubygems.org/
specs:
git (1.3.0)
rake (11.1.2)
power_assert (0.4.1)
rake (12.0.0)
rake-compiler (0.9.9)
rake
test-unit (3.2.3)
power_assert
thoughtbot-shoulda (2.11.1)
yajl-ruby (1.2.1)
yajl-ruby (1.3.0)
PLATFORMS
ruby
@ -21,8 +24,9 @@ DEPENDENCIES
git
rake
rake-compiler (~> 0.9.0)
test-unit
thoughtbot-shoulda
yajl-ruby
BUNDLED WITH
1.12.5
1.13.7

Просмотреть файл

@ -10,7 +10,7 @@ See the BERT specification at [bert-rpc.org](http://bert-rpc.org).
Instances of the following Ruby classes will be automatically converted to the
proper simple BERT type:
* Fixnum
* Integer
* Float
* Symbol
* Array

Просмотреть файл

@ -26,4 +26,5 @@ Gem::Specification.new do |s|
s.add_development_dependency "rake"
s.add_development_dependency "rake-compiler", "~> 0.9.0"
s.add_development_dependency "yajl-ruby"
s.add_development_dependency "test-unit"
end

Просмотреть файл

@ -98,7 +98,7 @@ module BERT
case obj
when Symbol then write_symbol(obj)
when String then write_binary(obj)
when Fixnum, Bignum then write_fixnum(obj)
when Integer then write_integer(obj)
when Float then write_float(obj)
when Tuple then write_tuple(obj)
when Array then write_list(obj)
@ -135,7 +135,7 @@ module BERT
write_string data
end
def write_fixnum(num)
def write_integer(num)
if num >= 0 && num < 256
write_1 SMALL_INT
write_1 num