Sha256: 2ea23d52226c81a530186161c3dd242ad93570ad4c148de00c0c6918069b7834
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
module Regexp::Syntax VERSIONS = [ # Ruby 1.8.x (NOTE: 1.8.6 is no longer a supported runtime, # but its regex features are still recognized.) 'ruby/1.8.6', 'ruby/1.8.7', # alias for the latest 1.8 implementation 'ruby/1.8', # Ruby 1.9.x 'ruby/1.9.1', 'ruby/1.9.2', 'ruby/1.9.3', # alias for the latest 1.9 implementation 'ruby/1.9', # Ruby 2.0.x 'ruby/2.0.0', # alias for the latest 2.0 implementations 'ruby/2.0', # Ruby 2.1.x 'ruby/2.1.0', 'ruby/2.1.2', 'ruby/2.1.3', 'ruby/2.1.4', 'ruby/2.1.5', 'ruby/2.1.6', 'ruby/2.1.7', 'ruby/2.1.8', 'ruby/2.1.9', 'ruby/2.1.10', # alias for the latest 2.1 implementations 'ruby/2.1', # Ruby 2.2.x 'ruby/2.2.0', 'ruby/2.2.1', 'ruby/2.2.2', 'ruby/2.2.3', 'ruby/2.2.4', 'ruby/2.2.5', 'ruby/2.2.6', # alias for the latest 2.2 implementations 'ruby/2.2', # Ruby 2.3.x 'ruby/2.3.0', 'ruby/2.3.1', 'ruby/2.3.2', 'ruby/2.3.3', # alias for the latest 2.3 implementation 'ruby/2.3', ] end Regexp::Syntax::VERSIONS.each do |version| require File.expand_path("../#{version}", __FILE__) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
regexp_parser-0.4.1 | lib/regexp_parser/syntax/versions.rb |