diff options
author | Jonas Genannt <jonas@brachium-system.net> | 2014-08-02 15:24:49 +0200 |
---|---|---|
committer | Jonas Genannt <jonas@brachium-system.net> | 2014-08-02 15:24:49 +0200 |
commit | 79eff4da6479cf990ca3fd50c047ba72d3d1c921 (patch) | |
tree | ea2faad5d1e8bb9d862eceb105bcb2e08e01d961 | |
parent | 512f51a6fd2c5693e3e7443e873d4758d9903eda (diff) | |
download | rake-compiler-79eff4da6479cf990ca3fd50c047ba72d3d1c921.tar.gz |
added configuration for Ruby 2.1 support in spec
add Ruby 2.1 support in Spec tests
Debian bugs:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=746084
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=747723
-rw-r--r-- | spec/lib/rake/extensiontask_spec.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/spec/lib/rake/extensiontask_spec.rb b/spec/lib/rake/extensiontask_spec.rb index 1b1129e..fd6e8c7 100644 --- a/spec/lib/rake/extensiontask_spec.rb +++ b/spec/lib/rake/extensiontask_spec.rb @@ -491,7 +491,10 @@ describe Rake::ExtensionTask do 'rbconfig-universal-unknown-2.0.0' => '/some/path/version/2.0.0/to/rbconfig.rb', 'rbconfig-i386-mingw32-2.0.0' => '/some/path/version/2.0.0/to/rbconfig.rb', 'rbconfig-x64-mingw32-2.0.0' => '/some/path/version/2.0.0/to/rbconfig.rb', - 'rbconfig-x64-mingw32-3.0.0' => '/some/fake/version/3.0.0/to/rbconfig.rb' + 'rbconfig-x64-mingw32-3.0.0' => '/some/fake/version/3.0.0/to/rbconfig.rb', + 'rbconfig-i386-mingw32-2.1.2' => '/some/path/version/2.1.2/to/rbconfig.rb', + 'rbconfig-universal-unknown-2.1.2' => '/some/path/version/2.1.2/to/rbconfig.rb', + 'rbconfig-universal-known-2.1.2' => '/some/path/version/2.1.2/to/rbconfig.rb' } end |