-
Yearning to use some of the new cool features in 1.9.2 while using 1.8.x?
-
One of your client is stuck with Ruby 1.8.6 but you want to use a gem using some features of 1.8.7?
-
Can’t remember if you can use Array#sample or String#each_char on a friend’s box?
This gem is for you!
The goal of ‘backports’ is to make it easier to write ruby code that runs across different versions of Ruby. All you need to bring any version of Ruby up to today’s standards:
require 'backports'
This will bring in all the features of 1.8.7 (for Ruby 1.8.6) and many features of Ruby 1.9.1 (for Ruby 1.8.x) and Ruby 1.9.2 (for all earlier versions)!
Note
: Although I am a Ruby committer, this gem is a personal project and is not endorsed by ruby-core.
Features in this gem:
-
Won’t break older code
-
Pure Ruby (no C extensions)
-
Pass RubySpec
Let’s be a bit more precise about the breaking code business. It is of course entirely possible that code will break, for example some core methods are monkeypatched or if the code relies on a certain call raising an exception. Example: [42].sample rescue "dum example"
will return "dum example"
without this gem and 42
with it.
A real incompatibility is, for example, Module::instance_methods
which returns strings in 1.8 and symbols in 1.9. No change can be made without the risk of breaking existing code. Such incompatibilities are left unchanged.
All features of 1.8.7 are backported (well, almost all, see the exception list bellow), and many of 1.9 are also.
Some generic and self-contained features of active-support are also included. By simple I mean that String#camelcase is there, but #pluralize isn’t.
backports
is can be installed with:
(sudo) gem install backports
To use:
require 'rubygems' require 'backports' # or a subset, see next section
Compatible with Ruby 1.8.6, 1.8.7, 1.9.1, 1.9.2, JRuby and Rubinius.
Complete Ruby 1.8.7 backporting (core language). Refer to the official list of changes.
Only exceptions:
-
String#gsub (the form returning an enumerator)
-
GC.stress= (not implemented)
-
Array#choice (removed in 1.8.8, use Array#sample instead)
To include only these backports, require "backports/1.8.7"
Ruby 1.8.8 has been officially cancelled. As of version 2.2, require "backports/1.8.8"
does nothing.
Additionally, the following Ruby 1.9 features have been backported:
-
Array
-
try_convert
-
-
Enumerable
-
each_with_object
-
-
Enumerator
-
new
(with block)
-
-
File
-
binread
-
to_path
-
All class methods accepting filenames will accept files or anything with a
#to_path
method.
-
-
Hash
-
try_convert
-
default_proc=
-
-
IO
-
bin_read
-
try_convert
-
ungetbyte
-
-
Kernel
-
require_relative
-
-
Math
-
log
(with base) -
log2
-
-
Object
-
define_singleton_method
-
public_method
-
public_send
-
-
Proc
-
yield
-
lambda?
-
curry
-
===
-
-
Range
-
cover?
-
-
Regexp
-
try_convert
-
-
String
-
ascii_only?
-
chr
-
clear
-
codepoints
,each_codepoint
-
get_byte
,set_byte
-
ord
-
try_convert
-
Enumerator
can be accessed directly (instead of Enumerable::Enumerator
)
To include only these backports and those of the 1.8 line, require "backports/1.9.1"
.
Moreover, a pretty good imitation of BasicObject is available, but since it is only an imitation, it must be required explicitly:
require 'backports/basic_object'
Finally, most of Ruby 1.9.2 features have been backported:
-
Array
-
rotate, rotate!
-
keep_if, select!
-
product
(with block) -
repeated_combination
,repeated_permutation
-
sort_by!
-
uniq, uniq!
(with block)
-
-
Dir
-
home
-
-
Enumerable
-
chunk
-
flat_map
,collect_concat
-
join
-
slice_before
-
-
Float::INFINITY, NAN
-
Hash
-
keep_if
,select!
-
-
Object
-
singleton_class
-
-
Random (new class)
To include all Ruby backports but not those of Rails, require "backports/1.9.2"
(or “backports/1.9”)
Some generic methods from Rails methods have been copied:
-
Enumerable
-
sum
-
-
Hash
-
symbolize_keys
,symbolize_keys!
-
reverse_merge
,reverse_merge!
-
-
Module
-
alias_method_chain
-
-
Object
-
try
-
returning
-
-
String
-
camelize
,underscore
-
dasherize
,demodulize
-
constantize
-
To include only these Rails backports but not those of Ruby, require "backports/rails"
.
Libraries have not been backported. I am aware of the following backport gems:
-
Net::SMTP for Ruby 1.8.6: smtp_tls
-
Let me know of others…
Thanks for the bug reports and patches, in particular the repeat offenders:
The best way to submit a patch is to also submit a patch to RubySpec and then a patch to backports that make it pass the spec. To test rubyspec along with backports, one way to test this is:
mspec path/to/specs -t path/to/ruby186 --unguarded -r path/to/backports
You must then check manually for which failures are acceptable and which are not.
backports
is released under the terms of the MIT License, see the included LICENSE file.
- Author
-
Marc-André Lafortune